On 08/21/2010 04:08 PM, Josh Cason wrote:
I had a request to take a internal mail account that receives email and
need to copy that information to another account. I can do a aliase but
that just fowards the mail not make a copy. I'm using postfix, mysql,
and postfix.admin. I will answer any other questions.



In Postfix, if you want to send a copy of [email protected]'s mail to [email protected], you would create an alias,

  [email protected] -> [email protected], [email protected]

Since the original address appears in the alias as well, Postfix knows not to expand it again.

In Postfix.admin, each address is already aliased to itself but this is hidden by default. Add these two settings to your config.local.php:

  $CONF['alias_control'] = 'YES';
  $CONF['alias_control_admin'] = 'YES';

Now, you should see that each account is aliased to itself, and you can edit that alias. To "copy" another recipient, simply add that recipient's address to the alias.

Reply via email to