Re: [Exim] Re: Problem With Microsoft Exchange

Top Page
Delete this message
Reply to this message
Author: Dave C.
Date:  
To: mgross
CC: exim-users
Subject: Re: [Exim] Re: Problem With Microsoft Exchange

Er, you are trying to use rewriting as a way of routing messages.

Probably, the exchange server doesnt recognize its full hostname as a
"local" domain for its users.

If you need to take messages addressed to <some-user@???>
and send them on to full-host.some-domain.com, you probably should use a
domainlist router instead, rather than using a rewrite rule.


Something like the following would work:

foo-users:
driver=domainlist
domains=foo.com
route_list="foo.com foohost.foo.com bydns_a"

bydns_a simply tells it to look up the IP address of foohost.foo.com in
the DNS.. See section 28 of the exim spec for further info on domainlist
router...

On Mon, 16 Jul 2001 mgross@??? wrote:

>
> Yes, that extra # was a typo and not in the original exim.conf.
>
> Sorry.
>
> Murray Gross
>
>
>
>
>
> --
> ## List details at http://www.exim.org/mailman/listinfo/exim-users Exim details at http://www.exim.org/ ##
>


--