我的服务器可以正常工作,但我SpamAssassin
使用来自 Digital Ocean 的教程。
这是我的/etc/default/spamassassin
:
# /etc/default/spamassassin
# Duncan Findlay
# WARNING: please read README.spamd before using.
# There may be security risks.
# Change to one to enable spamd
ENABLED=1
# Options
# See man spamd for possible options. The -d option is automatically added.
# SpamAssassin uses a preforking model, so be careful! You need to
# make sure --max-children is not set to anything higher than 5,
# unless you know what you're doing.
SAHOME="/var/log/spamassassin/"
OPTIONS="--create-prefs --max-children 2 --username spamd -H ${SAHOME} -s ${SAHOME}spamd.log"
# Pid file
# Where should spamd write its PID to file? If you use the -u or
# --username option above, this needs to be writable by that user.
# Otherwise, the init script will not be able to shut spamd down.
PIDFILE="${SAHOME}spamd.pid"
# Set nice level of spamd
#NICE="--nicelevel 15"
# Cronjob
# Set to anything but 0 to enable the cron job to automatically update
# spamassassin's rules on a nightly basis
CRON=1
和/etc/postfix/master.cf
:
# Postfix master process configuration file. For details on the format
# of the file, see the master(5) manual page (command: "man 5 master" or
# on-line: http://www.postfix.org/master.5.html).
#
# Do not forget to execute "postfix reload" after editing this file.
#
# ==========================================================================
# service type private unpriv chroot wakeup maxproc command + args
# (yes) (yes) (yes) (never) (100)
# ==========================================================================
smtp inet n - - - - smtpd
-o content_filter=spamassassin
#smtp inet n - - - 1 postscreen
#smtpd pass - - - - - smtpd
#dnsblog unix - - - - 0 dnsblog
#tlsproxy unix - - - - 0 tlsproxy
submission inet n - - - - smtpd
-o syslog_name=postfix/submission
-o smtpd_tls_security_level=encrypt
-o smtpd_sasl_auth_enable=yes
-o smtpd_client_restrictions=permit_sasl_authenticated,reject
# -o smtpd_reject_unlisted_recipient=no
# -o smtpd_client_restrictions=$mua_client_restrictions
# -o smtpd_helo_restrictions=$mua_helo_restrictions
# -o smtpd_sender_restrictions=$mua_sender_restrictions
# -o smtpd_recipient_restrictions=
# -o smtpd_relay_restrictions=permit_sasl_authenticated,reject
-o milter_macro_daemon_name=ORIGINATING
smtps inet n - - - - smtpd
-o syslog_name=postfix/smtps
-o smtpd_tls_wrappermode=yes
-o smtpd_sasl_auth_enable=yes
-o smtpd_client_restrictions=permit_sasl_authenticated,reject
# -o smtpd_reject_unlisted_recipient=no
# -o smtpd_client_restrictions=$mua_client_restrictions
# -o smtpd_helo_restrictions=$mua_helo_restrictions
# -o smtpd_sender_restrictions=$mua_sender_restrictions
# -o smtpd_recipient_restrictions=
# -o smtpd_relay_restrictions=permit_sasl_authenticated,reject
-o milter_macro_daemon_name=ORIGINATING
# See the Postfix UUCP_README file for configuration details.
#
uucp unix - n n - - pipe
flags=Fqhu user=uucp argv=uux -r -n -z -a$sender - $nexthop!rmail ($recipient)
#
# Other external delivery methods.
#
ifmail unix - n n - - pipe
flags=F user=ftn argv=/usr/lib/ifmail/ifmail -r $nexthop ($recipient)
bsmtp unix - n n - - pipe
flags=Fq. user=bsmtp argv=/usr/lib/bsmtp/bsmtp -t$nexthop -f$sender $recipient
scalemail-backend unix - n n - 2 pipe
flags=R user=scalemail argv=/usr/lib/scalemail/bin/scalemail-store ${nexthop} ${user} ${extension}
mailman unix - n n - - pipe
flags=FR user=list argv=/usr/lib/mailman/bin/postfix-to-mailman.py
${nexthop} ${user}
spamassassin unix - n n - - pipe
user=spamd argv=/usr/bin/spamc -f -e
/usr/sbin/sendmail -oi -f ${sender} ${recipient}
129,1 Bot
权限如下:
-rw-r----- 1 root root 329 Oct 17 13:58 dynamicmaps.cf
-rw-r--r-- 1 root root 2237 Oct 17 21:18 main.cf
-rw-r----- 1 root root 1359 Oct 17 18:04 main.cf.orig
-rw-r----- 1 root root 6383 Oct 18 08:47 master.cf
-rw-r----- 1 root root 6068 Oct 17 18:20 master.cf.orig
-rw-r----- 1 root root 160 Oct 17 18:18 mysql-virtual-alias-maps.cf
-rw-r----- 1 root root 151 Oct 17 18:18 mysql-virtual-email2email.cf
-rw-r----- 1 root root 148 Oct 17 18:16 mysql-virtual-mailbox-domains.cf
-rw-r----- 1 root root 147 Oct 17 18:17 mysql-virtual-mailbox-maps.cf
-rw-r----- 1 root root 20281 Feb 5 2015 postfix-files
-rwxr-x--- 1 root root 8861 Feb 5 2015 postfix-script
-rwxr-x--- 1 root root 28047 Feb 5 2015 post-install
drwxr-x--- 2 root root 4096 Feb 5 2015 sasl
我收到以下错误:
Oct 18 08:57:57 ubuntuserver postfix/pipe[3132]: 40CA0A1A2C: to=<[email protected]>, relay=spamassassin, delay=356, delays=355/0.03/0/0.71, dsn=4.3.0, status=deferred (temporary failure. Command output: sendmail: fatal: open /etc/postfix/main.cf: Permission denied )
我是否应该将配置文件的权限更改为 777 或类似值?我认为这是最糟糕的想法。
我刚刚为该文件夹设置了 744 权限,但仍然不起作用(我尝试为这个 main.cf 设置 777 权限,但仍然不起作用。
答案1
Spam Assasin 不以 root 用户身份运行,而是spamd
:
spamassassin unix - n n - - pipe
user=spamd argv=/usr/bin/spamc -f -e
/usr/sbin/sendmail -oi -f ${sender} ${recipient}
当 Spam Assasin 尝试将扫描的邮件送回 Postfix 系统时,日志消息表明 Postfix 配置的权限不正确:
10月18日 08:57:57 ubuntuserver postfix/pipe[3132]: 40CA0A1A2C: to=,relay=spamassassin,delay=356,delays=355/0.03/0/0.71,dsn=4.3.0,status=deferred (暂时失败。命令输出:sendmail:致命:打开/etc/postfix/main.cf:权限被拒绝)
sendmail
由您系统上的 Postfix 实现。
很可能你以某种方式弄乱了 Postfix 配置文件/etc/postfix/main.cf
或/etc/postifx
文件夹的权限。两者都应属于 root,并且任何人都可读(但只有 root 可写),目录还需要设置可执行权限:
$ ls -lad /etc/postfix /etc/postfix/main.cf
drwxr-xr-x 1 root root 146 Aug 12 21:52 /etc/postfix/
-rw-r--r-- 1 root root 1873 Feb 22 2016 /etc/postfix/main.cf
可能存在包含凭据的敏感文件/etc/postfix
(例如用于 SMTP 智能主机传送)——确保它们具有严格的权限!