Applies to: Exchange Server 2010 SP3, Exchange Server 2010 SP2

Topic Last Modified: 2012-07-23

Sender reputation is anti-spam functionality that's enabled on computers that have the Microsoft Exchange Server 2010 Edge Transport server role installed to block messages according to various characteristics of the sender. Sender reputation relies on persisted data about the sender to determine what action, if any, to take on an inbound message.

Looking for other management tasks related to anti-spam and antivirus features? Check out Managing Anti-Spam and Antivirus Features.

Note:
By default, sender reputation processing is enabled on the Edge Transport server for inbound messages that come from the Internet but aren't authenticated and are therefore handled as external messages.

The Protocol Analysis agent is the underlying agent for sender reputation functionality. It's important to understand that when you perform the following procedures, sender reputation functionality is enabled or disabled, but the underlying Protocol Analysis agent is still enabled. To disable the underlying Protocol Analysis agent, run the Disable-TransportAgent cmdlet.

Prerequisites

Use the EMC to enable or disable sender reputation

You need to be assigned permissions before you can perform this procedure. To see what permissions you need, see the "Anti-spam features" entry in the Transport Permissions topic.

  1. Open the EMC on the Edge Transport server.

  2. In the console tree, click Edge Transport.

  3. In the work pane, click the Anti-spam tab, and then select Sender Reputation.

  4. In the action pane, click Enable or Disable as appropriate.

Use the Shell to enable or disable sender reputation

You need to be assigned permissions before you can perform this procedure. To see what permissions you need, see the "Anti-spam features" entry in the Transport Permissions topic.

This example enables sender reputation.

Copy Code
Set-SenderReputationConfig -Enabled $true

This example disables sender reputation.

Copy Code
Set-SenderReputationConfig -Enabled $false

For detailed syntax and parameter information, see Set-SenderReputationConfig.

Use the Shell to enable or disable sender reputation for internal and external messages

You need to be assigned permissions before you can perform this procedure. To see what permissions you need, see the "Anti-spam features" entry in the Transport Permissions topic.

Note:
You can't use the EMC to enable or disable sender reputation for internal and external messages.

This example enables sender reputation for external messages.

Copy Code
Set-SenderReputationConfig -ExternalMailEnabled $true

This example disables sender reputation for external messages.

Copy Code
Set-SenderReputationConfig -ExternalMailEnabled $false
Note:
By default, sender reputation is enabled for external messages.

This example enables sender reputation for internal messages.

Copy Code
Set-SenderReputationConfig -InternalMailEnabled $true

This example disables sender reputation for internal messages.

Copy Code
Set-SenderReputationConfig -InternalMailEnabled $false

For detailed syntax and parameter information, see Set-SenderReputationConfig.