RE: Email not being forwarded
10-13-2017, 07:28 PM
(This post was last modified: 10-13-2017, 09:44 PM by zanga.)
I'm not exactly sure how the sentora's forwarding form is designed to work but for postfix itself forwarding is being done thru virtual maps.Now postfix is relaying thru dovecot, which means a dovecot.sieve should handle the forwarding. Not sure at which step is the sieve file suppose to be created but you have 2 options, eider generate it using roundcube, or manually create it.
Code:
require ["copy"];
if address :is "to" "user@example.net"
{
redirect :copy "other@example.net";
}