我们从另一个 ISP 继承了 DNS,现在我们的邮件服务器每分钟被大约 1000 封电子邮件轰炸,其中 99.99% 的电子邮件只是垃圾邮件。我们正在尝试优化过滤/拒绝垃圾邮件,但运气不佳。
您认为最佳设置是smtpd_recipient_restrictions
什么?
系统配置:Ubuntu + Amavis + Postfix + MySQL + Fail2Ban-Postfix
欢迎任何建议!
UDPATE, 2012-08-08
在更改 posftix 配置如下并配置 Potrgey 服务后,垃圾邮件水平下降了 10 倍
smtpd_recipient_restrictions =
permit_mynetworks,
permit_sasl_authenticated,
reject_non_fqdn_hostname,
reject_invalid_hostname,
reject_non_fqdn_sender,
reject_unknown_sender_domain,
reject_non_fqdn_recipient,
reject_unknown_recipient_domain,
check_policy_service inet:127.0.0.1:10023,
reject_rbl_client zen.spamhaus.org,
check_recipient_access mysql:/etc/postfix/mysql-virtual_recipient.cf,
reject_unauth_pipelining,
reject_unauth_destination
Run Code Online (Sandbox Code Playgroud)