Postfix 发送 FQDN 主机名而不是域名

Postfix 发送 FQDN 主机名而不是域名

我安装了仅发送的 Postfix。当我向完整电子邮件地址发送邮件时,Postfix 可以正常工作。但是,如果要向用户发送邮件,它会添加 FQDN 名称作为扩展名,而不仅仅是我在安装期间设置的域名。

例如,当我从 ssh 发送一封邮件时,如下:

echo "This will go into the body of the mail." | mail -s "Hello world" root

我想将邮件发送至[email protected]。但电子邮件被发送至[email protected]

我检查了我的主机设置、邮件名称设置、后缀设置,但我不知道为什么它不断向其添加完整的主机名,而这显然会被退回。以下是我的配置文件:

Postfix main.cf:

# 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 = host.example.com.au
alias_maps = hash:/etc/aliases
alias_database = hash:/etc/aliases
myorigin = /etc/mailname
mydestination =
relayhost =
mynetworks = 127.0.0.0/8 [::ffff:127.0.0.0]/104 [::1]/128
mailbox_size_limit = 0
recipient_delimiter = +
inet_interfaces = loopback-only

virtual_alias_maps = hash:/etc/postfix/virtual

别名:

mailer-daemon: postmaster
postmaster: root
nobody: root
hostmaster: root
usenet: root
news: root
webmaster: root
www: root
ftp: root
abuse: root
noc: root
security: root

在/etc/postfix/虚拟:

root            [email protected]

/etc/邮件名称:

example.com.au

在 /etc/hosts 中:

127.0.0.1       localhost
11x.0.0.xxx   host.example.com.au    host

/etc/主机名

host

我已查看了所有内容,但我不知道为什么邮件会发送到@host.example.com.au。有人能帮我吗?

我在 Debian 8 上。

编辑: 刚才,我尝试在 main.cf 文件中添加另一个设置:masquerade_domains = $mydomain。添加此设置似乎可以修复from地址以显示我的域名而不是主机名,但该to地址仍然具有 FQDN 名称。由于原始电子邮件现在在添加后立即显示,因此我在我的电子邮件地址上收到了退回的电子邮件“邮件传递系统”通知,masquerade_domains但我仍然无法理解为什么用户电子邮件不遵守相同的规定,并且地址to仍然是而[email protected]不是[email protected]

myhostname = host.example.com.au
mydomain = example.com.au
alias_maps = hash:/etc/aliases
alias_database = hash:/etc/aliases
myorigin = $mydomain
masquerade_domains = $mydomain
mydestination =
relayhost =
mynetworks = 127.0.0.0/8 [::ffff:127.0.0.0]/104 [::1]/128

答案1

您需要像下面这样root在文件中放置一个别名/etc/aliases,然后运行newaliases它就可以工作了。

root: [email protected]

我已经测试过并且它有效。

答案2

终于让它工作了。这些是我解决问题的步骤:

1)我的目的地:

由于我有一个仅发送邮件的服务器,因此我按照 postfix 手册页将文件留空。但是,这样做最终会导致上述行为,即本地电子邮件发送时附加了主机名,但被退回。因此我添加了mydestination和,如下所示:main.cf$hostnamelocalhostmydestinationmain.cf

mydestination = $myhostname, localhost

2)别名:

接下来,我添加了 root 用户的电子邮件地址,/etc/aliases如下所示:

root: [email protected]

3)新别名:

最后,我重建别名并重新加载 postfix

sudo newaliases
sudo service postfix reload

修复问题:

由于别名仅用于本地投递,而我没有本地投递(这意味着 $mydestination 为空),因此在别名中拥有根电子邮件地址没有任何区别。现在,在将 添加$hostname到我的目的地后,发送给用户的任何附加了 的电子邮件$hostname都会被拾取,因为$mydestination随后会引用 ,aliases这最终会告诉 postfix 将该电子邮件投递到另一个电子邮件地址。

我仍不明白的是,为什么 postfix一开始就忽略了$domainnameas并不断向用户添加后缀,这仍然是个谜。不过,当 postfix 坚持直接向所有发给用户的邮件添加后缀时,上述方法似乎是解决方案。myoriginhostnamehostname

希望这可以帮助!

答案3

您可以尝试将 example.com.au 添加到您的 hosts 文件中吗?参考:http://www.tldp.org/LDP/solrhe/Securing-Optimizing-Linux-RH-Edition-v1.3/chap9sec95.html

相关内容