有时会出现将特定域的邮件路由配置到特定 MX 服务器的任务。 例如,如果您有多个具有相同域的邮件服务器,那么在本指南中,我们将配置指定为哪个域使用哪个 MX 服务器发送邮件的能力。
1. 让我们创建一个包含以下内容的路由文件:
nano /etc/postfix/transport
smtp:
2. 将创建的文件连接到 Postfix 配置:
/etc/postfix/main.cf
...
transport_maps = hash:/etc/postfix/transport
...
2.1 笔记: 确保配置文件中的以下选项具有以下设置:
...
# mydestination = $myhostname, localhost.localdomain, localhost
mydestination =
relayhost =
...
3. 应用设置:
postmap /etc/postfix/transport
postfix reload
完成,现在 domain.tld 域的所有邮件都将发送到 mx.mail-server.tld 邮件服务器。
暂时没有评论