远程服务器上的Postfix SMTP响应554 rcpt(收件人)拒绝中继访问。在'localhost'smtp服务器上运行正常

时间:2015-03-24 22:43:00

标签: smtp postfix-mta

我尝试通过运行postfix作为smtp服务器的远程虚拟机发送电子邮件。

但是,我在发送554 - Relay access denied cmd时收到rcpt错误。

(554, b'5.7.1 <xxxxx@xyz.org>: Relay access denied')

我知道它拒绝我试图设置为收件人的电子邮件地址,但我不明白为什么。


套接字连接本身很好,我可以在尝试mail之前发送rcpt cmd。


环境详情:

主机:

  

Windows 7机器/语言:Python 3。

访客虚拟机:

  

Docker容器(Ubuntu)VM运行postfixssh - 使用dhcp分配的IP地址10.35.50.166


这是运行的python代码:

(在主机上):

import smtplib
server = smtplib.SMTP(host='10.35.50.166', port=8025)

server.mail('xxxxx@xyz.org')
(250, b'2.1.0 Ok')

server.rcpt('xxxxx@xyz.org')
(554, b'5.7.1 <xxxxx@xyz.org>: Relay access denied')

从来宾计算机运行时,错误不会发生

import smtplib
server = smtplib.SMTP(host='localhost', port=8025)

server.mail('xxxxx@xyz.org')
(250, b'2.1.0 Ok')

server.rcpt('xxxxx@xyz.org')
(250, b'2.1.5 Ok')

3 个答案:

答案 0 :(得分:4)

Ubuntu上的Postfix'默认配置仅允许在本地接口(即localhost)上进行中继访问。在其他接口(VM网络)上连接时,需要进行SMTP身份验证。

因此,您可以为SMTP呼叫添加身份验证,也可以将主机IP添加到允许的中继网络。

要获得后者,请在/etc/postfix/main.cf文件中找到

的行
mynetworks = 127.0.0.0/8

并将其更改为

127.0.0.0/8,10.0.0.0/8

然后用

重新加载后缀
sudo postfix reload

编辑: 或者,您可以将mynetworks_style设置为

mynetworks_style = subnet

请参阅BASIC CONFIGURATION README

答案 1 :(得分:0)

后缀服务器上的main.cf中将出现配置错误,该配置错误未设置本地网络以允许中继。

你需要像

这样的东西

Localnetworks = 0.0.0.0 / 24(您的网络或IP是来宾计算机)

答案 2 :(得分:0)

问题已修复。这是我现在使用的配置。问题在mynetworks指令,感谢itchee

# See /usr/share/postfix/main.cf.dist for a commented, more complete version


# Debian specific:  Specifying a file name will cause the first
# line of that file to be used as the name.  The Debian default
# is /etc/mailname.
#myorigin = /etc/mailname

smtpd_banner = $myhostname ESMTP $mail_name (Debian/GNU)
biff = no

# appending .domain is the MUA's job.
append_dot_mydomain = no

# Uncomment the next line to generate "delayed mail" warnings
#delay_warning_time = 4h

readme_directory = no

# TLS parameters
smtpd_tls_cert_file=/etc/ssl/certs/ssl-cert-snakeoil.pem
smtpd_tls_key_file=/etc/ssl/private/ssl-cert-snakeoil.key
smtpd_use_tls=yes
smtpd_tls_session_cache_database = btree:${data_directory}/smtpd_scache
smtp_tls_session_cache_database = btree:${data_directory}/smtp_scache

# See /usr/share/doc/postfix/TLS_README.gz in the postfix-doc package for
# information on enabling SSL in the smtp client.

myhostname = localhost
#myorigin = $mydomain
#relayhost = $mydomain


alias_maps = hash:/etc/aliases
alias_database = hash:/etc/aliases
mydestination = localdomain, localhost, localhost.localdomain, localhost

relayhost =

#mynetworks = 127.0.0.0/8 [::]/128 [::ffff:127.0.0.0]/104 [::1]/128

mynetworks = 127.0.0.0/8 10.0.0.0/8 172.0.0.0/8 [::]/128 [::ffff:127.0.0.0]/104 [::1]/128


mailbox_size_limit = 0
recipient_delimiter = +


#inet_interfaces = localhost