收到:(來自 www-data@localhost)

收到:(來自 www-data@localhost)

Received: (from www-data@localhost)儘管我已127.0.0.1 mydomain.org mydomain server2在 /etc/hosts 中設置,但來自我的伺服器的所有郵件都有。我認為這就是它最終進入垃圾郵件資料夾的原因。

我怎樣才能改變這個Received: (from www-data@localhost)

    $headers = "Sender: " . $fromMail . "\r\n";
    $headers .= "From: " . $fromMail . "\r\n";
    $headers .= "Reply-To: ". $replayFromMail . "\r\n";
    $headers .= "MIME-Version: 1.0\r\n";
    $headers .= "Content-type: text/html; charset=iso-8859-1" . "\r\n";

    mail($urow['email'],$subject,$notify,$headers);

我也嘗試添加 -f[電子郵件受保護]:

mail($urow['email'],$subject,$notify,$headers,"-f [email protected]");

為什麼我認為這與垃圾郵件問題有關?

http://cbl.abuseat.org/

該IP位址被HELO'ing為“localhost.localdomain”,違反了相關標準(特別是:RFC5321)。

CBL 本身並未列出 RFC 違規行為。這特別的 然而,行為與垃圾郵件機器人感染密切相關。換句話說,在成千上萬個以這種方式進行 HELO 的 IP 位址中,除了少數幾個之外,所有 IP 位址都已被感染並噴出垃圾。即使不是感染,它也是一個應該修復的錯誤配置,因為許多垃圾郵件過濾機制都按照相同的規則運行,無論 CBL 是否注意到它,最好都修復它。

相關內容