web-dev-qa-db-ja.com

Heloコマンドが拒否されました:ホストが見つかりません-reject_unknown_helo_hostnameを構成していませんが

私のサーバーは登録-成功-メールをユーザーに送信しています。それらのほとんどは到着しますが、最近、特定のドメインへの1つの電子メールが次のエラーで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/

問題の原因はサーバーまたは受信側サーバーですか?そして、どうすればそれを修正できますか?

あなたのアイデアを聞くのが大好きです、ありがとう!

2
patrics

(ホストsmtp.geofs.de [5.45.103.59]は言った:450 4.7.1:

制限は受信サーバーsmtp.geofs.deに設定されています。送信側(= your)サーバーが解決不可能なHELO "Ubuntu-1004-lucid64-minimal.localdomain"を使用しているため、メッセージは拒否されます。

システム全体でホスト名を修正するか、ポストフィックス構成で解決可能なヘリを設定します( myhostname

8
Gryphius