Amazon SES
跳转到导航
跳转到搜索
Amazon SES是AWS的郵件服務。
讓Postfix使用SES
安裝
官方文件有提到要先裝這些套件[1],但大家常常都會忘記,所以有可能會遇到套件沒有裝:
sudo apt install -y libsasl2-modules
參考官方文件提供的/etc/postfix/main.cf
設定[1],這邊假定是使用us-east-1
的SES服務:
relayhost = [email-smtp.us-east-1.amazonaws.com]:587
smtp_sasl_auth_enable = yes
smtp_sasl_password_maps = hash:/etc/postfix/sasl_passwd
smtp_sasl_security_options = noanonymous
smtp_tls_note_starttls_offer = yes
smtp_tls_security_level = encrypt
smtp_use_tls = yes
以及/etc/postfix/sasl_passwd
:
[email-smtp.us-east-1.amazonaws.com]:587 AKxxxxxxxxxxxxxxxxxx:xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
並且產生對應的檔案:
sudo postmap hash:/etc/postfix/sasl_passwd
參考文獻
- ↑ 1.0 1.1 Integrating Amazon SES with Postfix. [2018-12-16].