HowTo Whitelist a domain or email address in Microsoft Exchange 2010

exchange-2010-logo-e1344444075384

First of all, what is a whitelist ?
A whitelist is a list of known safe email senders.  Whitelists can be made up of IP addresses, domain names, or email addresses.  In most cases businesses will choose to whitelist domain names of highly trusted customers or suppliers, or email addresses that are the source of critical emails.

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("new.mail@address.com")

Set-ContentFilterConfig -BypassedSenders $list

To whitelist an entire domain:

$list = (Get-ContentFilterConfig).BypassedSenderDomains

$list.add("domain.com")

Set-ContentFilterConfig -BypassedSenderDomains $list

ENJOY.

And if you encounter any problems feel free to comment contact me.

3 thoughts on “HowTo Whitelist a domain or email address in Microsoft Exchange 2010

  1. Gary Knigge

    Can you tell me, if I whitelist an address or domain in this way, does that mean that outlook clients will not mark these messages as junk? Does it impact the client evaluation of the messages?
    Thank you,
    Gary

  2. Pingback: One Way Solutions Technicians blog : HowTo Whitelist a domain or email address in Microsoft Exchange 2010 | Exchange Server Blog & more

  3. Hosted Desktop Providers

    After I initially commented I eem to have clicked on the -Notify mme whdn new
    comments are added- checkbox and now each time a comment is added I get four emails with the exact same comment.
    There has to be a means you are able to remove me from tyat service?
    Thank you!

Comments are closed.