Postfix
後綴回復發往外部電子郵件的電子郵件,同時保持正確的發件人地址
我在 ubuntu 14.04 上為域“postfixserver.com”設置並執行了一個帶有 Postfix / Dovecot 的郵件伺服器。
第二個域“googleapps.com”正在Google應用程序上執行。
user@googleapps.com 電子郵件從 google 應用程序轉發到 user@postfixserver.com。
當 user@postfixserver.com 回復發給 user@googleapps.com 的電子郵件時,我希望 postfix 將電子郵件從 user@googleapps.com 發送出去。
有什麼方法可以實現這一點而不必依賴電子郵件客戶端。因此,例如在 iPhone 上,我只想設置一個帳戶 user@postfixserver.com,但能夠回復發送到 user@googleapps.com 的電子郵件,並保持正確的發件人地址。
TLDR:不,你不能。這不是 MTA 的工作。
假設外部地址向 gapps 域發送電子郵件。完整的電子郵件如下所示
From: alice@external.example.com To: user@GAPPS.example.net Subject: Hello World This is 'Hello world' version of email
因為 user@GAPPS.example.net 將其轉發到 postfix.example.org 然後 user@postfix.example.org 獲取並閱讀電子郵件。
現在 user@postfix.example.org 想要回复它。iPhone 撰寫電子郵件並發送到 postfix。這是後綴將從 user@postfix.example.org 看到的範例回复
From: user@postfix.example.org To: alice@external.example.com Subject: Re: Hello World On 7 Mar 2014, at 21.21, Someone <alice@external.example.com> wrote: > This is 'Hello world' version of email Okay hello world. Your email was received :)
您可以看到,在第二封電子郵件中,沒有任何跡象表明 alice@external.example.com 已向 GAPPS.example.net 發送了電子郵件。