On 02/10/2016 02:18 AM, @lbutlr wrote:
Is it possible to use redirect in a sieve to redirect to multiple addresses?
if header :contains “from” “test@example.com” { redirect “user1@example.com,user2@example.com”; }
I never tried, but according to RFC redirect argument is supposed to be an email address, so even a list is not allowed, but you may try redirect [“user1@example.com","user2@example.com”]; Anyway, there's "copy" extension. So, this should work: require ["copy"] if header :contains “from” “test@example.com” { redirect :copy “user1@example.com”; redirect “user2@example.com”; } -- Aleksander 'A.L.E.C' Machniak Kolab Groupware Developer [http://kolab.org] Roundcube Webmail Developer [http://roundcube.net] --------------------------------------------------- PGP: 19359DC1 @@ GG: 2275252 @@ WWW: http://alec.pl