Skip to content

Instantly share code, notes, and snippets.

@dbirks
Last active May 11, 2018 19:46
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dbirks/12cc4460d593dfa19bfdc2b59b738333 to your computer and use it in GitHub Desktop.
Save dbirks/12cc4460d593dfa19bfdc2b59b738333 to your computer and use it in GitHub Desktop.
Exchange shared inbox notes

Exchange shared inbox notes

Copy sent emails to the shared inbox's sent folder

For emails sent as from the shared inbox, make a copy of the email in the shared inbox's sent items folder as well.

set-mailbox <mailbox name> -MessageCopyForSentAsEnabled $True

See this TechNet article for more info.

Fix inability to see emails marked private

First remove the permission for the user:

Remove-MailboxPermission -Identity sharedbox@internet.com -User allan.jude -AccessRights FullAccess

Then give the user permissions again with AutoMapping turned off this time.

Add-MailboxPermission -Identity sharedbox@internet.com -User allan.jude -AccessRights FullAccess -InheritanceType All -AutoMapping $false

Now you will have to manually add it to the user's Outlook. This will give them access to view emails with the Private flag.

More info can be found on this TechNet article.

Another option I've heard of is to make a transport rule that changes private emails to normal. Might look into that in the future if there continues to be issues.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment