|
If this is a relay server and it is supposed to relay mail to an Exchange server, then it should not be the destination for those domains. It should be configured to relay for those domains.
You may also need to configure transport maps for the domain, since an MX lookup might yield the wrong results. Check to see if your main.cf file has a line like this one:
transport_maps=hash:/etc/postfix/transport
you may have to edit the file that it points to (it may not be /etc/postfix/transport). This file will override the DNS query and directly route mail for a specific domain to a predetermined destination. You may have something like this:
example.com smtp:exchangeserver.example.com
you'll have to make another entry for your new domain, and point it to the appropriate destination server. After you modify this file, run:
postmap /etc/postfix/transport (or whatever the file is that you had to edit)
There are a myriad of other ways to accomplish the same basic function, so your results may vary.
Last edited by isomtech; 11-24-2009 at 11:41 AM.
|