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.

Regards,

Stephan.

Reply via email to