环境: CentOS、Postfix、Dovecot、Digital Ocean droplet
我的/etc/hosts
文件包含这些行。
# The following lines are desirable for IPv4 capable hosts
127.0.0.1 example.com example
127.0.0.1 localhost.localdomain localhost
127.0.0.1 localhost4.localdomain4 localhost4
# The following lines are desirable for IPv6 capable hosts
::1 example.com example
::1 localhost.localdomain localhost
::1 localhost6.localdomain6 localhost6
问:安装 Postfix 邮件服务器后,是否需要mail.example.com
在 IPv4 和 IPv6 部分的第一行添加内容?如果我这样做,主机列出的顺序是否重要?
例如,
127.0.0.1 example.com example mail.example.com
附录:这些注释在hosts
文件的顶部。不确定它们在这种情况下是否意味着什么,因为当我编辑此文件时,更改似乎仍然存在。
# Your system has configured 'manage_etc_hosts' as True.
# As a result, if you wish for changes to this file to persist
# then you will need to either
# a.) make changes to the master file in /etc/cloud/templates/hosts.redhat.tmpl
# b.) change or remove the value of 'manage_etc_hosts' in
# /etc/cloud/cloud.cfg or cloud-config from user-data
目前尚不清楚您要避免或解决什么具体问题,因此有一些一般性提示:
服务器需要知道它的主机名。我通常将其设置在
main.cf
:当域具有不允许使用子域的严格 DMARC 时,我会执行以下操作:
这将使原点
mycompany.net
。理解为什么超出了这个答案的范围;互联网有很多来源。那么,以下内容需要正确:
HELO mailserver.mycompany.net
。这适用于 IPv4 和 IPv6。
至于编辑
/etc/hosts
:cloud-init 可能不会在每次启动时都覆盖文件,但将来可能会这样做。如果需要编辑 hosts 文件,您可能需要配置 cloud-init 以保留它。顺序无关紧要,但您可以对其进行测试。用 IP 地址组成一些名称,然后
host
对它们进行操作。是否需要设置?取决于 DNS 环境。我经常将服务器的 fqdn 条目设置为
/etc/hosts
:hostname --fqdn
尽管有 DNS 配置,这种方式仍然有效。建议有hostname --fqdn
工作,但使用上面的 Postfix 配置,不是必须的,因为它是指定的。(但其他服务可能会出现意外行为)。