为什么我的SPFlogging不起作用?

垃圾邮件发送者正在使用我的域名发送垃圾邮件,而且我收到大量反弹的电子邮件

我在域名上有一个SPFlogging,但它似乎没有任何效果。 接收MTA的似乎是声称我的域是中立的所有发送ips。

我的SPFlogging是:

v=spf1 include:_spf.google.com -all 

(该域名是foomatic.net)

作为一个例子,一个退回的电子邮件包含以下SPF消息

 Received-SPF: neutral (foomatic.net: domain of [email protected] is neutral about designating 86.105.67.98 as permitted sender) 

谁能告诉我为什么这个SPFlogging不能正常工作?

(完整的电子邮件标题如下)

 Return-Path: <[email protected]> X-YahooFilteredBulk: 86.105.67.98 X-Originating-IP: [86.105.67.98] Received-SPF: neutral (foomatic.net: domain of [email protected] is neutral about designating 86.105.67.98 as permitted sender) Authentication-Results: mta524.mail.kks.yahoo.co.jp from=foomatic.net; domainkeys=neutral (no sig) Received: from 86.105.67.98 (HELO foomatic.net) (86.105.67.98) by mta524.mail.kks.yahoo.co.jp with SMTP; Fri, 24 Sep 2010 05:07:52 +0900 Received: from unknown (180.137.66.216) by mtu23.bigping.com with NNFMP; Thu, 23 Sep 2010 22:51:22 +0200 Received: from rly04.hottestmile.com ([Thu, 23 Sep 2010 22:43:07 +0200]) by qrx.quickslick.com with LOCAL; Thu, 23 Sep 2010 22:43:07 +0200 Received: from [173.232.106.195] by public.micromail.com.au with QMQP; Thu, 23 Sep 2010 22:34:49 +0200 Message-ID: <[email protected]> Date: Thu, 23 Sep 2010 22:22:19 +0200 From: "Ella" <[email protected]> MIME-Version: 1.0 To: <[email protected]> Subject: ready 4 u Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit 

你可能想怀疑涉及的MTA。

据我所知,你的SPFlogging设置正确。 我使用发件人地址([email protected])向我的某个地址(Gmail)发送了一条消息。 Gmail确实评估了SPF,但无论如何都始终提供消息。 这是我得到的标题:

收到SPF:失败(google.com:域[email protected]不会指定XXX.XXX.XXX.XXX为允许的发件人)client-ip = XXX.XXX.XXX.XXX;
身份validation结果:mx.google.com; spf = hardfail(google.com:域名[email protected]不会将XXX.XXX.XXX.XXX指定为允许的发件人)[email protected]

我的猜测是,yahoo.co.jp的服务器没有正确评估SPF,但我没有任何电子邮件地址,所以我无法testing它确保。 除此之外,你可能会遇到其他MTA,不尊重SPF硬性故障,导致消息仍然交付。

您的SPFlogging设置为严重失败(使用-all )。 但是,您包括设置为中性的 “_spf.google.com” 失败 (通过包括?all )。

 # host -t txt _spf.google.com _spf.google.com descriptive text "v=spf1 ip4:216.239.32.0/19 ip4:64.233.160.0/19 ip4:66.249.80.0/20 ip4:72.14.192.0/18 ip4:209.85.128.0/17 ip4:66.102.0.0/20 ip4:74.125.0.0/16 ip4:64.18.0.0/20 ip4:207.126.144.0/20 ip4:173.194.0.0/16 ?all" 

我相信我可能会看到你的问题。 我假设你的spflogging,这是一个谷歌域,你正在使用它们来发送邮件。 改变你的SPFlogging从“-all”到“〜all” – 据我所知,这可能会导致一些问题。 请参阅此处: http : //www.google.com/support/a/bin/answer.py?answer=178723

顺便说一下,收到SPF:中立意味着服务器既不被允许也不被拒绝。