5 Apr
2012
5 Apr
'12
4:47 p.m.
Op 4/5/2012 3:29 PM, l.chelchowski@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.