스팸 방지 문제

스팸 방지 문제

저는 지금 구매 확인 이메일을 보내는 프로젝트를 진행 중입니다. 일부 이메일이 여전히 스팸으로 수신되고 있습니다. 저는 비즈니스용 Google 앱에 도메인을 등록했으며 PHPMailer 코드 기반(sugarCRM, drupal 등에 사용됨)을 사용하여 smtps를 사용하여 Google 서버를 통해 이메일을 보내고 있습니다. 메시지 자체의 본문 내용에 책임이 있을 수 있다는 것을 알고 있습니다..

그러나 내가 이해하기 어려운 것은 헤더입니다. 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 <[email protected]>; 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: <[email protected]>
Received-Spf: neutral (google.com: 199.103.57.26 is neither permitted nor denied by best guess record for domain of [email protected]) 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 [email protected]) [email protected]
X-Php-Originating-Script: 0:class.phpmailer.php
Message-Id: <[email protected]>
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

답변1

HELO/EHLO이므로 메일 서버 프로그램이 보내는 내용인 것 같습니다.

메일 시스템에서 이 설정 [email protected]과 SMTP 설정/통신 중에 서버가 자신을 식별하는 방법에 대한 설정을 확인하세요.

참조를 위해 다음 2개의 링크를 확인하세요.

sendmail로 나가는 HELO를 지정하는 방법은 무엇입니까?

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

관련 정보