Op 4/5/2012 3:29 PM, l.chelchow...@eurocar.pl schreef:
Hi,

I have problems with sieve fileinto and polish characters in folder names:
# rule:[ąćęłńóśźżĄĆĘŁŃÓŚŹŻ]
elsif anyof (header :contains "Subject" "ąćęłńóśźżĄĆĘŁŃÓŚŹŻ")
{
    fileinto "INBOX/&AQUBBwEZAUIBRADzAVsBegF8AQQBBgEYAUEBQwDTAVoBeQF7-";
}

Looks like your Sieve GUI uses the wrong Unicode format. The above is mUTF7 as used by IMAP. However, Sieve expects UTF-8. So it should use this instead:

fileinto "INBOX/ąćęłńóśźżĄĆĘŁŃÓŚŹŻ";

Regards,

Stephan.



Reply via email to