> I'm looking into moving from Qmail/vpopmail to OpenSMTPD/Dovecot and I
> cannot for the life of me figure out if/how it's possible to forward a
> copy for a user.

Would recommend to use Sieve: https://wiki.dovecot.org/Pigeonhole/Sieve

protocol lda {
        mail_plugins = sieve
}
protocol lmtp {
        mail_plugins = sieve
}


Than you can forward with a .dovecot.sieve file like so:

if true {
        redirect "[email protected]";
}

It has you covered should the need for more than just forwarding arise.

-- 
You received this mail because you are subscribed to [email protected]
To unsubscribe, send a mail to: [email protected]

Reply via email to