In my previous article I have shown you how to enable Spam feature in Hub Transport Servers in Exchange Server 2010. By enabling Spam feature in exchange server it apply for all exchange users. And if you have special requirement to bypass anti-spam feature for specific mailbox(s), then this article will help.
To enable Anti-Spam bypass option to specific mailbox run the below shell command.
Set-Mailbox [email protected] -AntispamBypassEnabled $true
To view the the Anti-Spam options run the below command.
Get-Mailbox [email protected] | fl *spam*,*SCL*
You can also use below command to get all Anti-Spam bypass users.
Get-Mailbox | where {$_.AntispamBypassEnabled -eq $true}
Disable Anti Spam bypass option.
Leave a Reply