更新:ITの友人のアドバイスにより、クラウドメールサーバーを1つ作成するのではなく、すべてのサーバーでpostfixを実行しています。これまでの私の解決策は次のとおりです。
/etc/postfix/main.cf
# output of hostname -f - mail from local users appears to come from here
myhostname = domU-01-02-03-04-05-06.compute-1.internal
# Local delivery - include all 127.0.0.1 aliases from /etc/hosts
mydestination = $myhostname, $mydomain, rest_of_entries_from_hosts
# Needed for address translation to work
myorigin = $mydomain
# Talking to MS Online
# :submission = port 587
relayhost = [smtp.mail.microsoftonline.com]:submission
smtp_sasl_auth_enable = yes
smtp_sasl_password_maps = hash:/etc/postfix/sasl_passwd
smtp_sasl_security_options = # Yes, leave empty
smtp_tls_security_level = encrypt
smtp_generic_maps = hash:/etc/postfix/generic
# Enable if you need debugging, but it does leak credentials to the log
#debug_peer_level = 2
#debug_peer_list = smtp.mail.microsoftonline.com
# Only listen on the local interfaces (not the public)
inet_interfaces = localhost
# I left out a bunch of CentOS defaults. postconf -n is your friend.
# These are included
alias_maps = hash:/etc/aliases
alias_database = hash:/etc/aliases
/etc/postfix/sasl_passwd
# Run postmap /etc/postfix/sasl_passwd after editing
# Also, chown root:root; chmod 600
smtp.mail.microsoftonline.com relayer@hosteddomain.com:YourP@ssw0rd
/etc/postfix/generic
# Run postmap /etc/postfix/generic
# I've seen local mail come from either source
# output of dnsdomainname
@compute-1.internal relayer@hosteddomain.com
# output of hostname -f
@domU-01-02-03-04-05-06.compute-1.internal relayer@hosteddomain.com
/etc/aliases
# Run newaliases after changing
# Lot of stuff here. Mostly, just make sure the graph points to root, such as
mailer-daemon: postmaster
postmaster: root
# And the important part - your email or distribution group
root: awsadmins@hosteddomain.com
/etc/passwd
# Sometimes it helps to expand the name, so email comes from 'root at aws host 5'
# rather than just 'root'
# Was
#root:x:0:0:root:/root:/bin/bash
# Is
root:x:0:0:root on aws host 5:/root:/bin/bash
私が満足していること:
- 多くのメールがルートに送信され、1行で
alias
誰が取得するかが指示されます。
- ローカルユーザーからのすべてのメールはからに変換される
relayer@hosteddomain.com
ため、MS Online SMTPサーバーを通過します。
- postfixにはsendmailよりもはるかに優れたドキュメントがあります。
私が満足していないこと:
- ホストごとにカスタムの変更が必要であり、いくつかの手順があります。支援するためにbashスクリプトを作成しました。
passwd
名前のトリックは、常に仕事をしません。また、メールがから来ているものを、サーバー把握することは困難です。
- 送信されるメールごとに、ログに3つの警告が記録されます。
warning: smtp.mail.microsoftonline.com[65.55.171.153] offered null AUTH mechanism list
(SMTPサーバーはのAUTH
前にSTARTTLS
、しかしAUTH LOGIN
後にヌルリストを送信します)。
certificate verification failed for smtp.mail.microsoftonline.com: num=20:unable to get local issuer certificate
(証明書にはいくつかの設定オプションがありますが、証明書が更新されたときにメール配信が中断するかどうかはわかりません)
certificate verification failed for smtp.mail.microsoftonline.com: num=27:certificate not trusted
(#2と同じ)
メールサーバーに関する強い意見を共有してくれたserverfaultコミュニティに感謝します。