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

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

我们已经设置了内容过滤,IP阻止列表提供程序,发件人ID,发件人信誉,它过滤了大部分垃圾,但它也隔离了我们的客户的所有电子邮件。

由于内容筛选器代理程序正在被隔离(下面的报告)。 如何将此电子邮件地址的例外添加到内容filter。 我可以看到如何为收件人地址设置例外(“不要过滤发送给以下收件人的邮件”),但是我想将[email protected]添加到我们的安全列表中。

我不想添加整个域名,因为它是澳大利亚非常stream行的ISP,我们经常从他们那里得到垃圾。

filter报告:

> 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) 

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

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

编辑:您应该使用这一个: Microsoft Technetconfiguration内容过滤属性

 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/

希望这可以帮助