perl Spamassassin自定义规则不适用于Outlook电子邮件

bvjveswy  于 2023-01-31  发布在  Perl
关注(0)|答案(1)|浏览(137)

我在local.cf文件集上有几个自定义规则,其中一个是关于www.example.com链接的,我设置了它,所以它给每封正文中包含"bit.ly"的电子邮件3分,但在一些电子邮件中有效,在另一些邮件中无效。bit.ly links. I've set it so it gives 3 points to every email that contains "bit.ly" inside their body, but in some emails works and in others don't.
这种情况发生在www.example.com和www.example.com电子邮件上,因此垃圾邮件发送者可以绕过它并绕过此规则。 outlook.com and live.com emails, so spammers can get around it and bypass this rules.
我正在使用EFA的项目,其中包含MailScanner和SpamAssassin(版本3.4.1,运行在Perl版本5.10.1上)。
我使用的规则如下:

body bitly_fucking_final_rule /bit.ly/i
score bitly_fucking_final_rule 3.0
describe bitly_fucking_final_rule Bitly rule for testing purposes

先谢了!

col17t5w

col17t5w1#

命令"body"将不起作用,请使用"uri"或"rawbody"代替。
示例:

uri LOCAL_BITLY_RULE /bit\.ly/i
score LOCAL_BITLY_RULE 3.0
describe LOCAL_BITLY_RULE Mails with Bitly links are often spam

请记住使用以下命令测试本地规则:

spamassassin --lint

相关问题