Adam Tauno Williams: > > > This list > > > <http://thread.gmane.org/gmane.mail.postfix.user/4320/focus=4327> as > > > well as a simple test of sending an e-mail with a BCC: and looking in > > > the archive (message in archive has no BCC). > > That's about always_bcc. > > >> Hint: recipient_bcc_maps operates on the message envelope. > > >> By definition, the envelope des not distingnuish between > > >> bcc and other recipients. > > > I'll take a look at that; the suggest I received was to use always_bcc > > > which is not a sufficient solution. > > Ok I have: > [EMAIL PROTECTED] postfix]# cat /etc/postfix/recipient_bcc > /(.)/ [EMAIL PROTECTED]
Well that throws away all the recipient information. To capture information about ALL recipients, assume the following example: [EMAIL PROTECTED] [EMAIL PROTECTED] [EMAIL PROTECTED] [EMAIL PROTECTED] If you use a recipient_bcc_maps like this: /(.+)@(.+)/ [EMAIL PROTECTED] then archive copies will be sent to: [EMAIL PROTECTED] [EMAIL PROTECTED] [EMAIL PROTECTED] Wietse