Email-Server

垃圾郵件迴避問題

  • March 3, 2016

我現在正在處理一個發送電子郵件作為購買確認的項目。一些電子郵件仍被視為垃圾郵件。我已經為 Google Apps for Business 註冊了域,並且正在使用 PHPMailer 程式碼庫(用於 SugarCRM、drupal 等)通過 google 伺服器使用 smtps 發送電子郵件。我意識到消息本身的正文內容可能是負責任的..

但是,我很難理解的是標題。域名ourgreatmovie.com 出現在標題的許多部分。這最初是我們使用的域,直到我們更改為turnofthiscentury.com. 我認為這可能是由於我為舊域設置的反向 DNS 指針 - 但是我已經讓我的託管服務提供商將其更改為新域並驗證了更改。

此外,我已經檢查過/etc/hosts file;什麼都沒有 - /etc/sysconfig/network(CentOS 6) 一樣;不知道這個域名來自哪裡;在目的地收到的標頭樣本副本如下:提前致謝!

Received: by 10.205.75.199 with SMTP id zb7csp33558bkb; Thu, 29 Aug 2013 10:03:53 -0700 (PDT)
Received: from ourgreatmovie.com (turnofthiscentury.com. [199.103.57.26]) by mx.google.com with ESMTPS id mc6si19213371icc.79.1969.12.31.16.00.00 (version=TLSv1 cipher=RC4-SHA bits=128/128); Thu, 29 Aug 2013 10:03:52 -0700 (PDT)
Received: from ourgreatmovie.com (localhost.localdomain [127.0.0.1]) by ourgreatmovie.com (8.13.8/8.13.8) with ESMTP id r7TCAYLw020926 for <reeceg@tbadigital.com>; Thu, 29 Aug 2013 08:10:34 -0400
Received: (from apache@localhost) by ourgreatmovie.com (8.13.8/8.13.8/Submit) id r7TCAYgg020925; Thu, 29 Aug 2013 08:10:34 -0400
X-Received: by 10.43.53.144 with SMTP id vq16mr1714222icb.41.1377795832986; Thu, 29 Aug 2013 10:03:52 -0700 (PDT)
Return-Path: <apache@ourgreatmovie.com>
Received-Spf: neutral (google.com: 199.103.57.26 is neither permitted nor denied by best guess record for domain of apache@ourgreatmovie.com) client-ip=199.103.57.26;
Authentication-Results: mx.google.com; spf=neutral (google.com: 199.103.57.26 is neither permitted nor denied by best guess record for domain of apache@ourgreatmovie.com) smtp.mail=apache@ourgreatmovie.com
X-Php-Originating-Script: 0:class.phpmailer.php
Message-Id: <462bedcaa876c16c2cd449a0aef4c23a@turnofthiscentury.com>
X-Priority: 3
X-Mailer: PHPMailer 5.2.6 (https://github.com/PHPMailer/PHPMailer/)
Mime-Version: 1.0
Content-Type: text/plain; charset=iso-8859-1
Content-Transfer-Encoding: 8bit

看起來這是郵件伺服器程序發送的內容,因為它是 HELO/EHLO。

檢查您的郵件系統中的此設置:smtp.mail=apache@ourgreatmovie.com以及在 SMTP 設置/通信期間伺服器如何辨識自己的任何設置。

檢查這兩個連結以供參考:

如何使用 sendmail 指定傳出 HELO?

https://stackoverflow.com/questions/5672651/change-helo-host-name-when-sending-email

引用自:https://serverfault.com/questions/535226