outlook-for-mac

makeEwsRequestAsync not returning callback on MacOS Outlook2016

蹲街弑〆低调 提交于 2020-03-03 16:41:10
问题 I'm using makeEwsRequestAsync to get email "Body", "Subject", "MimeContent" . But in case of MacOS Outlook2016 when the email size is more than 1MB the callback method is never called after the call is made to makeEwsRequestAsync() . In case of email having size less than 1MB the callback is called with proper result. I know in case of more than 1MB email size there will be an error with the message Response exceeds 1 MB size limit. Please modify your EWS request Also, the same code is

Outlook for Mac lacks add-in command button group labels

我的未来我决定 提交于 2019-12-24 08:23:53
问题 Outlook add-in manifests are supposed to work on PC Desktop Outlook, OWA and Outlook for Mac. That mostly seems to be the case but we noticed an issue with Outlook for Mac. Outlook for Mac does not appear to have button group labels. Look at the Microsoft Store red briefcase "Store" button for example. In Windows Desktop Outlook this button is in the Add-ins button group as indicated by the text "Add-ins" as the label below the button. For Outlook for Mac the button group label is missing. In

Outlook WebAddin is detected as contextual addin instead of ribbon addin

我的未来我决定 提交于 2019-12-06 15:34:20
问题 We have created Outlook Ribbon Webaddin. It is working as expected(ribbon Addin) and loading in top ribbon place. But for some customer, it is loading as contextual Addin. Manifest URL : https://www.backflipt.com/app/addin/Backflipt-Beta.xml Outlook diagnostics info : {"host" : "Outlook", "platform": "PC", "version": "15.0.0000.0000"} Is there any way outlook configuration affects manifest loading way? Check the below image(blurred for security reasons) : Green color section is the plugin

EWS request not responding with error on Mac

旧巷老猫 提交于 2019-12-05 05:42:39
问题 In our Outlook add-in, we are using makeEwsRequestAsync to get the current email's MimeContent . We understand there is a 1MB request/response limit when using EWS via the JavaScript API. When we reach this limit on Windows, we at least see this message: "Response exceeds 1 MB size limit. Please modify your EWS request". However, when making this request for a large email (>1MB) on Mac (Outlook 2016), we don't get any sort of response whatsoever. The add-in just seems to hang. Is there any

EWS request not responding with error on Mac

本小妞迷上赌 提交于 2019-12-03 21:12:46
In our Outlook add-in, we are using makeEwsRequestAsync to get the current email's MimeContent . We understand there is a 1MB request/response limit when using EWS via the JavaScript API. When we reach this limit on Windows, we at least see this message: "Response exceeds 1 MB size limit. Please modify your EWS request". However, when making this request for a large email (>1MB) on Mac (Outlook 2016), we don't get any sort of response whatsoever. The add-in just seems to hang. Is there any way we can catch this error on Mac? We would like to show a dialog or something notifying the user that

Outlook WebAddin throwing internal server error when registering Office.EventType.ItemChanged

孤街醉人 提交于 2019-12-02 02:25:39
问题 In my outlook WebAddin, i am trying to register for mail ItemChange event using below code. Office.context.mailbox.addHandlerAsync(Office.EventType.ItemChanged, mailItemSelectionChanged, [], function (result) { if(result && result.status != 'succeeded'){ console.error('result => ' + result); } }); Whenever user changes mail in pinned mode, i receive mail change event for first time. then if there is change in conversation, i am reloading the plugin with location.reload() to clear the cache

Office js Web Addin failing to ExpandDL with soap call

女生的网名这么多〃 提交于 2019-11-30 11:26:33
I'm currently working with an Outlook Web Add-in with Office.js. In this project, we require sending mail merge emails to handle Distribution Lists and Groups. We use the ExpandDL call and our soap request looks like: <?xml version="1.0" encoding="UTF-8"?> <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <soap:Header>

Office js Web Addin failing to ExpandDL with soap call

烈酒焚心 提交于 2019-11-29 17:08:11
问题 I'm currently working with an Outlook Web Add-in with Office.js. In this project, we require sending mail merge emails to handle Distribution Lists and Groups. We use the ExpandDL call and our soap request looks like: <?xml version="1.0" encoding="UTF-8"?> <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:xsd="http://www.w3.org