我的系统是 centos 7,带有 postfix、dovecot、pypolicyd-spf、opendkim。
我可以发送邮件,但不能接收邮件,
我注意到以下警告:
Feb 6 20:01:09 srv-8327 postfix/smtpd[20391]: warning: connect to private/policy-spf: No such file or directory
Feb 6 20:01:09 srv-8327 postfix/smtpd[20391]: warning: problem talking to server private/policy-spf: No such file or directory
Feb 6 20:01:10 srv-8327 postfix/smtpd[20391]: warning: connect to private/policy-spf: No such file or directory
Feb 6 20:01:10 srv-8327 postfix/smtpd[20391]: warning: problem talking to server private/policy-spf: No such file or directory
我已经设置好了debugLevel = 4
。/etc/python-policyd-spf/policyd-spf.conf
如何
查找问题python-policyd-spf
?
加:
我终于解决了这个问题:
在 中/etc/postfix/main.cf
,我改为unix:private/policy
,unix:private/policyd-spf
bingo!
smtpd_recipient_restrictions = permit_mynetworks,permit_sasl_authenticated,reject_unauth_destination,check_policy_service unix:private/policyd-spf,reject_invalid_hostname,reject_non_fqdn_helo_hostname,reject_non_fqdn_sender,reject_non_fqdn_recipient
答案1
我终于解决了这个问题:
在 中/etc/postfix/main.cf
,将 改为unix:private/policy
,unix:private/policyd-spf
bingo!
答案2
对于 Ubuntu,我通过改变来解决这个问题
unix:private/policyd-spf
到
unix:private/policy-spf
在 postfix 的 main.cf 中