web-dev-qa-db-ja.com

スパムフィルターを介して特定の送信者からのメールを許可する

Exchange 2010を実行しており、組み込みのスパム対策機能を使用しています。

コンテンツフィルタリング、IP禁止リストプロバイダー、送信者ID、送信者評価を設定しており、ほとんどのジャンクを除外しますが、顧客からのすべての電子メールも隔離します。

コンテンツフィルターエージェント(以下のレポート)のために隔離されています。このメールアドレスの例外をコンテンツフィルターに追加するにはどうすればよいですか。配信アドレスの例外を設定する方法はわかりますが(「次の受信者に送信されたメッセージをフィルターしないでください」)、customer @ iinet.com.auをセーフリストに追加します。

ドメイン全体を追加したくありません。オーストラリアでは非常に人気のある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)
3
Greg

Exchangeメニュー項目からPowerShellを開き、次のコマンドを実行します。

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

編集:これを使用する必要があります: Microsoft Technet Configure Content Filtering Properties

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/

お役に立てれば

2
rihatum