What's the sieve syntax to perform two actions for a message?
I want to keep and redirect mail.
So I have:
if address :is :all ["to", "cc", "bcc"] ["me at mydomain.com"]
{
keep;
redirect "you at yourdomain.com";
}
but the redirect doesn't seem to happen.
What's the correct syntax?
Many thanks
Andrew Pealing