From 0ec9f1797f0d92b9eecd77ab8334108b906a0211 Mon Sep 17 00:00:00 2001 From: Florent Daigniere Date: Sun, 5 Feb 2023 14:48:08 +0100 Subject: [PATCH] Close #2258: sieve scripts should be utf8 encoded --- towncrier/newsfragments/2650.bugfix | 1 + webmails/roundcube/config/config.inc.php | 1 + 2 files changed, 2 insertions(+) create mode 100644 towncrier/newsfragments/2650.bugfix diff --git a/towncrier/newsfragments/2650.bugfix b/towncrier/newsfragments/2650.bugfix new file mode 100644 index 00000000..0e2ea011 --- /dev/null +++ b/towncrier/newsfragments/2650.bugfix @@ -0,0 +1 @@ +Tell roundcube to use UTF8 instead of 'UTF7-IMAP' when creating sieve scripts. diff --git a/webmails/roundcube/config/config.inc.php b/webmails/roundcube/config/config.inc.php index 3ced13e7..e07a8e64 100644 --- a/webmails/roundcube/config/config.inc.php +++ b/webmails/roundcube/config/config.inc.php @@ -25,6 +25,7 @@ $config['smtp_pass'] = '%p'; // Sieve script management $config['managesieve_host'] = '{{ FRONT_ADDRESS or "front" }}:14190'; +$config['managesieve_mbox_encoding'] = 'UTF8'; // roundcube customization $config['product_name'] = 'Mailu Webmail';