3

Google アプリ アカウントを持つ少人数のグループにメールを送信するための Webform モジュールがインストールされた Drupal サイトがあります。以前は機能していました。何も変更されていないため、メッセージをまったく受信しません。それらはスパムではありません。彼らは決して期間を迎えません。ただし、受信者として自分の個人的な Gmail アドレスを入力すると、問題なく受信されます...スパムなどではありません。

おそらく問題は、私のドメイン (MediaTemple でホストされている) に SPF レコードがないことだと思ったので、追加しました:

v=spf1 include:spf.mail01.mtsvc.net include:_spf.google.com ~all

ただし、Google はまだ気に入っていません。個人アカウントで受信したメッセージのヘッダーを見ると、次のように書かれています。

Delivered-To: me@gmail.com
Received: by 10.195.13.109 with SMTP id ex13csp22977wjd;
        Thu, 28 Feb 2013 09:58:05 -0800 (PST)
X-Received: by 10.49.16.135 with SMTP id g7mr12547512qed.8.1362074284935;
        Thu, 28 Feb 2013 09:58:04 -0800 (PST)
Return-Path: <info@freeyourlegs.com>
Received: from freeyourlegs.com (freeyourlegs.com. [72.10.49.208])
        by mx.google.com with ESMTPS id fo1si2728187qab.100.2013.02.28.09.58.04
        (version=TLSv1 cipher=RC4-SHA bits=128/128);
        Thu, 28 Feb 2013 09:58:04 -0800 (PST)
Received-SPF: softfail (google.com: domain of transitioning info@freeyourlegs.com does not designate 72.10.49.208 as permitted sender) client-ip=72.10.49.208;
Authentication-Results: mx.google.com;
       spf=softfail (google.com: domain of transitioning info@freeyourlegs.com does not designate 72.10.49.208 as permitted sender) smtp.mail=info@freeyourlegs.com
Received: (qmail 1658 invoked by uid 48); 28 Feb 2013 09:58:04 -0800
Date: 28 Feb 2013 09:58:04 -0800
Message-ID: <20130228175804.1656.qmail@freeyourlegs.com>
To: me@gmail.com
Subject: Form submission from: Schedule an Appointment
X-PHP-Originating-Script: 10001:mail.inc
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8; format=flowed; delsp=yes
Content-Transfer-Encoding: 8Bit
X-Mailer: Drupal Webform (PHP/5.3.5)
Errors-To: info@freeyourlegs.com
Sender: info@freeyourlegs.com
From: "Vein Care Institute" <info@freeyourlegs.com>

「ソフトフェイル...許可された送信者として指定されていません」というビットに混乱しています。さらに、すべてのオプションの組み合わせ (v=spf1 +all を含む) により、 http: //www.kitterman.com/spf/validate.html の SPF テスターで HELO/EHLO ソフトフェイルが発生します(これは不可能に思えます) 。 )、テスターに​​よると、私の現在の記録は「合格」していますが。

ドメインにリバース DNS が設定されていることは知っています。

私は何を逃したのですか?

4

1 に答える 1

3

最初に試すことは、SPF レコードを修正することです。私は提案します:

v=spf1 include:_spf.google.com ip4:72.10.49.208 ~all

spf.mail01.mtsvc.net の IP 範囲が、メールの送信元 IP と一致しません。MediaTemple を調べたところ、メールをホストする際の手順が記載されています。電子メールは、72.10.49.208 である Web サイトの IP から送信されています。

編集: これで問題が解決しない場合は、送信サーバーに問題がある可能性があります。この記事 (およびその中のリンク) を確認することをお勧めします。

自分のドメインのアドレスにメールを送信できない

于 2013-03-01T13:22:23.767 に答える