Re: [Exim] Re-Routing mail to certain MX

Páxina inicial
Borrar esta mensaxe
Responder a esta mensaxe
Autor: Phil White
Data:  
Para: Karsten Behrens, exim-users
Asunto: Re: [Exim] Re-Routing mail to certain MX
On Friday 26 Sep 2003 11:41 am, Karsten Behrens wrote:

> I'm running exim 4.22. Because of a problem with a certain protocol
> (ECN) I cannot disable in my kernel, I cannot connect to a certain host
> (let's call it [1.2.3.4]) which is MX for a lot of domains.


Sorry.
Do you mean "Can't disable, because I need it", or "it's on, and I don't want
it"?

echo 0 > /proc/sys/net/ipv4/tcp_ecn

will turn it off.

Otherwise, this is what I use:

# ROUTERS
#########

hubbed:
  driver           = manualroute
  domains          = ! +local_domains
  route_data       = ${lookup{$domain}lsearch*{/var/lib/exim/hubbed.hosts}}
  #                  This file lists all the domains we forward
  host_find_failed = freeze
  transport        = special_smtp


File contains the data as follows:

domain_we_act_as_smarthost_for:         host_to_send_to
etc...


Hope this helps.

Phil