Re: [exim] Remote SMTP using manual route but onlyforcertain…

Top Page
Delete this message
Reply to this message
Author: John Burnham
Date:  
To: exim-users
Old-Topics: Re: [exim] Remote SMTP using manual route but only forcertainusers???
Subject: Re: [exim] Remote SMTP using manual route but onlyforcertainusers???
> I was wonder if it will not be more easy to say if
> $home/.exchange exist I deliver else no.
>
> I'm searching for this way at the moment
>
> exchange2003_file:
>      driver = manualroute
>      domains = +local_domains
>      transport = remote_smtp
>      verify = false
>      route_list = * 192.168.123.254
>      require_files = $local_part:$home/.exchange
>      unseen = true

>
> But it does'nt work, if I don't find i will use the previous solution
>

Off the top of my head try:

exchange2003_file:
driver = manualroute
domains = +local_domains
transport = remote_smtp
verify = false
check_local_user = true
verify = false
route_list = * 192.168.123.254
require_files = $home/.exchange
unseen = true


John