Postfix Email Redirection – How to Redirect All Mail from One Domain to Another in Postfix?

emailpostfixredirection

I have two forms of the same domain name, one being a common misspelling of the other, let's say tedswidgets.com and tedswigets.com.

I'd like to redirect all mail for <someone>@tedswigets.com to that same <someone>@tedswidgets.com.

There's plenty of information on how to catch all mail from a domain and redirect it to a single address, but I don't want to do that – I want to catch all mail from a domain and redirect it, keeping the username part, and remap it to the equivalent address on the other domain.

Sorry, I should have mentioned that I use virtual alias domains and have a lot of other domains that I serve email for on this server. These two domains are the only two of many that need to mirror each other.

Best Answer

Add tedswigets.com to your virtual_alias_domains list and then in your virtual file add:

@tedswigets.com       @tedswidgets.com

According to virtual(5) when the result has the form @otherdomain the result becomes the same user in otherdomain. So @tedswigets will catch all anyuser@tedwigets.com emails and the @tedswidgets in the result will cause it become anyuser@tedswidgets.com.

Related Topic