There are two ways of opening Shared Mailbox in OWA,
- Clicking on your user profile, and select "Open another mailbox"
- Right-clicking on your Folders, and select "Add shared mailbox"
Based on the documentation, https://learn.microsoft.com/en-us/office/dev/add-ins/outlook/delegate-access, you need to have SupportsSharedFolder
permission explicitly set to true in your add-in manifest in order to make your add-in available on shared mailbox item.
For option 1, I am able to open any add-in that doesn't have SupportsSharedFolder
permission.
For option 2, all add-in that doesn't have SupportsSharedFolder
is not shown in the list of available add-ins. (Expected behavior)
Notes: Outlook desktop client is consistent with option 2, it is not showing any add-in that doesn't have SupportsSharedFolder
permission.
Is option 1 an expected behavior from OWA? If its a bug, do we have a timeline for a fix?
Similar question posted a while back, Make Outlook add-ins working with Office 365 shared mailboxes however there is no definitive answer from MSFT team.