diff options
author | alecpl <alec@alec.pl> | 2009-09-04 11:16:36 +0000 |
---|---|---|
committer | alecpl <alec@alec.pl> | 2009-09-04 11:16:36 +0000 |
commit | 36969ee7d90307eeee55274b2d281cc497b182e7 (patch) | |
tree | 544874a9e2ea3c5429fd7b1adebeb6db1a3265bc /plugins/managesieve/managesieve.php | |
parent | 9087fc34e5d86a3c9cb84c714592ec857fa20eab (diff) |
- managesieve: added 'managesieve_mbox_encoding' option
Diffstat (limited to 'plugins/managesieve/managesieve.php')
-rw-r--r-- | plugins/managesieve/managesieve.php | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/plugins/managesieve/managesieve.php b/plugins/managesieve/managesieve.php index 21d974da6..b2b52d40f 100644 --- a/plugins/managesieve/managesieve.php +++ b/plugins/managesieve/managesieve.php @@ -7,7 +7,7 @@ * It's clickable interface which operates on text scripts and communicates * with server using managesieve protocol. Adds Filters tab in Settings. * - * @version 1.3 + * @version 1.5 * @author Aleksander 'A.L.E.C' Machniak <alec@alec.pl> * * Configuration (see config.inc.php.dist): @@ -744,6 +744,9 @@ class managesieve extends rcube_plugin $a_folders = $this->rc->imap->list_mailboxes(); $delimiter = $this->rc->imap->get_hierarchy_delimiter(); + // set mbox encoding + $mbox_encoding = $this->rc->config->get('managesieve_mbox_encoding', 'UTF7-IMAP'); + if ($action['type'] == 'fileinto') $mailbox = $action['target']; else @@ -758,6 +761,9 @@ class managesieve extends rcube_plugin if ($replace_delimiter = $this->rc->config->get('managesieve_replace_delimiter')) $utf7folder = str_replace($delimiter, $replace_delimiter, $utf7folder); + // convert to Sieve implementation encoding + $utf7folder = $this->mbox_encode($utf7folder, $mbox_encoding); + if ($folder_class = rcmail_folder_classname($name)) $foldername = $this->gettext($folder_class); else @@ -849,6 +855,10 @@ class managesieve extends rcube_plugin return false; } + private function mbox_encode($text, $encoding) + { + return rcube_charset_convert($text, 'UTF7-IMAP', $encoding); + } } ?> |