发送 SMTP 电子邮件时出现问题
Issue when sending SMTP Emails
我正在尝试使用 PHPList 发送群发邮件活动。我的一切正常,但我从发送到 Google 的电子邮件中收到一条错误消息。
此错误发生在消息的 header 中:
Received-SPF: permerror (google.com: permanent error in processing during lookup of bounce@planemover.com: exceeds recursive limit) client-ip=xxx.xx.xxx.xx;
Authentication-Results: mx.google.com;
spf=permerror (google.com: permanent error in processing during lookup of bounce@planemover.com: exceeds recursive limit) smtp.mailfrom=bounce@planemover.com
有谁知道什么会导致这个错误?此错误会导致我的域被列入黑名单吗?
目前,您域上的 SPF 记录是:
planemover.com. 3600 IN TXT "v=spf1 mx a ip4:71.122.219.173 ip4:71.122.219.172 a:mx1.selling-ac.com include:selling-ac.com include:planemover.com ~all"
它包含一个指向自身的 include:
指令。这将导致无限循环(或递归)。
您需要从此 DNS 记录中删除 include:planemover.com
。此记录上的 TTL 为 3600(或 1 小时),因此在您的托管名称服务器的 所有 上发生更改后最多需要 1 小时才能在全球范围内生效。
另外,以后这种问题更适合Server Fault。在 Stack Overflow 上这可能是题外话。
我正在尝试使用 PHPList 发送群发邮件活动。我的一切正常,但我从发送到 Google 的电子邮件中收到一条错误消息。
此错误发生在消息的 header 中:
Received-SPF: permerror (google.com: permanent error in processing during lookup of bounce@planemover.com: exceeds recursive limit) client-ip=xxx.xx.xxx.xx;
Authentication-Results: mx.google.com;
spf=permerror (google.com: permanent error in processing during lookup of bounce@planemover.com: exceeds recursive limit) smtp.mailfrom=bounce@planemover.com
有谁知道什么会导致这个错误?此错误会导致我的域被列入黑名单吗?
目前,您域上的 SPF 记录是:
planemover.com. 3600 IN TXT "v=spf1 mx a ip4:71.122.219.173 ip4:71.122.219.172 a:mx1.selling-ac.com include:selling-ac.com include:planemover.com ~all"
它包含一个指向自身的 include:
指令。这将导致无限循环(或递归)。
您需要从此 DNS 记录中删除 include:planemover.com
。此记录上的 TTL 为 3600(或 1 小时),因此在您的托管名称服务器的 所有 上发生更改后最多需要 1 小时才能在全球范围内生效。
另外,以后这种问题更适合Server Fault。在 Stack Overflow 上这可能是题外话。