我刚刚被一个垃圾邮件发送者攻击了,他通过我的邮件服务器从不同网络块中的多个 IP 地址发送垃圾邮件,所有垃圾邮件的反向查找都以 结尾googleusercontent.com
。(我还没搞清楚怎么做;我的服务器一直对一些 IP 地址回复“拒绝”,而让其他 IP 地址通过。)我想阻止域中的所有 IP 地址。我的 中有这个main.cf
:
smtpd_relay_restrictions = permit_mynetworks
check_recipient_access hash:/etc/postfix/recipient
permit_sasl_authenticated
reject_unauth_destination
check_client_access hash:/etc/postfix/rbl_override
check_sender_access pcre:/etc/postfix/domains
reject_rbl_client <several lines like this for blocklists>
rbl_override
有多个 IP 地址(有些只有三个数字,即网络块),后面跟着OK
或。输入REJECT
有意义吗?有没有办法阻止所有反向 DNS 位于此域中的 IP 地址?googleusercontent.com
rbl_override
(reject_unauth_destination
垃圾邮件正在通过 RBL 之后。)