我需要为我的虚拟域设置EHLO名称。 后缀发送邮件与EHLO作为JV.localdomain其中JV是我的主机名我的服务器IP是62.210.xx.xx
我承载2域domain1.com和domain2.com
当我通过spamhose得到黑名单
如何设置虚拟域的EHLO名称,如果我从domain1.com发送邮件Postfix应该EHLO domain1.com和如果我发送邮件从domain2.com Postfix应同样EHLO domain2.com
Dec 14 12:08:54 JV postfix/smtp[31513]: 0A08AB603DD: to=<[email protected]>, relay=mta7.am0.yahoodns.net[66.196.118.36]:25, delay=0.58, delays=0.14/0.05/0.29/0.1, dsn=5.7.1, status=bounced (host mta7.am0.yahoodns.net[66.196.118.36] said: 553 5.7.1 [BL21] Connections will not be accepted from 62.210.xx.xx, because the ip is in Spamhaus's list; see https://help.yahoo.com/kb/postmaster/SLN5070.html (in reply to MAIL FROM command)) Dec 14 13:32:52 JV postfix/smtp[3732]: 50C1AB603DD: to=<[email protected]>, relay=gmail-smtp-in.l.google.com[64.233.167.27]:25, delay=0.37, delays=0.16/0.02/0.04/0.15, dsn=2.0.0, status=sent (250 2.0.0 OK 1450096372 14si25083369wmq.78 - gsmtp)
我检查与spamhose,他们提到62.210.xx.xx列在XBL,因为它出现在:CBL
CBL
IP Address 62.210.xx.xx is listed in the CBL. It shows signs of being infected with a spam sending trojan, malicious link or some other form of botnet. It was last detected at 2015-12-15 12:00 GMT (+/- 30 minutes), approximately 2 hours, 30 minutes ago.
我的Linux中有ClamAV杀毒软件,没有显示任何恶意软件。
This IP is infected (or NATting for a computer that is infected) with a spam-sending infection. In other words, it's participating in a botnet. If you simply remove the listing without ensuring that the infection is removed (or the NAT secured), it will probably relist again.
我试图在这个官方文件之后这样做
/etc/postfix/master.cf:
mysmtp ... smtp -o smtp_helo_name=domain1.com mysmtp ... smtp -o smtp_helo_name=domain1.com
/etc/postfix/main.cf文件:
smtp_helo_name = 62.210.xx.xx
但它没有奏效。 请参阅并build议任何可能的方法来做到这一点。
谢谢