×

When composing a message from a shared mailbox, by default when the message is ‘sent’, it is copied to the Sent Items for the user composing the message and not the Sent Items folder on the shared mailbox. Well, conveniently there is a way to enable this option in Exchange 2016 and Office365.

I don’t understand why this option is not turned on by default because it accounts for a message sent from a shared mailbox yet there is no historical record of the message being sent from the mailbox. Apart from journaling if it is enabled or a third party software/ service.

#To enable it for emails Sent As the shared mailbox, set the enable flag to true and run the cmdlet:
Set-Mailbox <mailbox-name> -MessageCopyForSentAsEnabled $True
#To enable it on all shared mailboxes, use this cmdlet:
Get-Mailbox -ResultSize unlimited -Filter {(RecipientTypeDetails -eq 'SharedMailbox')} | Set-Mailbox -MessageCopyForSentAsEnabled $True
#If the email was Sent On Behalf of the shared mailbox, use
Set-Mailbox <mailbox-name> -MessageCopyForSendOnBehalfEnabled $True
#To disable it for emails Sent As the shared mailbox, use this cmdlet:
Set-Mailbox <mailbox-name> -MessageCopyForSentAsEnabled $False
#To disable if the email was Sent On Behalf of the shared mailbox, use
Set-Mailbox <mailbox-name> -MessageCopyForSendOnBehalfEnabled $False

Related Posts

Outlook 2016: Remove Duplicate entries in Room Finder

In Outlook 2016 some users may noticed dual entries in the Room List: The room list behavior that we see  in Outlook is by design. When we ...

Read out all

Hack: Microsoft Outlook AutoComplete

Outlook maintains the AutoComplete list. The list is used by both the automatic name-checking feature and the automatic completion feature. The AutoComplete...

Read out all