29 Aug
2008
29 Aug
'08
5:11 p.m.
How can I do this with Sieve? I have a script like this:
if header :value "ge" :comparator "i;ascii-numeric" ["X-Spam-Score"] ["25"] { discard; stop; } elsif header :value "ge" :comparator "i;ascii-numeric" ["X-Spam-Score"] ["5"] { fileinto "Junk"; stop; } else { redirect "user@test.com"; redirect "user@example.com"; keep; }
Only the first redirect seems to be honored, the 2nd is not.
The only other alternative I see is that I have to create an alias that contains those two addresses, and then I redirect to that alias -- but I would prefer if I can do this through sieve itself.
Thanks very much, sorry this is not Dovecot question... but this is on a Dovecot mail server. :)