Kov?cs Albert:
> Hello,
>
>I've got a mail server (A) configured to always_bcc to another
>computer (B). Fine.
>
>My problem is the following. Let's say the original email had 10
>recipients.  When "A" hands the email to "B" it preserves the MAIL
>FROM part, however it drops all the 10 recipients in the RCPT TO
>phase and replaces them with 1 email address: what I configured for
>always_bcc.

If you want forward to different recipient addresses, then don't
use always_bcc.

Instead, use recipient_bcc_maps which allows you to specify different
addresses for different recipients.

/etc/postfix/main.cf:
    recipient_bcc_maps = pcre:/etc/postfix/recipient_bcc

/etc/postfix/recipient_bcc:
    /^([^@]+)@example\.com$/    $1...@otherhost.example.com

        Wietse


Reply via email to