problem with name of mailboxes with special characters

skym4n

Verified User
Joined
Aug 1, 2020
Messages
100
Location
Brazil
I made a migration from cPanel to Directadmin, everything working perfectly, except this issue of mailboxes with special characters.

mail_location = maildir:~/Maildir:UTF-8

I know I must configure the mail directory to support UTF-8, but where do I configure this? does anyone have the step by step?

the error only occurs in mailboxes that have special characters in the name.
 

Attachments

  • Screenshot at Oct 19 15-49-45.png
    Screenshot at Oct 19 15-49-45.png
    160 KB · Views: 16
solution
1-create file dovecot.conf in
/usr/local/directadmin/custombuild/custom/dovecot/dovecot.conf

2- change settings

mail_location = maildir:~/Maildir
for:
mail_location = maildir:~/Maildir:UTF-8

add line:
maildir_broken_filename_sizes=yes

3 -next step:
cd /usr/local/directadmin/custombuild;
./build dovecot_conf;
 
Back
Top