Hi,
I have folders with special characters that have a UTF-7-foldername. An example:
"Täst" becomes ".T&AOQ-s" in the file system. This is expected behavior.
Now I have set up a rule that should filter into that folder and Roundcube creates a sieve-rule:
rule:[testfoo]
if allof (header :contains "subject" "testmail")
{
fileinto "T&AOQ-st";
}
This does not work and when I set up dovecot that it should create folders when the lda tries to file into one that does not exist, it creates a folder like: "T-&AOQ-st"
After googling around I found that I have to set:
$config['sieverules_folder_encoding'] = 'UTF-8';
I did this. The sieve-rules stay the same even after deleting and recreating, and the problem still exists.
I tried with Roundcube 1.4.11 and 1.5.2 (the latter one uses managesieve 9.4).
The underlying OS is Debian 11.2 with dovecot and dovecot-pigeonhole 2.3.17.
What am I doing wrong?
The name of the option for managesieve plugin is not sieverules_folder_encoding, but managesieve_mbox_encoding.
Thanks. It works. While searching I found both but "mbox" looked like, well "mbox" and I am using Maildir.