Sent Items Management

Exchange 2010 LogoWith the release of Exchange 2010 SP3, you can now control where sent items are stored when Send-As or Send-on-Behalf permissions are configured and you’re using Outlook Web Access. In Outlook we already had the possibility to control where sent items are stored this using registry keys, but now we can do so from Outlook Web Access or using the Exchange Management Shell. Unlike Outlook, you unfortunately can’t control where deleted items are stored.

As a quick reminder, to configure permissions for user Francis to send e-mail messages as Philip or on behalf of Philip, you would use:

Add-ADPermission Philip -User Francis -Extendedrights "Send As"
Set-Mailbox Philip -GrantSendOnBehalfTo Francis

Sent Items Management from Outlook Web Access
To access the Sent Items Management option, use OWA to open the (shared) mailbox and navigate to Settings > Sent Items

image

You can configure the following options for Send-As or Send-on-Behalf e-mail:

  • From mailbox: The sent item will be stored in the Sent Items folder of the (shared) mailbox;
  • Sender and From mailboxes: The sent item will be stored in the Sent Items folder of the (shared) mailbox and actual sender;
  • Sender mailbox: The sent item will be stored in the Sent Items folder of the actual sender (default).

Sent Items Management using EMS
To inspect where sent items are stored, use Get-MailboxSentItemsConfiguration, e.g.

Get-MailboxSentItemsConfiguration Philip

image

To configure the settings, use Set-MailboxSentItemsConfiguration in conjunction with SendAsItemsCopiedTo or SendOnBehalfOfItemsCopiedTo specifying Sender, From or SenderAndFrom. For example, to configure the items sent as Philip to be stored in the mailbox of both Philip and the actual sender, use the following cmdlet:

Set-MailboxSentItemsConfiguration Philip –SenderAndFrom

image

It would be nice if Outlook would honor these settings, just like the signatures, so you configure this centrally and have consistent behavior regardless of the client setting. It shouldn’t be difficult, using Exchange Web Services as a vehicle to store and retrieve this information.

4 thoughts on “Sent Items Management

  1. Thanks for sharing it…Really its very nice features.

    I have confused, the same settings are available in SP2 RU5v2 , yesterday I have tested with sendas and senton behalf but test email which I sent its not stored in actual users sentitems .

    Also if we configure in owa the same settings will be applied for Outlook client as well?

    Please help me to understand.

    Gangaiyan

    Like

    • It seems the feat was already (silently) added to OWA in SP2 RU4; I haven’t tested it with SP2 RU5v2 so it could be that it was shown in OWA but not functional (yet).
      Regarding Outlook; in the last paragraph I mentioned some features – like signatures or this one – are nice to have a shared settings between OWA and OL. So, until then your Outlook doesn’t honor this settings just like it doesn’t use your signature set via OWA for example.

      Like

Leave a comment

This site uses Akismet to reduce spam. Learn how your comment data is processed.