how to send a copy to another email address of all incoming messages from an email account?(postfix)

it's possible?

thx.

link|improve this question
feedback

4 Answers

You can do this by creating two aliases for the account, as follows:

Let's say you have two email addresses: mom@example.com and kid@example.com, and you want mom to get a copy of all of kid's email. In this case, mom@example.com and kid@example.com would both be accounts, but you would also create the following aliases:

From:                         To:
kid@example.com               mom@example.com
kid@example.com               kid@example.com

Postfix will understand this -- the kid -> kid alias does not create a loop (though it looks like it should!), instead it tells Postfix to continue on to delivering to the mailbox even though the mail was already delivered to the alias.

link|improve this answer
1  
Note that postfix complains about a duplicate entry. Put both mom@example.com and kid@example.com destination on the same line. – Ludovic Kuty Apr 16 at 15:56
feedback

You can simply use recipient_bcc_maps to copy all emails being sent to a specific user (or a specific domain).

For example add the following line to your main.cf (or use postconf for that):

recipient_bcc_maps = hash:/etc/postfix/recipient_bcc_maps

and create a file /etc/postfix/recipient_bcc_maps with the following content:

user@example.com  recipient@example.net

and run postmap recipient_bcc_maps.

link|improve this answer
feedback

one solution is to use procmail a different solution is to use ~/.forward file. over the two procmail has far more options and control.

link|improve this answer
send bcc will do it as well ... :) there is also an option into main.cf – silviud Apr 28 '11 at 1:40
could u tell me how to use this second option? – Mrsksdk Apr 28 '11 at 1:44
check this link - is quite simple if you still have problems let me know - wiki.kartbuilding.net/index.php/Procmail_-_setup_with_postfix – silviud Apr 28 '11 at 23:54
feedback

I suggest using this milter if your postfix storage format is mbox: http://www.dancingfortune.com/projects/archivesmtp/index.php

the advantage is that if a user is authenticated and not using the proper from details his mail will still be caught by this milter while the sender_bcc_maps won't catch it.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.