Linux
Postfix以奇怪的方式發送和接收。
我有一個電子郵件伺服器,在 CentOS 6.5、32 位系統上執行,Postfix 和 Dovecot 沿著它們的所有依賴項執行。假設我的域是 www.anw.com
我已
A
按此順序為我的域創建記錄www.anw.com 37.143.374.15 # points to my web server anw.com 37.143.374.15 # points to my web server mail.anw.com 227.80.74.199 # points to my mail server
我還創建了一個
MX
伺服器mail.anw.com 227.80.74.199
現在,使用 postfix 我創建了兩個帳戶,即
joe@anw.com
使用jane@anw.com
squirrelmail 我可以毫無問題地在這些帳戶之間發送和接收。我還可以向 Yahoo 和 Google 等任何電子郵件帳戶發送電子郵件,但我無法接收從 Google 或 Yahoo 發送的電子郵件。
在您的 /etc/postfix/main.cf 中查看以下設置和相關註釋:
myhostname(您的郵件伺服器的主機名) mydomain = dailytech24.com(您的域名) myorigin = $mydomain inet_interfaces = all(如果您只有 IPv4,則需要更改) mydestination mynetworks
您的 Postfix 僅在 Loopback 介面 (
127.0.0.1
) 上偵聽。編輯/etc/postfx/main.cf
文件並inet_interfaces
使用您的公共 IP 地址更新參數。inet_interfaces = MY.IP.AD.DR,127.0.0.1
然後您必須重新啟動 Postfix 服務。
# service postfix restart