Email

Postfix 是在本地發送和接收郵件,而不是到外部郵箱

  • August 22, 2014

我有一個執行我的 Apache 網站和 Postfix 的 CentOS 機器,但是每當我嘗試將 PHP 的 mail() 函式發送到我的 @aevidi 電子郵件時,它都會發送到我在 ~/mail 中的本地郵箱,但在 Zoho 的 webmail 中不可見。當我從我的 Gmail 帳戶向我的 @aevidi 電子郵件發送電子郵件時,我在 Zoho 中看到它,但在我的本地郵箱中看不到(預期結果)。這是我的設置:

  • Zoho 作為我的自定義域的電子郵件主機
  • 帶有我的站點和郵件伺服器的 CentOS 盒子(後綴)

我按照本教程進行了 Zoho/SES/Postfix 高級設置(老實說,我不確定 SES 的作用)

我按照本教程設置了 Postfix(和 Dovecot 在我意識到它做了什麼之前,但從那以後就刪除了它)。


/var/log/maillog after executing mail()

Aug  3 20:05:37 aevidi postfix/pickup[7702]: 31ADD40BDD: uid=48 from=<michael@chtoen.com>
Aug  3 20:05:37 aevidi postfix/cleanup[7707]: 31ADD40BDD: message-id=<20140804000537.31ADD40BDD@aevidi>
Aug  3 20:05:37 aevidi postfix/qmgr[7703]: 31ADD40BDD: from=<xxx@aevidi.com>, size=344, nrcpt=1 (queue active)
Aug  3 20:05:37 aevidi postfix/local[7709]: 31ADD40BDD: to=<xxx@aevidi.com>, relay=local, delay=0.03, delays=0.02/0.0
1/0/0, dsn=2.0.0, status=sent (delivered to maildir)
Aug  3 20:05:37 aevidi postfix/qmgr[7703]: 31ADD40BDD: removed

/etc/postfix/main.cf

myhostname = aevidi #This is my FQDN when I type 'hostname -f'
mydomain = aevidi.com
myorigin = $mydomain
home_mailbox = mail/
mynetworks = 127.0.0.0/8
inet_interfaces = all
mydestination = $myhostname, localhost.$mydomain, localhost, $mydomain
smtpd_sasl_auth_enable = yes
smtpd_sasl_type = cyrus
smtpd_sasl_security_options = noanonymous
broken_sasl_auth_clients = yes
smtpd_sasl_authenticated_header = yes
smtpd_recipient_restrictions = permit_sasl_authenticated,permit_mynetworks,reject_unauth_destination
smtpd_tls_auth_only = no
smtp_use_tls = yes
smtpd_use_tls = yes
smtp_tls_note_starttls_offer = yes
smtpd_tls_key_file = /etc/postfix/ssl/smtpd.key
smtpd_tls_cert_file = /etc/postfix/ssl/smtpd.crt
smtpd_tls_CAfile = /etc/postfix/ssl/cacert.pem
smtpd_tls_received_header = yes
smtpd_tls_session_cache_timeout = 3600s
tls_random_source = dev:/dev/urandom

relayhost = email-smtp.us-east-1.amazonaws.com:25
smtp_sasl_password_maps = hash:/etc/postfix/sasl_passwd
smtp_tls_security_level = encrypt
smtp_tls_CAfile = /etc/ssl/certs/ca-bundle.crt

DNS configuration

Cloudflare DNS


任何幫助表示讚賞!

如果您想通過查找postfix來傳遞郵件(在您的情況下是到Zoho郵件伺服器),那麼您應該從.aevidi.com``MX``i.e``$domain``aevidi.com``mydestination

引用自:https://unix.stackexchange.com/questions/148214