Exim:如何在本地交付并将副本发送到其他服务器

我需要configurationexim以将消息传递到域abc.com,并将副本发送到另一个也configuration为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
                 transport = remote_smtp
                 route_data =“200.200.200.50” 

它提供给其他服务器,但它不保存本地消息。

我能做什么的想法?

谢谢。

您可以在路由器上使用unseen关键字。

当此选项设置为true时,如果路由器接受地址,则路由不会停止。 而是将传入地址的副本传递给下一个路由器。

从路由器的通用选项 。

我想尝试一下,

 smarthost: driver = manualroute domains = abc.com transport = remote_smtp route_data = "200.200.200.50" unseen 

在其他路由器之前?