21 Aug
2012
21 Aug
'12
8:51 p.m.
Hello.
I read on upgrading page that one can use UTF8 mailbox names for plugins. As i understand i do not need to convert UTF8 names to mUTF-7 and can use raw UTF8 in plugins section, e.g.: /etc/dovecot/dovecot.conf ... plugin { ... # Autocreate \Spam folder autocreate = Спам autosubscribe = Спам ...
But what about sieve scripts and other configuration sections:
Do i need to convert UTF8 mailbox names in `namespace' section? namespace inbox { ... mailbox &BCEEPwQwBDw- { special_use = \Junk }
Do i need to convert UTF8 mailbox names in sieve scripts? /etc/dovecot/dovecot_before.sieve ... require ["reject","fileinto"];
Put all spam into separete IMAP folder
if header :contains "X-Spam-Flag" "YES" { fileinto "&BCEEPwQwBDw-"; }