Contents
- UNIX
- Windows
- サーバ
- プログラミング言語
- データベース
- プロトコル
- サービス
- オープンソース
- 規格・技術
- アプリケーション
- PC
- DEVICE
- その他(未分類)
お問合せ: メールフォーム
今回、「Outbound Port 25 Blocking」の制約で、ローカルからメール配送できない事態が発生しました。
回避策として、Postfix のリレー設定を行い、gmail 経由でメール配送をした時のメモになります。
% sudo vi /etc/postfix/main.cf
relayhost = [smtp.gmail.com]:587 # sasl setting smtp_sasl_auth_enable = yes smtp_sasl_password_maps = hash:/etc/postfix/sasl_passwd smtp_sasl_security_options = noanonymous smtp_sasl_tls_security_options = noanonymous smtp_sasl_mechanism_filter = plain # tls setting smtp_use_tls = yes
% sudo vi /etc/postfix/sasl_passwd
[smtp.gmail.com]:587 <LOCALPART>@gmail.com:<PASSWORD>
% sudo chmod 640 /etc/postfix/sasl_passwd
% sudo postmap /etc/postfix/sasl_passwd
% sudo postfix stop % sudo postfix start