Hi,
I have followed the instructions in the following wiki:
http://wiki.contribs.org/Email#Keep_a_copy_of_all_emailsKeep a copy of outgoing emails only
In addition to the commands in the previous section we will also have to create a custom template as follows:
Log in as root or a user with root privileges
mkdir -p /etc/e-smith/templates-custom/var/service/qpsmtpd/config/peers/0/
cp /etc/e-smith/templates/var/service/qpsmtpd/config/peers/0/13bcc /etc/e-smith/templates-custom/var/service/qpsmtpd/config/peers/0/
cd /etc/e-smith/templates-custom/var/service/qpsmtpd/config/peers/0/
nano -w 13bcc
change the code to:
{
return "# bcc disabled" unless ($qpsmtpd{Bcc} eq "enabled");
return "bcc mode " . $qpsmtpd{BccMode} . " outgoing " . $qpsmtpd{BccUser};
}
Save by pressing Ctrl x at the same time and confirm with y
Then enable the changes with
signal-event email-update
******************
If I put "all", I do get all messages - incoming and outgoing
If I put "outgoing", I only get outgoing messages ... So far so good.
But if I put "incoming", I still get incoming and outgoing messages.
I do run "signal-event email-update" after each change.
Can someone tell me why I cannot get only incoming emails ?
Thanks