修复exim发件问题

关闭ipv6地址

nano /etc/sysctl.conf

net.ipv6.conf.all.disable_ipv6 = 1
net.ipv6.conf.default.disable_ipv6 = 1
net.ipv6.conf.lo.disable_ipv6 = 1

sysctl -p

清理发件队列

find /var/spool/exim/input/ -type f -name '*' -print0 | xargs -0 rm &

nano /etc/exim/exim.conf
primary_hostname = 162.220.14.10.lg.ylx.me
domainlist local_domains = @ : localhost : localhost.localdomain : 162.220.14.10.lg.ylx.me
domainlist relay_to_domains = *
hostlist   relay_from_hosts = 162.220.14.10 

重启

service exim restart

从黑名单中去除

http://cbl.abuseat.org/lookup.cgi
http://www.spamhaus.org
分别查询

参考http://www.voidcn.com/blog/hhuahuanghao/article/p-1218020.html

https://www.spamhaus.org/lookup/  邮箱填域名邮箱

发表回复

您的电子邮箱地址不会被公开。 必填项已用 * 标注

此站点使用Akismet来减少垃圾评论。了解我们如何处理您的评论数据