我的服务器正在向我们的用户发送注册成功邮件。他们中的大多数都到达了,但最近一封发往特定域的电子邮件仍保留在 mailq 中,并出现以下错误
(host smtp.geofs.de[5.45.103.59] said:
450 4.7.1 <Ubuntu-1004-lucid64-minimal.localdomain>:
Helo command rejected: Host not found (in reply to RCPT TO command))
Run Code Online (Sandbox Code Playgroud)
我在这里找到的一些答案建议删除“smtpd_helo_restrictions”中的配置参数“reject_unknown_helo_hostname”,但事实证明我的 main.cf 甚至没有设置“smtpd_helo_restrictions”。某处有默认值吗?我在哪里可以更改它?还有其他可能的问题解决方案吗?
这是我在 /etc/postfix/main.cf 中的当前配置
# Debian specific: Specifying a file name will cause the first
# line of that file to be used as the name. The Debian default
# is /etc/mailname.
#myorigin = /etc/mailname
smtpd_banner = $myhostname ESMTP $mail_name (Ubuntu)
biff = no
# appending .domain is the MUA's job.
append_dot_mydomain = no
# …Run Code Online (Sandbox Code Playgroud)