19 Jan
2011
19 Jan
'11
2:06 p.m.
Op 19-1-2011 13:00, Micha Krause schreef:
Hi,
I have a problem with sieve and german umlauts:
error: msgid=unspecified: failed to store into mailbox 'INBOX.t&AOQ-st' (INBOX.t&-AOQ-st): Mailbox doesn't exist: t&-AOQ-st.
The folder name is "täst", the filesystem folder is ".t&AOQ-st" , but sieve seems to look for a folder named ".t&-AOQ-st"
Dovecot verstion is: 2.0.9 (7ecc5e10da57)
It looks like you're using mUTF-7 in Sieve, but it expects UTF-8 folder names only. Use the following Sieve code to store data into your folder:
require "fileinto";
fileinto "INBOX.täst";
Regards,
Stephan.