3

我有一个安装了 Webform 模块的 Drupal 站点,用于向一小群拥有 Google 应用程序帐户的人发送电子邮件。它曾经工作过;现在,没有任何改变,他们根本没有收到消息。他们不在垃圾邮件中;他们只是永远不会到达时期。但是,如果我输入我自己的个人 Gmail 地址作为收件人,我会很好地收到它……而不是垃圾邮件或任何东西。

我想问题可能是我的域(托管在 MediaTemple)没有 SPF 记录,所以我添加了一个:

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

但是,谷歌仍然不喜欢它。当我查看在我的个人帐户中收到的消息的标题时,它说:

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>

我对“softfail ...不指定为允许的发件人”位感到困惑。此外,每个选项组合(包括 v=spf1 +all)都会在http://www.kitterman.com/spf/validate.html上的 SPF 测试仪上给我一个 HELO/EHLO 软故障(这甚至看起来不可能),即使根据测试人员的说法,我当前的记录确实“通过”。

我确实知道为我的域设置了反向 DNS。

我错过了什么?

4

1 回答 1

3

首先要尝试的是更正 SPF 记录。我会建议:

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

spf.mail01.mtsvc.net 中的 IP 范围与电子邮件来自的 IP 不匹配——我查找了 MediaTemple,他们的说明适用于您在使用他们托管电子邮件时。该电子邮件来自该网站的 IP,即 72.10.49.208

编辑:如果这不能解决问题,那么问题可能与发送服务器有关。建议您查看这篇文章(以及其中的链接):

无法向我自己域中的地址发送电子邮件

于 2013-03-01T13:22:23.767 回答