Amazon Lightsailにて、
サーバー構築で勉強しています。
不具合は、
Postfixで587ポートから、
外部ドメイン(Google)へのメール送信ができません。
できることは、
LightsailにブラウザからSSH接続して、
「自分自身への送信と受信」と「外部ドメイン(Google)からの受信」の2点です。
また、Tera Term接続にて「telnet 587」で正常に応答があります。
Lightsailのファイアウォール設定で、
25、587ポートは開放しています。
原因が分からずモヤモヤしています。
アドバイスを頂けると幸いです。
どうぞよろしくお願い致します。
220 mail.exsample.com ESMTP Postfix (Ubuntu)
May 12 20:00:19 ip-172-26-6-107 postfix/smtp[10800]: 05EBC138C50: to=<hoge@sexsample.com>, relay=none, delay=714, delays=564/0.01/150/0, dsn=4.4 .1, status=deferred (connect to alt2.aspmx.l.google.com[2607:f8b0:4003:c15::1a]:25: Connection timed out) May 12 20:00:26 ip-172-26-6-107 postfix/smtp[10807]: connect to alt2.aspmx.l.google.com[2607:f8b0:4003:c15::1a]:25: Connection timed out May 12 20:00:56 ip-172-26-6-107 postfix/smtp[10807]: connect to alt1.aspmx.l.google.com[2607:f8b0:4023:1004::1a]:25: Connection timed out
# netstat -ant | grep LISTEN tcp 0 0 0.0.0.0:587 0.0.0.0:* LISTEN tcp 0 0 0.0.0.0:25 0.0.0.0:* LISTEN
# cat /etc/postfix/main.cf | grep -v ^# | grep -v ^$ smtpd_banner = $myhostname ESMTP $mail_name (Ubuntu) biff = no append_dot_mydomain = no readme_directory = no compatibility_level = 2 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 smtpd_relay_restrictions = permit_mynetworks permit_sasl_authenticated defer_unauth_destination myhostname = mail.exsample.com alias_maps = hash:/etc/aliases alias_database = hash:/etc/aliases myorigin = /etc/mailname mydestination = $myhostname, exsample.com, ip-172-26-6-107.ap-northeast-1.compute.internal, localhost.ap-northeast-1.compute.internal, localhost relayhost = mynetworks = 127.0.0.0/8 [::ffff:127.0.0.0]/104 [::1]/128 mailbox_size_limit = 0 recipient_delimiter = + inet_interfaces = all inet_protocols = all
# vi /etc/postfix/master.cf smtp inet n-n--smtpd submission inet n-n--smtpd -o smtpd_sasl_auth_enable=yes -o smtpd_relay_restrictions=permit_sasl_authenticated,reject
回答1件
あなたの回答
tips
プレビュー