Re: [Exim] Mail problem!!!

Top Page
Delete this message
Reply to this message
Author: Dave C.
Date:  
To: Maikel Miranda
CC: exim-users
Subject: Re: [Exim] Mail problem!!!
On Thu, 4 May 2000, Maikel Miranda wrote:

> Hi !!!
>
> I have the following problem.
>
> I'm running Exim on a mailhup (it, is a firewall), and it handle my domain (jcce.org.cu) and subdomains of it (ex. testo.jcce.org.cu), wend I set up a MX for this domain
>
> testo.jcce.org.cu.    IN MX    100    mx.jcce.org.cu.

>
> my Exim log says that the lowers MX point to local host and it don't deliver the mail, I dont add this domain to the local_domain list becouse it is not a local domain, it must forward the mail to the host inside the firewall usin a router for it.
>
> This is the router
>
> net_local_mail:
>   driver = domainlist
>   transport = remote_smtp
>   route_list = "*    tinored.jcce.org.cu    bydns_a"


Change that to:

net_local_mail:
driver = domainlist
transport = remote_smtp
route_list = "testo.jcce.org.cu: tinored.jcce.org.cu bydns_a"

If you have lots of subdomains you want to handle, maybe use route_file
instead, and make a file with lines like that.. (You will need to set
"search_type = lsearch" in the router if you use a file)

>
> So, how can I do, how can I fix this problem.
>
> Maikel.
>


--