Helo 命令被拒绝:未找到主机 - 即使我没有配置reject_unknown_helo_hostname

Helo 命令被拒绝:未找到主机 - 即使我没有配置reject_unknown_helo_hostname

我的服务器正在向我们的用户发送注册成功邮件。大多数邮件都已到达,但最近有一封发送至特定域的电子邮件仍留在 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))

我在这里找到的一些答案建议删除“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

# Uncomment the next line to generate "delayed mail" warnings
#delay_warning_time = 4h

readme_directory = no
myorigin = /etc/mailname
mydestination = xxmydomainxx.com, Ubuntu-1004-lucid-64-minimal, localhost.localdomain, localhost, xxmydomainxx.de
relayhost = 
mynetworks = 127.0.0.0/8 xxx.xxx.136.32/27
mailbox_size_limit = 0
recipient_delimiter = +
inet_interfaces = all
inet_protocols = all
home_mailbox = Maildir/

问题是由我的服务器还是接收方服务器引起的?我该如何修复它?

很高兴听到您的想法,谢谢!

答案1

(主机 smtp.geofs.de[5.45.103.59] 说:450 4.7.1:

接收服务器设置了限制smtp.geofs.de。该邮件被拒绝,因为发送服务器(=您的服务器)使用不可解析的 HELO“Ubuntu-1004-lucid64-minimal.localdomain”。

要么在系统范围内修复你的主机名,要么在 postfix 配置中设置可解析的 helo(我的主机名

相关内容