积极答复者
exchange 2013 将发件人加入白名单

问题
答案
-
你好,
你可以使用Set-ContentFilterConfig下的BypassedRecipients或BypassedSenders参数来排除具体邮件地址被筛选:
参数
说明
BypassedRecipients
BypassedRecipients 参数指定组织中收件人的 SMTP 地址值。内容筛选器代理不会对发往该参数所列地址的邮件进行任何内容筛选处理。若要输入多个 SMTP 地址,请使用逗号分隔各个地址,例如:recipient1@contoso.com,recipient2@contoso.com。可以输入的最大收件人数为 100。
BypassedSenders
BypassedSenders 参数指定发件人的 SMTP 地址值。内容筛选器代理不会对来自该参数所列地址的邮件进行任何内容筛选处理。若要输入多个 SMTP 地址,请使用逗号分隔各个地址,例如:sender1@contoso.com, sender2@example.com。可以输入的最大 SMTP 地址数为 100。
谢谢!
Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact tnmff@microsoft.com.
Niko Cheng
TechNet Community Support- 已标记为答案 Niko.ChengModerator 2015年4月8日 3:27
全部回复
-
A white-list is a list of approved domains / servers that are allowed to send email to your domain no matter what they send – meaning it may have any content in the email that would normally be prohibited from entering your Exchange organization but it will still get through to the end users as these domains are whitelisted. This is useful if you want to guarantee that you always receive email from certain companies.If you would like to add a white-list to exchange 2007/2010 to bypass any spam filtering systems the follow the guide below on how tosetup a white-list in exchange 2007 , exchange 2010 and now Exchange 2013.
Create A Whitelist in Exchange 2007,2010 or Exchange 2013
This is a nice simple process.
1) First we need to run the exchange 2007,2010 or Exchange 2013 powershell (EMS ).
Once in there we need to run the following command
Set-ContentFilterConfig -BypassedSenderDomains the domain.com
That command will allow the domain “domain.com” to send emails into your Exchange organization regardless of any content or attachemnts.As you can I have whitelisted Microsoft.com on my domain.
To allow multiple domains you would need to do the following
Set-ContentFilterConfig -BypassedSenderDomains Nevilleuk.com,anotherdomain.com,andanotherdomain.com
You ca add as many or as few domains to that list as you require.
Finally to view what domains you have actually whitelisted then the command is as below
get-ContentFilterConfig
As you can see, we have only allowed Microsoft.com to be whitelisted here.
To view more extensions to this command view the official Microsoft page http://technet.microsoft.com/en-us/library/aa996791.aspx
具体链接 http://www.techieshelp.com/setup-exchange-20072010-whitelists/
-
您好,参考http://www.falconitservices.com/support/KB/Lists/Posts/Post.aspx?ID=131
For individual e-mail addresses:
$list = (Get-ContentFilterConfig).BypassedSenders
$list.add("address@domain.com")
Set-ContentFilterConfig -BypassedSenders $listFor domains:
$list = (Get-ContentFilterConfig).BypassedSenderDomains
$list.add("domain.com")
Set-ContentFilterConfig -BypassedSenderDomains $listTo remove an entry, use the following command(s):
Set-ContentFilterConfig -BypassedSenderDomains @{Remove="domain.com"}
Set-ContentFilterConfig -BypassedSenders @{Remove="mail.domain.com"}
-
你好,
你可以使用Set-ContentFilterConfig下的BypassedRecipients或BypassedSenders参数来排除具体邮件地址被筛选:
参数
说明
BypassedRecipients
BypassedRecipients 参数指定组织中收件人的 SMTP 地址值。内容筛选器代理不会对发往该参数所列地址的邮件进行任何内容筛选处理。若要输入多个 SMTP 地址,请使用逗号分隔各个地址,例如:recipient1@contoso.com,recipient2@contoso.com。可以输入的最大收件人数为 100。
BypassedSenders
BypassedSenders 参数指定发件人的 SMTP 地址值。内容筛选器代理不会对来自该参数所列地址的邮件进行任何内容筛选处理。若要输入多个 SMTP 地址,请使用逗号分隔各个地址,例如:sender1@contoso.com, sender2@example.com。可以输入的最大 SMTP 地址数为 100。
谢谢!
Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact tnmff@microsoft.com.
Niko Cheng
TechNet Community Support- 已标记为答案 Niko.ChengModerator 2015年4月8日 3:27