我需要配置 exim 以将消息传递到域 abc.com,并将副本发送到另一台服务器,该服务器也为 abc.com 配置了。
类似这样的:
[email protected] sends email to [email protected]
abc.com mx resolves to 200.200.200.10 ( one of the exim servers )
Message is delivered
Exim receives the message locally AND send a copy to 200.200.200.50
我尝试设置一个智能主机:
智能主机: 司机 = 手动路线 域名 = abc.com 传输 = remote_smtp 路线数据 = “200.200.200.50”
它确实会将消息传递到其他服务器,但不会在本地保存该消息。
有什么想法我可以做什么吗?
谢谢。
答案1
您可以unseen
在路由器上使用该关键字。
当此选项设置为 true 时,如果路由器接受该地址,路由不会停止。相反,传入地址的副本将传递给下一个路由器...
从路由器的通用选项。
我想尝试一下,
smarthost:
driver = manualroute
domains = abc.com
transport = remote_smtp
route_data = "200.200.200.50"
unseen
在其他路由器之前?