Postfix SMTP-Hallo für mehrere IP-/Domänen

Postfix SMTP-Hallo für mehrere IP-/Domänen

Wir Postfixarbeiten mit zwei Domänen und jede Domäne hat eine eigene IP, ist also isoliert.

Aber Spamhuausmeine IP wurde blockiert und es wird gesagt, dass Sie „localhost.localdomain“ senden.HELO

Ich verwende bereits smtp_helo_namedie SMTP-Option

Wie kann ich meinem Postfix sagen, dass es beim Senden von E-Mails bestimmte Domänen sendet HELO? Ich habe folgende Konfiguration inmaster.conf

#smtp      inet  n       -       n       -       -       smtpd
127.0.0.1:smtp inet  n     -       n       -       -       smtpd
      -o syslog_name=postfix-localhost
      -o smtp_helo_name=localhost
      -o smtp_bind_address=127.0.0.1
      -o myhostname=localhost

65.xxx.xxx.100:smtp inet  n     -       n       -       -       smtpd
      -o syslog_name=postfix-mail.abc.com
      -o smtp_helo_name=mail.abc.com
      -o smtp_bind_address=65.xxx.xxx.100
      -o myhostname=mail.abc.com

65.xxx.xxx.200:smtp inet  n     -       n       -       -       smtpd
      -o syslog_name=postfix-mail.xyz.com
      -o smtp_helo_name=mail.zyx.com
      -o smtp_bind_address=65.xxx.xxx.200
      -o myhostname=mail.xyz.com

abc-out  unix -       -       n       -       -       smtp
   -o smtp_bind_address=65.xxx.xxx.100
   -o smtp_helo_name=mail.abc.com
   -o syslog_name=postfix-mail.abc.com

xyz-out  unix -       -       n       -       -       smtp
   -o smtp_bind_address=65.xxx.xxx.200
   -o smtp_helo_name=mail.xyz.com
   -o syslog_name=postfix-mail.xyz.com

verwandte Informationen