Managing transport rules and settings
Transport rules can be used within your Exchange organization to take a specific action on a message, based on one or more conditions. For example, you can configure rules that check messages for confidential information or inappropriate content, and then take an action on those messages such as blocking them or forwarding them to another recipient. Exchange 2007 introduced transport rules for the first time; they were developed in Exchange 2010 and now with Exchange 2013, and they have been even better with data loss prevention (DLP) introduced. In this recipe, you'll learn how to create transport rules and implement DLP using cmdlets.
How to do it...
To create a transport rule, use the New-TransportRule
cmdlet:
New-TransportRule -Name Confidential ` -Enabled $true ` -SubjectContainsWords Confidential ` -BlindCopyTo Administrator@contoso.com
Based on the condition and action for this transport rule, all messages that contain the word Confidential
in the...