Recipient moderation allows you to require approval for all email messages sent to a particular recipient by a designated moderator. In this recipe, you'll learn how to configure the moderation settings on recipients using the Exchange Management Shell.
Configuring recipient moderation
How to do it...
- To enable moderation for a distribution group, use the Set-DistributionGroup cmdlet:
Set-DistributionGroup -Identity Executives ` -ModerationEnabled $true ` -ModeratedBy administrator ` -SendModerationNotifications Internal
- These same parameters can be used to configure moderation for a mailbox when using the Set-Mailbox cmdlet:
Set-Mailbox -Identity dave ` -ModerationEnabled $true ` -ModeratedBy...