web-dev-qa-db-ja.com

アドレスへの接尾辞の拒否

私はubuntuで接尾辞を設定しようとしています。認証なしでローカル接続からの電子メールの送信のみを許可したい。メールを送信しようとすると、次のエラーが発生します。

550 5.1.1 <[email protected]>: Recipient address rejected: gmail.com
554 5.5.1 Error: no valid recipients

このエラーは、宛先アドレスが何に設定されていても発生します。私は以下でテストしてきました:

# telnet localhost 25

Trying ::1...
Trying 127.0.0.1...
Connected to localhost.
Escape character is '^]'.
220 server.domain.com ESMTP Postfix (Ubuntu)

ehlo localhost
mail from: root@localhost
rcpt to: [email protected]
data
Subject: My first mail on Postfix

Hi,
Are you there?
regards,
Admin
.
quit250-server.domain.com
250-PIPELINING
250-SIZE 10240000
250-VRFY
250-ETRN
250-STARTTLS
250-ENHANCEDSTATUSCODES
250-8BITMIME
250 DSN
250 2.1.0 Ok
550 5.1.1 <[email protected]>: Recipient address rejected: gmail.com
554 5.5.1 Error: no valid recipients
221 2.7.0 Error: I can break rules, too. Goodbye.
Connection closed by foreign Host.

私の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

# TLS parameters
smtpd_tls_cert_file=/etc/ssl/certs/ssl-cert-snakeoil.pem
smtpd_tls_key_file=/etc/ssl/private/ssl-cert-snakeoil.key
smtpd_use_tls=yes
smtpd_tls_session_cache_database = btree:${data_directory}/smtpd_scache
smtp_tls_session_cache_database = btree:${data_directory}/smtp_scache

# See /usr/share/doc/postfix/TLS_README.gz in the postfix-doc package for
# information on enabling SSL in the smtp client.

myhostname = server.domain.comt
alias_maps = hash:/etc/aliases
alias_database = hash:/etc/aliases
myorigin = /etc/mailname
mydestination = server.domain.com, localhost
relayhost =
mynetworks = 127.0.0.0/8
mailbox_size_limit = 0
recipient_delimiter = +
inet_interfaces = loopback-only
default_transport = error
relay_transport = error
inet_protocols = ipv4

グーグルは私の問題に関連するものを何も見つけていないので、どのように進めるかわからない。

1
JamieD

通常、これはホスト名/ DNSの問題です。 server.domain.comはサーバーの実際のホスト名ではないと想定していますが、適切なFQDNであることを確認してください。実際の外部ホスト名を持つインターネット向けサーバーでない場合は、.localドメインを使用します(zeroconfとの競合を避けるために、自宅で.internalを使用することがあります)。ホストファイル/ etc/hostname、/ etc/mailname、およびmyhostname、mydestination、myoriginの値を確認してください。

また、上記の設定では、myhostnameにタイプミスがあります。

2
Alex Forbes