Exchange-2010
通過垃圾郵件過濾器允許來自特定發件人的電子郵件
我們正在執行 Exchange 2010 並使用內置的反垃圾郵件功能。
我們設置了內容過濾、IP 阻止列表提供商、發件人 ID、發件人信譽,它過濾掉了大部分垃圾郵件,但它也隔離了來自我們一位客戶的所有電子郵件。
由於內容過濾器代理(下方報告),它正在被隔離。如何將此電子郵件地址的例外添加到內容過濾器。我可以看到如何為收貨地址設置例外(“不要過濾發送給以下收件人的郵件”),但我想將 customer@iinet.com.au 添加到我們的安全列表中。
我不想添加整個域,因為它是澳大利亞非常受歡迎的 ISP,我們經常從他們那裡得到垃圾。
過濾報告:
> Diagnostic information for administrators: > > Generating server: something.com > > person@something.com.au > #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 > <customer@iinet.net.au> To: 'Person' <person@something.com.au> > 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: customer@iinet.net.au Received-SPF: None > (server.local.something.com.au: customer@iinet.net.au does not > designate permitted sender hosts)
通過交換菜單項打開 powershell 並執行這些命令:
$list = (Get-ContentFilterConfig).BypassedSenders $list.add("mail@domain.com") Set-ContentFilterConfig -BypassedSenders $list
編輯:您應該使用這個:Microsoft Technet 配置內容過濾屬性
Set-ContentFilterConfig -BypassedSenders safesender@domain.com.au
以下適用於受信任的發件人:
get-Mailbox | Set-MailboxJunkEmailConfiguration -TrustedSendersAndDomains @{Add='address@domain1.com','domain2.com'}
以上將為您的交易所中的每個使用者設置受信任的發件人/域。請閱讀以下連結以獲取更多資訊和範例。
希望這可以幫助