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” “[email protected]” { > redirect “[email protected],[email protected]”; > }
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 [“[email protected]","[email protected]”]; Anyway, there's "copy" extension. So, this should work: require ["copy"] if header :contains “from” “[email protected]” { redirect :copy “[email protected]”; redirect “[email protected]”; } -- 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
