[Dovecot] Problem with sieve and delivery to folders with german umlauts.
Stephan Bosch
stephan at rename-it.nl
Wed Jan 19 14:06:41 EET 2011
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.
More information about the dovecot
mailing list