Domain – setup an MX record for a particular user email address

domainemail-servermx-record

I would like to configure 2 MX records :
– One MX record that identifies an email server to the domain @mycompany.com that will handle all of the emails except one email
– Another MX Record that will redirect to another email server if the address email is: me@mycompany.com

Is it possible? If yes, how can I achieve it?

Thanks,

Fabien

Best Answer

You can't do this by indicating multiple the MX records for the same (sub)domain. The mail will be delivered to the server(s) defined by your MX record regardin only the (sub)domain, without any look at the user@... Mail routing is done on the (sub)domain part only.

Possible solutions :

  • You can use subdomains, to re-route easily : me@sub.domain.com . The drawback is that you have to change your email address and ask your contacts to update theirs.

  • However, there's nothing stopping that mail server being an application that forwards mail onto several other servers based on the user name of the recipient... i.e. tell your mail client to forward all incoming messages for me@domain.com to an other mail server.

Related Topic