允许特定发件人的电子邮件通过垃圾邮件过滤器

允许特定发件人的电子邮件通过垃圾邮件过滤器

我们正在运行 Exchange 2010 并使用内置的反垃圾邮件功能。

我们已经设置了内容过滤、IP 阻止列表提供商、发件人 ID、发件人信誉,它可以过滤掉大部分垃圾邮件,但它也会隔离来自我们某个客户的所有电子邮件。

由于内容过滤器代理(报告如下),它被隔离了。我如何才能将此电子邮件地址的例外添加到内容过滤器中。我可以看到如何为收件地址设置例外(“不过滤发送给以下收件人的邮件”),但我想添加[电子邮件保护]添加到我们的安全列表。

我不想添加整个域名,因为它是澳大利亚非常受欢迎的 ISP,我们经常收到他们发来的垃圾邮件。

过滤报告:

> Diagnostic information for administrators:
> 
> Generating server: something.com
> 
> [email protected]
> #550 5.2.1 Content Filter agent quarantined this message ##
> 
> Original message headers:
> 
> Received: from icp-osb-irony-out4.external.iinet.net.au (203.59.1.220)
> by  server.local.something.com.au (192.5.0.105) with Microsoft SMTP
> Server id
>  14.1.218.12; Mon, 5 Nov 2012 02:40:40 +1100 X-IronPort-Anti-Spam-Filtered: true X-IronPort-Anti-Spam-Result:
> AscOALeLllB8qwLw/2dsb2JhbABEKYUFhiigRQOWCwQEgQiBCIIZFAEBTiwCCAIBBwEIFDkBBBoqARoCAQIDAYd4uEuRXGEDiCWFT44UijeDAw
> X-IronPort-AV: E=Sophos;i="4.80,710,1344182400";    
> d="scan'208,217";a="55137861" Received: from unknown (HELO
> asdf83c05c53a3) ([124.171.2.240])  by  icp-osb-irony-out4.iinet.net.au
> with ESMTP; 04 Nov 2012 23:40:26 +0800 Message-ID:
> <E8C866D0299E4BCB8B156723893EB735@asdf83c05c53a3> From: Customer
> <[email protected]> To: 'Person' <[email protected]>
> Subject: A long sentance Date: Mon, 5 Nov 2011 06:07:57 +1100
> MIME-Version: 1.0 Content-Type: multipart/alternative;
>   boundary="----=_NextPart_000_0005_01C5F962.3CD09120" X-Priority: 3
> X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express
> 6.00.2900.5931 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2900.6157 Return-Path: [email protected] Received-SPF: None
> (server.local.something.com.au: [email protected]  does not
> designate permitted sender hosts)

答案1

通过交换菜单项打开 powershell 并运行以下命令:

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

答案2

编辑:你应该使用这个:Microsoft Technet 配置内容过滤属性

Set-ContentFilterConfig -BypassedSenders [email protected]  

以下是针对可信发件人的内容:

get-Mailbox | Set-MailboxJunkEmailConfiguration -TrustedSendersAndDomains @{Add='[email protected]','domain2.com'}

以上将为您交易所上的每个用户设置可信发件人/域。请阅读以下链接以获取更多信息和示例。

http://beccabits.com/2011/10/07/how-to-bulk-modify-safe-senders-list-in-outlook-with-exchange-management-shell/

希望这可以帮助

相关内容