How to redirect all mail from one domain to another in Postfix?

13,439

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 [email protected] emails and the @tedswidgets in the result will cause it become [email protected].

Share:
13,439

Related videos on Youtube

thomasrutter
Author by

thomasrutter

Web application developer by day who has also dabbled in audio, video and image tools.

Updated on September 18, 2022

Comments

  • thomasrutter
    thomasrutter almost 2 years

    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.

  • Simon Woodside
    Simon Woodside about 11 years
    It's not presently necessary to do anything with virtual_alias_domains, just the part in the virtual file is sufficient.
  • thomasrutter
    thomasrutter almost 10 years
    The virtual file is the virtual_alias_domains list.