If you're setting up CiviMail, you'll need a bounce processing account on a system that supports subaddressing. GMail/Google Apps works for this - Exchange and Office 365 do not. So it's often desirable to set up your own server for bounce processing - it takes very little overhead, so you can run it on the same VPS that runs CiviCRM.
useradd -s /dev/null -m civibounces
. Also set the password with passwd
.apt-get install postfix
. Select all the standard options.apt-get install dovecot-imapd
. You can skip SSL since it's all over localhost.useradd -m civi-bounces -s /sbin/nologin
. Add a password to the user account.protocols = imap disable_plaintext_auth=no mail_location = mbox:~/mail:INBOX=/var/spool/mail/%u mail_privileged_group = mail
chmod g+rw /var/spool/mail/*
/etc/postfix/main.cf
to ensure that mydestination
includes the domain you want to deliver mail to (e.g. "mysite.org").