问题描述
我想检查电子邮件的SpamAssassin SPAM分数,包括由WebApp的脚本生成的标头。
I want to check the SpamAssassin SPAM score of E-Mails including headers generated by a script from a WebApp.
因此,我需要通过SpamAssassin运行此邮件以获取特定的垃圾邮件标头,例如:
Therefore I need to run this mail through SpamAssassin to get the specific SPAM headers like:
Yes, score=6.032
HTML_IMAGE_ONLY_24=1.282
HTML_MESSAGE=0.001
HTML_MIME_NO_HTML_TAG=0.635
MIME_HEADER_CTYPE_ONLY=1.996
MIME_HTML_ONLY=1.105
RP_MATCHES_RCVD=-0.001
SPF_PASS=-0.001
SUBJECT_NEEDS_ENCODING=0.1
SUBJ_ILLEGAL_CHARS=1.105
T_REMOTE_IMAGE=0.01
一种可能是在服务器上安装SpamAssassin并运行它
One possibility could be to install SpamAssassin on the server and run it through this installation.
是否存在一些可以将邮件粘贴/发送到的在线服务,并且该服务为我提供了SPAM标头?
是的,我知道您可以使用不同的设置来配置SpamAssassin,因此SPAM评分可能因安装而异,
Yes, I know that you can configure SpamAssassin with different settings and therefore the SPAM score may vary from installation to installation, but a basic evaluation would help already.
还是可以检查邮件的RFC一致性?(因为SpamAssassin也会对此进行评估(例如。 MIME_HTML_ONLY,这意味着您没有纯文本内容,因此邮件不符合RFC))。
Or is there a possibility to check the RFC conformance of a message? (Because SpamAssassin also evaluates this (eg. MIME_HTML_ONLY which means that you have no plain text content and therefore the mail isn't RFC conformant)).
谢谢!
推荐答案
以下是一些用于检查垃圾邮件分数的在线资源:
Here are some online resources for checking spam scores:
- http://www.port25.com/support/authentication-center/email-verification/
- http://isnotspam.com/
- http://spamscorechecker.com/
- http://spamcheck-services.com/
或用于离线检查:
- http://www.mailingcheck.com/download-spam-checker/
这里有一些避免误报的提示:
And here some tips to avoid False Positives: http://wiki.apache.org/spamassassin/AvoidingFpsForSenders
这篇关于在线SpamAssassin评估/符合RFC的检查的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!