web-dev-qa-db-ja.com

間違ったIPを示すPostfixヘッダー

Debian8.0でPostfix2.11.3を使用しています

サービスに応じて発信トラフィックのバランスを取るために、サーバーに接続されているパブリックIPごとに1つずつ、複数のインスタンス(3)を実行するようにPostfixを構成しました。

すべてのサブドメイン(IPごとに1つのサブドメイン)にDKIMとSPFを構成しましたが、GMailや他のプロバイダーからSPFとDKIMの失敗を受け取ることがあり、ヘッダーを見ると、受信メールサーバーがIPを解決できなかったようです。

たとえば、次のヘッダーを確認してください

Delivered-To: [email protected]
Received: by 10.28.221.87 with SMTP id u84csp184407wmg;
        Fri, 5 Jun 2015 19:26:17 -0700 (PDT)
X-Received: by 10.52.116.162 with SMTP id jx2mr11374004vdb.80.1433557576885;
        Fri, 05 Jun 2015 19:26:16 -0700 (PDT)
Return-Path: <[email protected]>
Received: from hello3.much.cheap ([2607:5300:60:6516::])
        by mx.google.com with ESMTP id f2si9741219vdb.2.2015.06.05.19.26.14
        for <[email protected]>;
        Fri, 05 Jun 2015 19:26:15 -0700 (PDT)
Received-SPF: permerror (google.com: domain of [email protected] uses a mechanism not recognized by this client. unknown  mechanisms: )) client-ip=2607:5300:60:6516::;
Authentication-Results: mx.google.com;
       spf=permerror (google.com: domain of [email protected] uses a mechanism not recognized by this client. unknown  mechanisms: )) [email protected];
       dkim=pass [email protected];
       dmarc=pass (p=NONE dis=NONE) header.from=hello3.much.cheap
Message-Id: <55725a47.220a340a.cc4f.ffffada7SMTPIN_ADDED_MISSING@mx.google.com>
Received: from hello3.much.cheap (hello3.much.cheap [167.114.180.233])
    by hello3.much.cheap (Postfix) with ESMTP id 27F7940083
    for <[email protected]>; Fri,  5 Jun 2015 22:26:10 -0400 (EDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=much.cheap; s=hello;
    t=1433557570; bh=z/R8LvudDLyZmOBbw+42+SG7pLmnI+4/+E4YxHqibK4=;
    h=Date:To:From:Subject:From;
    b=tJdvbP1c+me6BwXx4Qayzwvw7GR+OFd/xG+OwCqXz/YNPVhTIS56HxGxRkEvnztTr
     ClouAavusckmwXfQ5GmwjWvzVlcIZc7eT9rkBrAL8Th+2YPXNiw4k36ZDRik9lfICp
     qpvcGIhruOCE4BBQFE31j2qEDTl6qVh2D0jSAbD8=
Received: from [167.114.180.233] by hello3.much.cheap with HTTP; Fri, 05 Jun 2015 22:26:09 -0400
Date: Fri, 5 Jun 2015 22:26:10 -0400
To: [email protected]
From: Chris <[email protected]>
Subject: Wonderful trip with family!
Bounces-To: [email protected]

間違った解決済みIPが原因でSPFとDKIMの両方が失敗することがわかります:2607:5300:60:6516 ::最も奇妙なことは、SPFとDKIMレコードの後、Googleが実際に私の実際のIPを見ることができることです(受信:[167.114から。 180.233] hello3.much.cheapによる)

エラーは一定ではなく、最初のヘッダーでも正しいIP(167.114.180.233)を取得し、すべてのチェックに合格する場合があります。

私はファイアウォール/プロキシの背後にいないことに注意してください。関連するpostfixインスタンスは正しいIPアドレスにバインドされています

master.cf

67.114.180.233:2533     inet  n       -       n       -       -       smtpd

main.cf

myorigin = hello3.much.cheap
myhostname = hello3.much.cheap
mydomain = hello3.much.cheap
queue_directory = /var/spool/postfix-3
data_directory = /var/lib/postfix-3
multi_instance_group = outgoing
multi_instance_name = postfix-3
inet_interfaces = all
smtp_bind_address = 167.114.180.233
mynetworks = 127.0.0.0/8 167.114.64.22 167.114.180.232/29

smtpd_client_restrictions = permit_mynetworks, permit_sasl_authenticated, reject
smtpd_helo_restrictions = permit_mynetworks, permit_sasl_authenticated, reject
smtpd_sender_restrictions = permit_mynetworks, permit_sasl_authenticated, reject
smtpd_recipient_restrictions = permit_mynetworks, permit_sasl_authenticated, reject


milter_protocol = 2
milter_default_action = accept
smtpd_milters = inet:localhost:12301
non_smtpd_milters = inet:localhost:12301
multi_instance_enable = yes

smtp_generic_maps = hash:/etc/postfix-3/generic

sender_canonical_classes = envelope_sender, header_sender
sender_canonical_maps =  regexp:/etc/postfix-3/sender_canonical_maps
smtp_header_checks = regexp:/etc/postfix-3/header_check
mime_header_checks = regexp:/etc/postfix-3/header_check
header_checks = regexp:/etc/postfix-3/header_check
strict_mailbox_ownership = no

何か案が?

2
Andrea Olivato

このヘッダー

Received: from hello3.much.cheap ([2607:5300:60:6516::])
        by mx.google.com with ESMTP id f2si9741219vdb.2.2015.06.05.19.26.14
        for <[email protected]>;
        Fri, 05 Jun 2015 19:26:15 -0700 (PDT)

postfixがIPv6経由でmx.google.comにメールを送信することを示しています。それ以外の場合、postfixはIPv4経由で電子メールを送信します。

SPFチェッカーmx.google.comは、IPv6アドレスを使用してSPFレコードと比較します

v=spf1 mx a ptr include:much.cheap ~all

ご覧のとおり、IPv6レコードはSPFレコードにリストされていなかったため、GoogleはSPFチェックの失敗について警告します。サーバーmx.google.comは、IPアドレスを解決するときに間違いはありません。 IPv6で送信するのはサーバーです。

修正は、IPv6レコードをSPFに追加することです。


あなたがパラメータを持っているので、なぜpostfixがIPv6経由でメールを送信するのか私はまだ知りません

smtp_bind_address = 167.114.180.233

ただし、メールログを詳細レベルでテーリングすると、問題が明らかになる可能性があります。

3
masegaloeh

DNS優先ルールに関連している可能性があります。標準は、最初にIPv6を解決し、次にIPv4を解決することです。この動作を変更して、ファイル/etc/gai.confを変更できます。IPv4を優先する場合は、次の行のコメントを解除します。

#precedence ::ffff:0:0/96 100

0