今天早上,为了更正安全证书中名称不匹配的问题,我按照如何修复邮件服务器 SSL?,但是现在,当尝试从客户端(在本例中客户端是 Windows Mail)发送电子邮件时,我收到以下错误。
被拒绝的电子邮件地址是“[email protected]”。主题'这是一个测试。',帐户:'mail.domain.com',服务器:'mail.domain.com',协议:SMTP,服务器响应:'554 5.7.1:中继访问被拒绝',端口:25,安全(SSL):否,服务器错误:554,错误号:0x800CCC79
编辑:我仍然可以从此帐户检索电子邮件,并将电子邮件发送到同一域中的其他帐户。我只是无法向我们域之外的收件人发送电子邮件。
我尝试完全禁用 TLS 但没有骰子,我仍然得到同样的错误。
当我检查文件mail.log
时,我看到以下内容。
Jul 18 08:24:41 company imapd: LOGIN, [email protected], ip=[::ffff:111.111.11.11], protocol=IMAP
Jul 18 08:24:42 company imapd: DISCONNECTED, [email protected], ip=[::ffff:111.111.11.11], headers=0, body=0, rcvd=83, sent=409, time=1
Jul 18 08:25:19 company postfix/smtpd[29282]: connect from company.university.edu[111.111.11.11]
Jul 18 08:25:19 company postfix/smtpd[29282]: NOQUEUE: reject: RCPT from company.university.edu[111.111.11.11]: 554 5.7.1 <[email protected]>: Relay access denied; from=<[email protected]> to=<[email protected]> proto=ESMTP helo=<UserPC>
Jul 18 08:25:19 company postfix/smtpd[29282]: disconnect from company.university.edu[111.111.11.11]
Jul 18 08:25:22 company imapd: DISCONNECTED, [email protected], ip=[::ffff:111.111.11.11], headers=13, body=142579, rcvd=3289, sent=215892, time=79
文件main.cf
如下所示:
#
# Postfix MTA Manager Main Configuration File;
#
# Please do NOT edit this file manually;
#
#
# Postfix directory settings; These are critical for normal Postfix MTA functionallity;
#
command_directory = /usr/sbin
daemon_directory = /usr/lib/postfix
program_directory = /usr/lib/postfix
#
# Some common configuration parameters;
#
inet_interfaces = all
mynetworks = 127.0.0.0/8
mynetworks_style = host
myhostname = mail.domain.com
mydomain = domain.com
myorigin = $mydomain
smtpd_banner = $myhostname ESMTP 2.4.7.1 (Debian/GNU)
setgid_group = postdrop
#
# Receiving messages parameters;
#
mydestination = localhost, company
append_dot_mydomain = no
append_at_myorigin = yes
transport_maps = mysql:/etc/postfix/transport.cf
#
# Delivering local messages parameters;
#
mail_spool_directory = /var/spool/mail
mailbox_size_limit = 0
mailbox_command = procmail -a "$EXTENSION"
biff = no
alias_database = hash:/etc/aliases
local_recipient_maps =
#
# Delivering virtual messages parameters;
#
virtual_mailbox_maps=mysql:/etc/postfix/mysql_virt.cf
virtual_uid_maps=mysql:/etc/postfix/uids.cf
virtual_gid_maps=mysql:/etc/postfix/gids.cf
virtual_mailbox_base=/usr/local/virtual
virtual_maps=mysql:/etc/postfix/virtual.cf
virtual_mailbox_domains=mysql:/etc/postfix/virtual_domains.cf
#
# SASL paramters;
#
smtp_use_tls = yes
smtpd_use_tls = yes
smtpd_tls_auth_only = yes
smtpd_tls_loglevel = 1
smtpd_tls_received_header = yes
smtpd_tls_session_cache_timeout = 3600s
smtp_tls_CAfile = /etc/postfix/ssl/smptd.pem
smtp_tls_cert_file = /etc/postfix/ssl/smptd.crt
smtp_tls_key_file = /etc/postfix/ssl/smptd.key
smtpd_tls_CAfile = /etc/postfix/ssl/smptd.pem
smtpd_tls_cert_file = /etc/postfix/ssl/smptd.crt
smtpd_tls_key_file = /etc/postfix/ssl/smptd.key
smtpd_sasl_auth_enable = yes
smtpd_sasl_security_options = noanonymous
smtpd_sasl_local_domain =
broken_sasl_auth_clients = yes
smtpd_sender_restrictions =
permit_sasl_authenticated
permit_mynetworks
smtpd_recipient_restrictions =
permit_sasl_authenticated
check_recipient_access hash:/etc/postfix/filtered_domains
permit_mynetworks
reject_unauth_destination
作为旁注,我的雇主希望能够从我们的本地网络内部和外部的客户(Thunderbird 和 Outlook)发送电子邮件。
TLS 只是在 smtp 会话上启用加密,并不直接影响 Postfix 是否被允许中继消息。
出现中继拒绝消息是因为 smtpd_recipient_restrictions 规则不匹配。必须满足其中一个条件才能允许消息通过:
解释这些规则:
允许通过 SASL 进行身份验证的发件人。这对于对通常被阻止的网络之外的用户进行身份验证是必要的。
这将导致 postfix 根据收件人地址在 /etc/postfix/filtered_domains 中查找规则。(从文件名上的文件名来看,可能只是屏蔽了特定的域……查看gmail.com是否列在其中?)
这将允许按 IP 地址匹配 $mynetworks 中指定的 IP 范围的主机。在您发布的 main.cf 中,$mynetworks 设置为 127.0.0.1,因此它只会中继服务器本身生成的电子邮件。
根据该配置,您的邮件客户端将需要使用 SMTP 身份验证才能被允许中继消息。我不确定 SASL 使用的是什么数据库。这是在 /usr/lib/sasl2/smtpd.conf 中指定的,大概它也使用与您的虚拟邮箱相同的数据库,因此您应该能够在您的邮件客户端中启用 SMTP 身份验证并进行所有设置。
您已禁用 TLS,因此您现在需要通过将本地网络添加到
mynetworks
. 例如,这将修复仅从您的本地网络发送的问题。要从本地网络外部发送电子邮件,您需要启用 TLS 身份验证。
我认为您想念 mydestination 中的 domain.com ,因为 default
relay_domains=$mydestination
,所以您可以附加配置行:或者:
service postfix restart
每次编辑 postfix conf 文件时不要忘记重新启动 postfix 服务器 ( )。我在 Outlook 中遇到了同样的问题(使用 dovecote 和 postfix 后端),我花了两天时间寻找解决方案并调整我的配置文件。我需要做的就是在 Outlook 的邮件设置中的“发送”选项卡中检查“服务器需要身份验证”,我的邮件现在已发送到 gmail。请参阅有关如何在此处找到设置的详细说明http://support.bluetie.com/node/440。
这个问题困扰了我一段时间。我试图从 server1.domain.com 连接到 server2.domain.com。
这是我解决这个问题的方法 -
您还需要确保已正确设置 /etc/hosts 和 /etc/hostname 并确保在网络更改后运行以下命令 -
以及后缀配置更改后的以下内容
网上很多关于这个问题的答案都提到了添加
permit_mynetworks
到smtpd_recipient_restrictions
. 但这些天似乎还不够。permit_mynetworks
为了让它工作,我也必须添加smtpd_relay_restrictions
(Postfix 3.4.14)。对我来说:无论事实已经存在
localhost
,我都必须添加。所以,现在看起来:mynetworks
127.0.0.0/8
mynetworks = 1.1.1.1/32, 127.0.0.0/8, localhost