我已经安装了只发送后缀。当我向完整的电子邮件地址发送邮件时,Postfix 有效。但是,如果要向用户发送邮件,它会将 FQDN 名称添加为扩展名,而不仅仅是我在安装过程中设置的域名。
例如,当我像这样从 ssh 发送邮件时:
echo "This will go into the body of the mail." | mail -s "Hello world" root
我想要邮件去[email protected]
。但是电子邮件被发送到[email protected]
.
我已经查看了我的主机设置、邮件名设置、后缀设置,但我不知道为什么它不断向其中添加完整的主机名,这显然会被退回。这是我的配置文件:
后缀 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/主机:
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
您需要
root
在/etc/aliases
文件中添加一个别名,如下所示,然后运行newaliases
它应该可以工作。我已经对其进行了测试,并且可以正常工作。
终于让它工作了。这些是我为解决问题而采取的步骤:
1)我的目的地:
因为我有一个只发送邮件服务器,所以根据 postfix 手册页,我将文件留空
mydestination
。main.cf
但是,这样做最终会出现上述行为,即发送的本地电子邮件附加了主机名,而主机名却被退回了。因此我添加了,$hostname
就像localhost
这样:mydestination
main.cf
2)别名:
接下来,我添加了 root 用户的电子邮件地址,
/etc/aliases
如下所示:3) 新别名:
最后,我重建别名并重新加载后缀
什么解决了它:
由于别名仅用于本地交付并且我没有本地交付(意味着 $mydestination 为空),因此在别名中使用根电子邮件地址并没有任何区别。现在,在添加
$hostname
到我的目的地之后,任何发送给用户的电子邮件$hostname
都会被接收,因为$mydestination
这指的是aliases
最终告诉 postfix 将该电子邮件发送到另一个电子邮件地址。我仍然不明白的是,为什么后缀一开始就忽略了
$domainname
asmyorigin
并不断向用户添加hostname
后缀仍然是个谜。hostname
但是,当 postfix 坚持添加到所有直接发送给用户的邮件中时,上述方法似乎是解决方案。希望这可以帮助!
您可以试一试并尝试将 example.com.au 添加到您的主机文件中吗?参考:http ://www.tldp.org/LDP/solrhe/Securing-Optimizing-Linux-RH-Edition-v1.3/chap9sec95.html