[email protected], [email protected] and [email protected] can access there emails
via IMAP over Dovecot, OpenSMTPD hands of emails via lmtp to Dovecot and
emails send to [email protected] are stored in the [email protected] account.
But here is my problem, now i want to add "forwardings" for some
accounts. An email send to [email protected] should be stored in the mailbox
but also send ot [email protected]. Sadly i have no idea
on how to do that. Any ideas?
Since you use Dovecot this can be achieved with a Sieve script:
require ["copy", "fileinto"];
if address :matches "Delivered-To" "[email protected]" {
redirect :copy "[email protected]";
}