Exchange 2010 add domain to anti spam whitelist
Step 1: Start the Exchange Management Shell
Step 2: Specific Address:
1. $list = (Get-ContentFilterConfig).BypassedSenders
2. $list.add(“new.mail@address.com”) Run the $list.add for each email address that you want to include.
3. Set-ContentFilterConfig -BypassedSenders $list
Step 3: Entire Domain:
1. $list = (Get-ContentFilterConfig).BypassedSenderDomains
2. $list.add(“domain.com”)
3. Set-ContentFilterConfig -BypassedSenderDomains $list
Step 4: Verify Change:
Get-ContentFilterConfig