Applies to: Exchange Server 2010 SP3, Exchange Server 2010 SP2
Topic Last Modified: 2008-10-13
You may receive the following error when you attempt to remove an arbitration mailbox:
Can't remove the arbitration mailbox "{0}", because it is being used for the approval workflow for existing recipients that either membership restrictions or moderation enabled. Please either disable the approval features on those recipients or specify a different arbitration mailbox for those recipients before removing this arbitration mailbox. |
An arbitration mailbox can be used to handle the approval workflow for moderated recipients and distribution group membership approvals. If you receive this error, you need to do the following:
- Determine which recipients use this arbitration mailbox for
handling approval workflow using the Get-Recipient
cmdlet.
For example, if you want to find all recipients that use the arbitration mailbox AMBX1 for approval features, you can run the following command:
Copy Code Get-Recipient -RecipientPreviewFilter {ArbitrationMailbox -eq "CN=AMBX1,CN=Users,DC=contoso,DC=com"}
Copy Code $ArbitrationMailbox = Get-Mailbox -Identity "AMBX1" -Arbitration $ArbitrationMailboxDN = $ArbitrationMailbox.DistinguishedName Get-Recipient -RecipientPreviewFilter {ArbitrationMailbox -eq $ArbitrationMailboxDN}
- Either specify a different arbitration mailbox using the
ArbitrationMailbox parameter or disable that feature.
For example, assume that the distribution group All Employees uses the arbitration mailbox AMBX1 for moderation. You can run the following command to specify a different arbitration mailbox:
Copy Code Set-DistributionGroup -Identity "All Employees" -ArbitrationMailbox "AMBX2"
Copy Code Set-DistributionGroup -Identity "All Employees" -ModerationEnabled $false
After you reconfigure all recipients that use the arbitration mailbox for approval features, you will be able to delete the arbitration mailbox.