我正在尝试将 spamassassin 自动检测到的垃圾邮件移至 Debian Jessie 上的垃圾邮件文件夹。
我安装了 Spamassassin 并编辑了配置:
local.cf
(spamassassin 文件夹)
rewrite_header Subject *****SPAM*****
main.cf
spamassassin_destination_recipient_limit = 1
master.cf
smtp inet n - - - - smtpd
-o content_filter=spamassassin
spamassassin unix - n n - - pipe
flags=DROhu user=vmail:vmail argv=/usr/bin/spamc -f -e
/usr/lib/dovecot/deliver -f ${sender} -d ${user}@${nexthop}
90-plugins.conf
(鸽舍)
plugin {
#setting_name = value
sieve = /etc/dovecot/sieve/default.sieve
}
default.sieve
require "fileinto";
if header :contains "X-Spam-Flag" "YES" {
fileinto "Junk";
}
15-mailboxes.conf
(后缀)
mailbox Junk {
auto = subscribe
special_use = \Junk
}
垃圾邮件被*****SPAM*****
正确标记为,但未被移至垃圾邮件文件夹(我使用 roundcube 作为邮件客户端,垃圾邮件文件夹甚至没有显示。日志中也没有错误mail.info
:
Mar 18 17:22:29 *************** postfix/smtpd[6184]: connect from mail-io0-f173.google.com[209.85.223.173]
Mar 18 17:22:29 *************** postfix/smtpd[6184]: DD759241A7B: client=mail-io0-f173.google.com[209.85.223.173]
Mar 18 17:22:30 *************** postfix/cleanup[6189]: DD759241A7B: message-id=<CALvS7dGxMQDAVn7WaVe4xhqyejU_1MBu20QMu__mVyLjggHi9w@mail.gmail.com>
Mar 18 17:22:30 *************** postfix/qmgr[4489]: DD759241A7B: from=<***************m>, size=2492, nrcpt=1 (queue active)
Mar 18 17:22:30 *************** spamd[4506]: spamd: connection from ip6-localhost [::1]:46206 to port 783, fd 6
Mar 18 17:22:30 *************** spamd[4506]: spamd: processing message <CALvS7dGxMQDAVn7WaVe4xhqyejU_1MBu20QMu__mVyLjggHi9w@mail.gmail.com> for vmail:5555
Mar 18 17:22:30 *************** postfix/smtpd[6184]: disconnect from mail-io0-f173.google.com[209.85.223.173]
Mar 18 17:22:30 *************** spamd[4506]: spamd: identified spam (1000.3/2.0) for vmail:5555 in 0.2 seconds, 2547 bytes.
Mar 18 17:22:30 *************** spamd[4506]: spamd: result: Y 1000 - FREEMAIL_ENVFROM_END_DIGIT,FREEMAIL_FROM,GTUBE,HTML_MESSAGE,RCVD_IN_MSPIKE_H2,SPF_PASS,TVD_SPACE_RATIO,T_DKIM_INVALID scantime=0.2,size=2547,user=vmail,uid=5555,required_score=2.0,rhost=ip6-localhost,raddr=::1,rport=46206,mid=<CALvS7dGxMQDAVn7WaVe4xhqyejU_1MBu20QMu__mVyLjggHi9w@mail.gmail.com>,autolearn=no autolearn_force=no
Mar 18 17:22:30 *************** spamd[4505]: prefork: child states: II
Mar 18 17:22:30 *************** dovecot: lda(***************): msgid=<CALvS7dGxMQDAVn7WaVe4xhqyejU_1MBu20QMu__mVyLjggHi9w@mail.gmail.com>: saved mail to INBOX
Mar 18 17:22:30 *************** postfix/pipe[6192]: DD759241A7B: to=<***************>, relay=spamassassin, delay=0.63, delays=0.32/0/0/0.3, dsn=2.0.0, status=sent (delivered via spamassassin service)
Mar 18 17:22:30 *************** postfix/qmgr[4489]: DD759241A7B: removed
答案1
要管理过滤规则,您可以使用 dovecot 上的筛选器。您可以将其设置为全局筛选器或每个用户筛选器。
对于全局筛选,请使用 /etc/dovecot/dovecot.conf 中的配置:
sieve_global_path = /home/vmail/sieve/dovecot.sieve
对于每个用户的筛选使用配置:
sieve = /%Lh/sieve/dovecot.sieve
which %Lh===dovecot 将会改变它为用户邮箱目录
这是筛选文件内容的示例:
if header :contains "*****SPAM*****" "YES" { fileinto "Junk"; stop; }
答案2
就我而言,我缺少include conf.d/*.conf
一行dovecot.conf
,并且 dovecot 没有从这些文件中读取配置,包括90-plugins.conf
。
但是我没有包含该行,因为我的所有配置都已存在dovecot.conf
,并且conf.d/*.conf
文件将用默认设置覆盖它,所以我只是包含了这些行dovecot.conf
:
plugin {
sieve = /etc/dovecot/sieve/default.sieve
}
protocol lda {
mail_plugins = $mail_plugins sieve
}
您的其他配置都很好,应该可以工作(似乎您从这个答案)。