Category: Email

How to Whitelist a domain or email address in Microsoft Exchange 2010

Whitelist features are not available via Exchange Management Console (the GUI), so this will have to be completed via the Exchange Powershell

Open powershell via the exchange menu item and run one of the following scripts, based on your requirement:

__To check whats currently whitelisted (Bypassed Recipients):__

Get-ContentFilterConfig

__To whitelist a single email address:__

$list = (Get-ContentFilterConfig).BypassedSenders
$list.add("[email protected]")
Set-ContentFilterConfig -BypassedSenders $list

__To whitelist an entire domain:__

	
$list = (Get-ContentFilterConfig).BypassedSenderDomains
$list.add("domain.com")
Set-ContentFilterConfig -BypassedSenderDomains $list

 

How useful was this post?

Click on a star to rate it!

Average rating 0 / 5. Vote count: 0

No votes so far! Be the first to rate this post.