从 Postfix 发送电子邮件的 Web 服务器

从 Postfix 发送电子邮件的 Web 服务器

我的 Web 服务器通过 postfix 从网站发送电子邮件时出现问题。我的服务器运行的是 Ubuntu 12.04.5 并使用 Apache Web 服务器。我在安装了 postfix 的服务器上安装了 virtualmin。Web 服务器部分运行良好,但使用 php 函数 mail 发送联系表单电子邮件时出现问题。

该服务器本身不是电子邮件服务器。它不托管任何电子邮件。但是日志文件中有错误,表明邮件回环到我自己。以下是日志文件中的一个条目。

Jan 12 21:20:37 postfix/smtp[19519]: 261BE184BE: to=<[email protected]>, relay=none, delay=0.01, delays=0/0/0/0, dsn=5.4.6, status=bounced (mail for domainname.com loops back to myself

我在网上查了一下,说你需要将 domainname.com 添加到 postfix 的 main.cf 文件中,然后重新启动它。我这样做了,然后从邮件日志中收到未知用户:信息错误。我觉得如果我将其用作电子邮件服务器,在 main.cf 文件中添加 mydomains 的域名是正确的。domainname.com 有一个 MX 记录,它指向一个完全不同的服务器。

我不确定如何修复该问题,以便来自服务器的电子邮件实际上查找 MX 记录并发送到适当的电子邮件服务器。如果这有帮助,我已发布 main.cf 文件以供查看:

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

myhostname = webserver.domainname.com
alias_maps = hash:/etc/aliases
alias_database = hash:/etc/aliases
myorigin = /etc/mailname
mydestination = webserver.domainname.com, localhost.domainname.com, , localhost, newdomainname.com
relayhost =
mynetworks = 127.0.0.0/8 [::ffff:127.0.0.0]/104 [::1]/128
mailbox_command = /usr/bin/procmail-wrapper -o -a $DOMAIN -d $LOGNAME
mailbox_size_limit = 0
recipient_delimiter = +
inet_interfaces = all
inet_protocols = all
virtual_alias_maps = hash:/etc/postfix/virtual
sender_bcc_maps = hash:/etc/postfix/bcc
home_mailbox = Maildir/
smtpd_sasl_auth_enable = yes
smtpd_sasl_security_options = noanonymous
broken_sasl_auth_clients = yes
smtpd_recipient_restrictions = permit_mynetworks permit_sasl_authenticated reject_unauth_destination
allow_percent_hack = no

感谢您帮助我把电子邮件发送到正确的电子邮件服务器。

相关内容