2015-10-13 44 views
2

當我試圖從我的服務器發送郵件,它進入gmail.I的垃圾郵件箱與Isnotspam website.Everything看起來不錯檢查期望DomainKeys的支票。您驗證我的日誌和告訴我如何解決這個問題。郵件進入垃圾郵件箱(包括isnotspam日誌)

========================================================== 
Summary of Results 
========================================================== 

SPF Check : pass 
Sender-ID Check : pass 
DomainKeys Check : neutral 
DKIM Check : pass 
SpamAssassin Check : ham (non-spam) 
========================================================== 
Details: 
========================================================== 

HELO hostname: mail.cybapps.com 
Source IP: xxx.xxx.xxx.xxx 
mail-from: [email protected] 
Anonymous To: [email protected] 
--------------------------------------------------------- 
SPF check details: 
---------------------------------------------------------- 

Result: pass 
ID(s) verified: [email protected] 
DNS record(s): 
cybapps.com. 300 IN TXT "v=spf1 a mx ip4:xxx.xxx.xxx.xxx ~all" 


---------------------------------------------------------- 
Sender-ID check details: 
---------------------------------------------------------- 

Result: pass 

ID(s) verified: [email protected] 
DNS record(s): 
cybapps.com. 300 IN TXT "v=spf1 a mx ip4:xxx.xxx.xxx.xxx ~all" 


---------------------------------------------------------- 
DomainKeys check details: 
---------------------------------------------------------- 

Result: neutral (message not signed) 
ID(s) verified: [email protected] 
Selector= 
domain= 
DomainKeys DNS Record= 

---------------------------------------------------------- 
DKIM check details: 
---------------------------------------------------------- 

Result: pass 
ID(s) verified: [email protected] 
Selector=mail 
domain=cybapps.com 
DomainKeys DNS Record=mail._domainkey.cybapps.com 

---------------------------------------------------------- 
SpamAssassin check details: 
---------------------------------------------------------- 
SpamAssassin 3.4.1 (2015-04-28) 

Result: ham (non-spam) (03.6points, 10.0 required) 

pts rule name description 
---- ---------------------- ------------------------------- 


* 3.5 BAYES_99 BODY: Bayes spam probability is 99 to 100% 
* [score: 1.0000] 
* -0.0 T_RP_MATCHES_RCVD Envelope sender domain matches handover relay 
* domain 
* -0.0 SPF_PASS SPF: sender matches SPF record 
* 0.2 BAYES_999 BODY: Bayes spam probability is 99.9 to 100% 
* [score: 1.0000] 
* -0.1 DKIM_VALID_AU Message has a valid DKIM or DK signature from author's 
* domain 
* -0.1 DKIM_VALID Message has at least one valid DKIM or DK signature 
* 0.1 DKIM_SIGNED Message has a DKIM or DK signature, not necessarily 
* valid 
X-Spam-Status: Yes, hits=3.6 required=-20.0 tests=BAYES_99,BAYES_999, 
DKIM_SIGNED,DKIM_VALID,DKIM_VALID_AU,SPF_PASS,T_RP_MATCHES_RCVD autolearn=no 
autolearn_force=no version=3.4.1 
X-Spam-Score: 3.6 

To learn more about the terms used in the SpamAssassin report, please search 
here: http://wiki.apache.org/spamassassin/ 

========================================================== 
Explanation of the possible results (adapted from 
draft-kucherawy-sender-auth-header-04.txt): 
========================================================== 
+1

難道是Bayes評分讓GMail認爲它是垃圾郵件嗎?貝葉斯(或貝葉斯)分數基於郵件中的單詞和單詞組合。 IsNotSpam似乎也將郵件檢測爲貝葉斯垃圾郵件(概率超過99%)。所以我的猜測是,它的內容被檢測爲垃圾郵件,而不是發送服務器。 –

回答

0

我做了一個DNS查找到您的域名,發現它:

$ host -t txt cybapps.com 
cybapps.com descriptive text "google-site-verification=r3eFsCxzevI8CjwQsDi21PbKILrMc-EQjfQsSe301Wk" 
cybapps.com descriptive text "v=spf1 a mx ptr ip4:172.110.8.33 mx:cybapps.com ~all" 

所以,你加入了谷歌的TXT驗證,這與SPF衝突。你能否通過文件進行Google驗證,然後再試一次?請注意,您需要等到TTL過期。

還要注意:一個失敗或DKIM或域關鍵字結果中性的結果不把你的郵件進入垃圾郵件。您的MX服務器更有可能位於某個黑名單上。另請注意給出的郵件IP的PTR記錄不指向你的郵件服務器,但你的普通域(應該是mail.cybapps.com代替):

$ host mail.cybapps.com 
mail.cybapps.com has address 172.110.8.33 
$ host 172.110.8.33 
33.8.110.172.in-addr.arpa domain name pointer cybapps.com. 

編輯:

我通常使用mxtoolbox來檢查我的郵件安裝: http://mxtoolbox.com/domain/cybapps.com/

希望它有幫助!