Exchange 2010 add domain to anti spam whitelist

Revision as of 06:17, 20 October 2017 by 78.45.88.190 (talk) (Created page with "'''Step 1: Start the Exchange Management Shell''' '''Step 2: Specific Address:''' 1. $list = (Get-ContentFilterConfig).BypassedSenders 2. $list.add(“new.mail@address.com...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

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