本日詰まったのでメモ
centos 7 minimam とMac El Captain でpostfixを介してGmailのSMTPサーバー経由でメールを送る
(AWSのセキュリティーグループでアウトバウンドのport=587を開けておくこと)
まずはpostfix がインストールされていない場合centos7 minimamにインストール
yum install postfix # macでは不要
yum install cyrus-sasl-plain # macでは不要
iptables -A INPUT -m state --state NEW -m tcp -p tcp --dport 25 -j ACCEPT # macでは不要
一応確認コマンド
sendmailとpostfixが共存している場合、以下のコマンドでpostfixを有効にしておく
alternatives --config mta # macでは不要
postfixではsasl認証を使う、centos7minimamではyumであらかじめインストールしておらずつまった
sudo vi /etc/postfix/sasl_passwd
追記内容
chmod 600 /etc/postfix/sasl_passwd
postfixに読み込ませてDB化するコマンド
sudo postmap /etc/postfix/sasl_passwd
postfix設定ファイルの本丸へ
sudo vi /etc/postfix/main.cf
以下を追記
# Minimum Postfix-specific configurations.
mydomain_fallback = localhost
relayhost=smtp.gmail.com:587# Enable SASL authentication in the Postfix SMTP client.
smtp_sasl_auth_enable=yes
smtp_sasl_password_maps=hash:/etc/postfix/sasl_passwd
smtp_sasl_tls_security_options = noanonymous
smtp_sasl_mechanism_filter = plain# Enable Transport Layer Security (TLS), i.e. SSL.
smtp_use_tls=yes
smtp_tls_security_level=encrypt
smtp_tls_CApath = /etc/pki/tls/certs/ca-bundle.crt
tls_random_source=dev:/dev/urandom
postfix を起動します。
sudo postfix start
#終了コマンドは以下
#sudo postfix stop
#リロードコマンドは以下
#sudo postfix reload
メール送信確認
date | mail -s "test" 送り先メールアドレス
appendix
TSL接続確認
メール送信に関するログはcentでは以下
tail -f /var/log/maillog