Messages sent from a shared mailbox aren't saved to the Sent Items folder of the shared mailbox in Outlook
PROBLEM
CAUSE
SOLUTION
To work around this issue, use one of the following methods.
Method 1: Set the DelegateSentItemsStyle registry value on the Outlook client
Note Outlook must be configured to run in cached mode for this option to work correctly. For more information, see the following Microsoft Knowledge Base article:
2703723 Email remains in the Outbox when you use the DelegateSentItemsStyle registry value
If you're running Outlook 2010, install the Outlook 2010 hotfix package that's dated December 14, 2010. Then, follow these steps.
For more information about this hotfix package, see the following Microsoft Knowledge Base article:
2459115 Description of the Outlook 2010 hotfix package (outlook-x-none.msp): December 14, 2010
Note If you're running Outlook 2013 or a later version, you don't have to install any hotfix.
- Click Start, click Run, type regedit, and then click OK.
- Locate and then click the following registry subkey:HKEY_CURRENT_USER\Software\Microsoft\Office\x.0\Outlook\PreferencesNote The x.0 placeholder represents your version of Office (16.0 = Office 2016, 15.0 = Office 2013, 14.0 = Office 2010).
- On the Edit menu, point to New, and then click DWORD Value.
- Type DelegateSentItemsStyle, and then press Enter.
- Right-click DelegateSentItemsStyle, and then click Modify.
- In the Value data box, type 1, and then click OK.
- Exit Registry Editor.
Method 2: Configure the mailbox to save a copy of the message to the Sent Items folder of the shared mailbox in Exchange Online or in on-premises Exchange Server
Exchange Online in Office 365 or Exchange Server 2013 Cumulative Update 9 or later update
Cumulative Update 9 for Exchange Server 2013 introduced a new feature that lets administrators configure the Sent Items folder to which a message is copied. For more information, see Exchange Blog - Want more control over Sent Items when using shared mailboxes?.Exchange Server 2010 Service Pack 2 Update Rollup 4 or later update
Update Rollup 4 for Exchange Server 2010 Service Pack 2 introduced a new Exchange PowerShell cmdlet to configure the Sent Items folder to which a message is copied. Because this new feature is handled by the server that's running Exchange Server, Outlook can be configured in online mode or cached Exchange mode. However, this feature works only if the Outlook DelegateSentItemsStyle registry value is disabled.For more information about the Set-MailboxSentItemsConfiguration cmdlet, see the following Microsoft Knowledge Base article:
2632409 Messages sent by using the "Send As" and "Send on behalf" permissions are only copied to the Sent Items folder of the sender in an Exchange Server 2010 environment
Method 3: Powershell
$UserCredential =
Get-Credential
$Session =
New-PSSession -ConfigurationName Microsoft.Exchange -ConnectionUri https://outlook.office365.com/powershell-liveid/
-Credential $UserCredential -Authentication Basic -AllowRedirection
Set-ExecutionPolicy
Unrestricted
Import-PSSession
$Session
For emails Sent As the
shared mailbox:
Set-mailbox sharedmailbox@dominio.com -MessageCopyForSentAsEnabled $True
For emails Sent On
Behalf of the shared mailbox:
Set-mailbox sharedmailbox@dominio.com -MessageCopyForSendOnBehalfEnabled
$True
Per controllare se
eseguito correttamente:
Get-mailbox sharedmailbox@dominio.com |fl
*MessageCopyForSendOnBehalfEnabled* , *MessageCopyForSentAsEnabled*
Remove-PSSession
$Session
Commenti
Posta un commento