Re: [Exim] Delivering all local mail via exim to another por…

Top Page
Delete this message
Reply to this message
Author: Sheldon Hearn
Date:  
To: Darren Casey
CC: exim-users
Subject: Re: [Exim] Delivering all local mail via exim to another port
On (2003/08/28 17:20), Darren Casey wrote:

> begin routers
>
> send_to_sendmail:
>         driver = manualroute
>         domains = +relay_to_domains
>         route_list = * $domain
>         ignore_target_hosts = 0.0.0.0 : 127.0.0.0/8 :
> net-lsearch:/etc/rc.d/rc.addresses
>         transport = remote_smtp_port
>         self=pass
>         no_more


Okay.

The debug log you gave us showed that the host that's causing you problems
is in /etc/rc.d/rc.addresses; so you've told this router:

1) Behave as if that host doesn't exist (and thus can't be connected to).
(ignore_target_hosts)

2) When you fail to route to route to that host (which will always be
the case), don't try any more routers. (no_more)

So Exim looks like it's doing what you told it to. What did you expect
no_more to do?

Ciao,
Sheldon.