03-31-04 05:41 PM
"serverlan" <anonymous@discussions.microsoft.com> wrote in message
news:1F736FB9-4490-40D2-81A9-C882A85B8E21@microsoft.com...
> I am abit confused we don't want accept messages from two different
domains. We have one domain name eg.mycompany.com and we need to still
receive it for the one domain. If the connection to our ISP goes down we can
no longer send or receive because the SMTP address cannot be found
eg.mailer.isp.net.uk. All I want to do is change the address to another ISP
eg. mailer.isp2.net.uk so we can still send/receive across the internet. So
there is only one domain we want to receive mail for but two ISP's we need
to configure to use for redundancy incase our ISP goes offline. Is there an
easy way to reroute the mail?
If the physical connection to your ISP goes down you probably won't be able
to send or receive from any place. However, I can see that if your
connection goes down, you might want to have another SMTP server somewhere
that will collect your mail until your connection is restored. If that is
the case, then just add an MX record to your zone file.
mailer.isp.net.uk. IN MX 10 yourmailserver.mailer.isp.net.uk.
mailer.isp.net.uk. IN MX 20 anothermailserver.somewhere.else
The SMTP server (anothermailserver.somewhere.else) will have to be setup to
receive mail for your domain (mailer.isp.net.uk) and should route it to your
mail server (yourmailserver.mailer.isp.net.uk). If it's an IIS SMTP server
it can do that with a remote domain.
So the preference is given to your mail server (10), but if it can't be
reached it will be sent to another mail server (20), which will forward it
to your mail server when it can again be reached.
Is that the scenario you're looking for ?
[ Post a follow-up to this message ]
|