I am writing a custom Exchange connector for SharePoint and need to get the user permissions for a mailbox in order to be able to tell the search if the user searching have access to the items crawled or not. Is this possible to with ExchangeService get the users and groups that have read access to a mailbox? Do you have any example of how I can accomplish this or any resources which can help me?

Thank you

link|improve this question

50% accept rate
feedback

1 Answer

Using the Exchange Managed API you can get the permission on each folder using this code:

var folder = Folder.Bind(service, new FolderId(WellKnownFolderName.Inbox, new Mailbox("someone@company.local")));
var permissions = folder.Permissions;
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.