Hello Stephan, On 2011-12-12 at 11:00 CET Stephan Bosch wrote:
> Op 12/12/2011 10:46 AM, Mike Constabel schreef: > >Hi, > > > >now the umlauts problem with sieve: > > > ># cat /mailspool1/in-preetz.de/test1/.dovecot.sieve > >## Generated by Roundcube Webmail SieveRules Plugin ## > >require ["fileinto"]; > > > ># rule:[Test] > >if anyof (header :contains "Subject" "test") > >{ > > fileinto "m&APY-"; > >} > > And here it is actually correct. Sieve fileinto expects the argument > to be in utf8 and you are passing the IMAP mutf7. > > Use > > fileinto "mö"; > > instead. Thanks for the hint, now it works. :) Mike