配置 Postfix 以发送邮件

配置 Postfix 以发送邮件

我租了一个 VPS,一个域名(假设foo.bar)。
我想使用地址发送电子邮件[email protected]

我已经安装了postfix,并开始配置main.cf文件;但是它不起作用。我觉得参数relayhost配置错误。事实上,我在互联网上看到我应该输入我的 ISP 的域名。但如果我没有 ISP 怎么办?如果服务器在我家,我可以理解,但它是 VPS。

您可以找到附件中的我的配置文件。有人能帮我让它工作吗?

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

# MY SERVER
myhostname = server.foo.bar
mydomain   = foo.bar

# Transport mod for outgoing mail
default_transport = smtp

# Aliases
alias_maps = hash:/etc/aliases
alias_database = hash:/etc/aliases

# 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 (Ubuntu)
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.

smtpd_relay_restrictions = permit_mynetworks permit_sasl_authenticated defer_unauth_destination
mydestination = $myhostname, localhost.$mydomain, $mydomain

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

relay_domains = $mydestination
relayhost = $mydomain

mailbox_size_limit = 0
recipient_delimiter = +
inet_interfaces = all
inet_protocols = all

myorigin = $mydomain

这是日志文件/var/log/mail.log

Sep  9 12:12:42 foobar postfix/postfix-script[1635]: refreshing the Postfix mail system
Sep  9 12:12:42 foobar postfix/qmgr[1640]: 736F541741: from=<foobar@foobar>, size=336, nrcpt=1 (queue active)
Sep  9 12:12:42 foobar postfix/smtp[1642]: warning: relayhost configuration problem
Sep  9 12:12:42 foobar postfix/smtp[1642]: 736F541741: to=<[email protected]>, relay=none, delay=374, delays=374/0.04/0.03/0, dsn=4.3.5, status=deferred (mail for foo.bar loops back to myself)

答案1

您的relayhost参数确实似乎配置错​​误。更准确地说,它已配置但不应该配置。

当可选的 transport(5) 表中没有匹配的条目时,relayhost 参数指定将邮件发送到的默认主机。当没有指定中继主机时,邮件将直接路由到目的地。

当使用家庭连接时,将其设置为 ISP 的 smtp 服务器是有意义的,因为您的 ISP 可能会限制从您的互联网连接访问端口 25。通过您的提供商进行中继将解决该问题。

然而,在 VPS 上,您可以直接访问互联网,希望不会有任何过滤。因此,您可以将其留空,您的服务器应该会尝试直接将信息发送给您的收件人。

相关内容