Marvin Renich:
> I have enabled the submission service in master.cf:
>
> submission inet n - - - - smtpd
> -o syslog_name=postfix/submission
> -o smtpd_tls_security_level=encrypt
> -o smtpd_sasl_auth_enable=yes
> -o smtpd_reject_unlisted_recipient=no
> -o smtpd_client_restrictions=$mua_client_restrictions
> -o smtpd_helo_restrictions=$mua_helo_restrictions
> -o smtpd_sender_restrictions=$mua_sender_restrictions
> -o smtpd_recipient_restrictions=
> -o smtpd_relay_restrictions=permit_sasl_authenticated,reject
> -o milter_macro_daemon_name=ORIGINATING
> -o sender_bcc_maps=$outgoing_bcc_maps
> -o smtpd_milters=
sender_bcc_maps is not implemented by smtpd(8) but by cleanup(8).
This is consistent with the information in the manpage.
You can work around this with:
/etc/postfix/main.cf:
submission ...
-o cleanup_service=cleanup-outbound
/etc/postfix/master.cf:
cleanup-outbound .. .. .. .. cleanup
-o sender_bcc_maps=$outgoing_bcc_maps
So it is possible, but it is not obvious.
Wietse