Exchange 2010 nepodporuje whitelisting skrze Exchange Management Consoli, tudíž je potřeba vše nastavovat přes Exchange Powershell.
Pro získání aktuálního seznamu whitelistovaných adres či domén použij:
Get-ContentFilterConfig
Pro whitelistování jedné e-mailové adresy použij:
$list = (Get-ContentFilterConfig).BypassedSenders
$list.add("new.mail@address.com")
Set-ContentFilterConfig -BypassedSenders $list
Pro whitelistování jedné domény použij:
$list = (Get-ContentFilterConfig).BypassedSenderDomains
$list.add("domain.com")
Set-ContentFilterConfig -BypassedSenderDomains $list
Pro whitelistování více domén použij:
Set-ContentFilterConfig -BypassedSenderDomains “microsoft.com”,”zenprise.com”,”somedomain.com”
Pro přidání další hodnoty použij:
Set-ContentFilterConfig -BypassedSenderDomains +domainthree.com,domainfour.com
Pro odebrání některé domény použij
[PS] C:>$List = (Get-ContentFilterConfig).BypassedSenderDomains
[PS] C:>$List.remove("nově_přidávaná_doména.tld")
[PS] C:>set-contentfilterconfig -bypassedsenderdomains:$list