web-dev-qa-db-ja.com

Postfix / OpenDKIMが署名していないPHP送信されたメール

電子メールのセキュリティ/検証可能性のために、SPF、DKIM、およびDMARCレコードをインストールしました。

コンソールまたはOutlookやMacのメールなどのメールクライアントを介して送信する場合、完全に処理され、3つすべてのパスがあります。

Zend Framework 1.12のSendMail関数を介して送信すると、失敗します(php)。

ある時点で、phpメールにも署名するための構成を見逃しましたか?どのファイルを調べますか?または、別のインストール/アドオンが必要ですか?

Cent OS6でOpenDKIMとPostfixを使用しています

接尾辞-n結果:

alias_database = hash:/etc/aliases
alias_maps = hash:/etc/aliases
command_directory = /usr/sbin
config_directory = /etc/postfix
daemon_directory = /usr/libexec/postfix
data_directory = /var/lib/postfix
debug_peer_level = 2
html_directory = no
inet_interfaces = all
inet_protocols = all
mail_owner = postfix
mailq_path = /usr/bin/mailq.postfix
manpage_directory = /usr/share/man
milter_default_action = accept
milter_protocol = 2
mydestination = $myhostname, localhost.$mydomain, localhost, $mydomain, mail.$mydomain, www.$mydomain, ftp.$mydomain
mydomain = example.com
myhostname = server1.example.com
mynetworks = 127.0.0.0/32
myorigin = $mydomain
newaliases_path = /usr/bin/newaliases.postfix
non_smtpd_milters = 
queue_directory = /var/spool/postfix
readme_directory = /usr/share/doc/postfix-2.6.6/README_FILES
sample_directory = /usr/share/doc/postfix-2.6.6/samples
sendmail_path = /usr/sbin/sendmail.postfix
setgid_group = postdrop
smtpd_milters = inet:localhost:8891
smtpd_recipient_restrictions = permit_mynetworks,  permit_sasl_authenticated, reject_unauth_destination
smtpd_sasl_auth_enable = yes
smtpd_sasl_path = private/auth
smtpd_sasl_type = dovecot
smtpd_tls_auth_only = yes
smtpd_tls_cert_file = /etc/pki/tls/certs/mail.example.com.crt
smtpd_tls_key_file = /etc/pki/tls/private/mail.example.com.key
smtpd_tls_loglevel = 1
smtpd_tls_security_level = may
smtpd_tls_session_cache_timeout = 3600s
tls_random_source = dev:/dev/urandom
unknown_local_recipient_reject_code = 550
virtual_transport = dovecot

これは、Port25メールチェッカーから得た結果です。 zend時にDKIMが欠落していることを除いて、すべて同じです。

非Zend通常ヘッダー:DKIM署名済み

Return-Path: <[email protected]>
Received: from server1.example.com (123.123.123.123 (my server ip)) by verifier.port25.com id hrh7ri20i3gm for <[email protected]>; Thu, 12 Feb 2015 02:01:13 -0500 (envelope-from <[email protected]>)
Authentication-Results: verifier.port25.com; spf=pass [email protected]
Authentication-Results: verifier.port25.com; domainkeys=neutral (message not signed) [email protected]
Authentication-Results: verifier.port25.com; dkim=pass (matches From: [email protected]) header.d=example.com
Authentication-Results: verifier.port25.com; sender-id=pass [email protected]
Received: from [111.111.1.111] (cpe-11-11-111-111.socal.res.rr.com [76.94.200.240])
    by server1.example.com (Postfix) with ESMTPSA id 33F233800A9
    for <[email protected].>; Wed, 11 Feb 2015 23:01:11 -0800 (PST)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=example.com;
    s=default; t=1423724471;
    bh=qMnrIAg7afoneBTtI0hU9OrDkqChYZOD1f4AUvZtdGw=;
    h=From:Subject:Date:To;
    b=g4lXm/vQ54wq/B0fCAf/U3Hj3hi2N2jojst+5lURCfykwhvzjqCm/Z5VGz3rcu
    MoZCfxEkCI4OyQqW2kch93h93h93j3kbuCg3Pehl2WlgoLJy2S8CMR68ygNU52+P88
    IG/vq2YShK6ctLUxRq4O79IYzKcInRiXuWOtuV3A=
From: Darius <[email protected]>
Content-Type: text/plain; charset=us-ascii
Content-Transfer-Encoding: 7bit
Subject: Give me a test result. Thank you.
Message-Id: <[email protected]>
Date: Wed, 11 Feb 2015 23:01:00 -0800
To: [email protected].
Mime-Version: 1.0 (Mac OS X Mail 8.2 \(2070.6\))
X-Mailer: Apple Mail (2.2070.6)

これはヘッダーのZendバージョンの結果です:[〜#〜] not [〜#〜]DKIM署名済み

Return-Path: <[email protected]>
Received: from server1.example.com (xxx.xxx.xxx.xxx (my server ip)) by verifier.port25.com id hr9du620i3gl for <[email protected]>; Tue, 10 Feb 2015 14:28:35 -0500 (envelope-from <[email protected]>)
Authentication-Results: verifier.port25.com; spf=pass [email protected]
Authentication-Results: verifier.port25.com; domainkeys=neutral (message not signed) [email protected]
Authentication-Results: verifier.port25.com; dkim=neutral (message not signed)
Authentication-Results: verifier.port25.com; sender-id=pass [email protected]
Received: by server1.example.com (Postfix, from userid 500)
    id 08E073800AA; Tue, 10 Feb 2015 11:28:25 -0800 (PST)
To: [email protected]
Subject: mydomain Test
X-PHP-Originating-Script: 5004:Sendmail.php
From: mydomain Test <[email protected]>
Date: Tue, 10 Feb 2015 11:28:24 -0800
Content-Type: multipart/alternative;
boundary="=_af78e87ff18206603cb724d073777150"
MIME-Version: 1.0
Message-Id: <[email protected]>
1
Darius

コンソールまたはOutlookやMacのメールなどのメールクライアントを介して送信する場合、完全に処理され、3つすべてのパスがあります。

この構成をmain.cfに配置したため、この動作は予期されていました。

smtpd_milters = inet:localhost:8891

Zend Framework 1.12のSendMail関数を介して送信すると、失敗します(php)。

この構成をmain.cfに配置するため、この動作も予期されていました。

non_smtpd_milters =

説明

デフォルトでは、OpenDKIMは milter を介してpostfixと組み合わされていました。 milterアプリケーションの有効化/無効化は、 smtpd_milters および non_smtpd_milters パラメーターによって制御されました。 smtpdを介して電子メールを送信するアプリケーションの場合、対応パラメーターはsmtpd_miltersであり、sendmailの場合、パラメーターはnon_smtpd_miltersです。

解決

non_smtpd_milters =をに置き換えます

non_smtpd_milters = inet:localhost:8891
4
masegaloeh