On Thu, 2006-08-03 at 17:57 +0300, Alex wrote:
> Horst Fickenscher wrote:
> > Hello,
> >
> > after our upgrade to 2.1.7 we have been playing with Sieve scripts in
> > the last week and ran into some unexpected scenarios.
> > Maybe anyone can help us out?
> >
> >> require ["fileinto"];
> >>
> >> if header :contains "To" "[EMAIL PROTECTED]" {
> >> fileinto "Test";
> >> stop;
> >> }
Try this and see if it resolves the issue:
require ["fileinto", "imap4flags"];
...tests... {
fileinto :flags "" "Test";
}
This may be a possible workaround for a slight brokenness in DBMail
2.1.7 -- not specifying any imapflags breaks the fileinto. I fixed this
in SVN last week, just after the 2.1.7 release :-\
Aaron