mysql – How to Forward Mail While Saving a Copy Using Postfix and MySQL

email-servermail-forwardingMySQLpostfixvirtual-hosting

I'm migrating email from old Plesk installations to custom built Ubuntu server running iRedMail (postfix/amavisd/dovecot/etc).

I'm using postfixadmin to administrate all domains and a mysql backend. I've noticed that if I want to "alias" something or create a forward, I can not use an existing mailbox – so I can't copy over the Plesk-style "redirect with saved copy" feature.

I'm currently setting remote aliases via a database and using:

virtual_alias_maps = mysql:/etc/postfix/mysql_virtual_alias_maps.cf

If there is a way to still use my database it would be ideal – even if I have to add some columns, and change the query.

Thanks!

Best Answer

I figured this out. Basically I need to modify the mysql table that saves the aliases so that it supports multiple aliases per address, making it possible to have delivery setup for both the local domain and a remote email.

This works so far, though I've heard that some people attempting this have gotten duplicate emails to the forwarded email account. So far, I have not experienced this.

I was using postfixadmin to manage the accounts, but it doesn't support this usage, so I've had to modify the source code, so that it both displays, edits and deletes aliases properly.

The main lesson here is that when using mysql a single key can be mapped to multiple results, by setting a new primary key i.e. "id" but keeping your postfix query logic the same. The multiple results returned are the same as multiple results in the default dbm/bd files, except that you must create a new record with the same key rather than a single key with some kind of delimited result.

HTH others!

This should work with any maps in mysql.