Postfixは動作しているにもかかわらず、ポート587では接続できないことがあります。/etc/postfix/master.cf 内の
よくある原因は、/etc/postfix/master.cf ファイル内の
にて、SMTP over SSL/TLSを有効にしていないにも関わらず
/etc/postfix/master.cf ファイルを
submission inet n - n - - smtpd
# -o smtpd_enforce_tls=yes
-o smtpd_sasl_auth_enable=yes
-o smtpd_client_restrictions=permit_sasl_authenticated,reject
もしくは
submission inet n - n - - smtpd
-o smtpd_enforce_tls=no
-o smtpd_sasl_auth_enable=yes
-o smtpd_client_restrictions=permit_sasl_authenticated,reject
あるいは
submission inet n - n - - smtpd
-o smtpd_sasl_auth_enable=yes
-o smtpd_client_restrictions=permit_sasl_authenticated,reject
と修正して、