Postfix Forwarding Multiple eMail Copies
Hi! The Tutorial shows you Step-by-Step How to Send a Copy of Incoming Mail on a Postfix Linux/Unix Server to Multiple eMail Addresses.
The Process can be Resumed is 2 Steps:
- Setup a Carbon Copy eMail Address
- Make an Alias for the Bcc Forwarding to Multiple Targets
-
How to Setup a Postfix Carbon Copy eMail Target
-
Enable the Postfix Virtual Aliases.
sudo nano /etc/postfix/main.cf
Append:
virtual_alias_maps = hash:/etc/postfix/virtual_alias_maps
Ctrl+x to Save & Exit from nano :)
-
Alias to Multi-Target Setup.
sudo nano /etc/postfix/virtual_alias_maps
Add:
myBcc@domain.com target1@domain1.com,target2@domain2.com,target3@domain3.com
-
Load Postfix Setup.
sudo postmap /etc/postfix/virtual_alias_maps
sudo postfix reload