Procmail Service
Advanced tuning about Incoming and Outgoing mail aliasing service: >> First we need procmail package for this service. root@mail:# apt-get install procmail >> Then we have to add a user account named allmail root@mail:# adduser allmail >> Send a copy of all mail to allmail account by adding auto bcc (bcc mail user will not be able to notice) in postfix, root@mail:~# vim /etc/postfix/ main.cf always_bcc = allmail@mahidul.com >> Forward the incomming mail to procmail from .forward file, root@mail:# vim /home/allmail/.forward |/usr/bin/procmail >> Resend/aliasing your mail from allmail using the following script, root@mail:# vim /home/allmail/.procmailrc SHELL=/bin/sh MAILDIR=/var/spool/mail LOGFILE=/var/log/procmail.log LOCKFILE=$HOME/.lockmail ...