I am a Zivver admin
Configure and manage Zivver
Unset OWAMailboxPolicy
Introduction
It is no longer necessary to manually set the OWAMailboxPolicy using PowerShell commands. This policy is now part of the default Outlook Web Access (OWA) functionality. If you have manually configured this policy for your users in the past, you must disable it to avoid unexpected behavior when users send emails from Outlook Web Access (OWA).
Disable OWAMailboxPolicy
To disable OWAMailboxPolicy:
- Connect to Exchange via PowerShell
Import-Module ExchangeOnlineManagement
Connect-ExchangeOnline -UserPrincipalName admin@domain.com
- Check the available OwaMailboxPolicies and their value for
OnSendAddinsEnabled. Ensure that the default value isFALSE:Get-OwaMailboxPolicy | fl name, onsendaddinsenabled - Update the OwaMailboxPolicy for all users:
Get-User -Filter {RecipientTypeDetails -eq 'UserMailbox'} -ResultSize Unlimited | Set-CASMailbox -OwaMailboxPolicy OWAMailboxPolicy-Default - Close the connection to Exchange:
Disconnect-ExchangeOnline - Disable or delete the task that assigns the OwaMailboxPolicy to new users:
- Open the Windows Task Scheduler.
- Locate the task that enables the OwaMailboxPolicy.
- Disable or delete the task.