Hi,
All external mails are being routed through myHQ to myplace...That explains
the
domainlist local_domains...
But for primary_hostname and domains = $primary_hostname it is my
mistake...I edited that for some testing...
Now if I send emails through mt test server it gets routed to myHQ and comes
back to myplace even for localuser....Thanks
regards
Sashi
-----Original Message-----
From: Giuliano Gavazzi [
mailto:eximlists@humph.com]
Sent: Tuesday, November 02, 2004 3:16 PM
To: Sashikala Rajalingam; exim-users@???
Subject: Re: [exim] Unable to delivery mail locally
At 10:37 am +0800 2004/11/02, Sashikala Rajalingam wrote:
>Hi there,
>
>I've upgraded exim from version 3.34 to 4.34...But now I have problem in
>sending mail locally.All my mails get routed externally even for the local
>user...I really need help..thanks...
>
>I've attached the config file....
you should also have problems receiving mail, if this is what is
running on your MX now...
primary_hostname = unixdns.my.comptel.com
incorrect as it has no A record.
domainlist local_domains =
localhost:my.comptel.com:smtp.my.comptel.com:pop.my.comptel.com:unixdns.my.c
omptel.com
are you sure you want localhost? And the others? Where is
comptel.com? Don't you expect to accept mail *only* for comptel.com?
localuser:
driver = accept
check_local_user
domains = $primary_hostname
transport = local_delivery
no_more
as your primary host name has no A and no MX record it is not a valid
domain for domains. You should have:
domains = +local_domains
or simply omit the line as the domains are now all going to be
local_domains (as the other domains have been dealt with by
dns_lookup, since that is a no_more router).
Giuliano