serg wrote:
> 
> Hi all!
> 
> I'm just install cyrus 2.0.9 on RH 6.2 machine.
> Sieve work fine [reject, redirect,  discard, keep..] except vacation rule.
> 
> Can anybody help me with sieve vacation?
> 
> I'm attach two files:
>         filter - it's filter file
>         message - mail message
> 
> I try run sieve/test message filter  and it dosn't work.

If you input '[EMAIL PROTECTED]' and the envelope 'to' address when asked, it
should work.  I any case, you should give vacation the addresses of the
recipient.

Try:

require ["fileinto", "reject", "imapflags", "subaddress", "vacation",
"notify", "envelope"];

if allof(true,  header :contains "subject" "fail") {
discard;
}
if allof(true,  header :contains "subject" "test") {
vacation :addresses ["[EMAIL PROTECTED]"] "test";
stop;
}
keep;


-- 
Kenneth Murchison     Oceana Matrix Ltd.
Software Engineer     21 Princeton Place
716-662-8973 x26      Orchard Park, NY 14127
--PGP Public Key--    http://www.oceana.com/~ken/ksm.pgp

Reply via email to