Can postfix be set up to forward mail to multiple recipients

I have the following postfix virtual file:

[email protected] [email protected]

This correctly forwards all emails to [email protected] to [email protected]

However I would like to forward these emails to [email protected] as well.

I tried this change and it does not seem to work:

[email protected] [email protected]
[email protected] [email protected]

How do I tell postfix to forward all emails to multiple recipients?


Put all your addresses on the same line separated by commas as explained in the Postfix manual for virtual.

[email protected] [email protected],[email protected]

Should do the trick.


You can make alias on multiply addresses and setup a bcc for that alias:

Find or edit bcc_map (or else name) file in /etc/postfix, compile this into a postfix hash file using:

postmap bcc_map

Add tp postfix main.cf config:

sender_bcc_maps = hash:/etc/postfix/bcc_map