diff options
author | alecpl <alec@alec.pl> | 2009-06-28 12:54:45 +0000 |
---|---|---|
committer | alecpl <alec@alec.pl> | 2009-06-28 12:54:45 +0000 |
commit | 8eb4249d952693d7c64f6ade2f8fee0af1e4da99 (patch) | |
tree | 95c67487e1cc5e0e17aaf5971ce4665151660041 | |
parent | b44cd3a83f086c486e29918a2e226b997959dfd6 (diff) |
- Managesieve: support IMAP namespaces (#1485943)
-rw-r--r-- | plugins/managesieve/Changelog | 5 | ||||
-rw-r--r-- | plugins/managesieve/managesieve.php | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/plugins/managesieve/Changelog b/plugins/managesieve/Changelog index 498fe028a..58d4e882d 100644 --- a/plugins/managesieve/Changelog +++ b/plugins/managesieve/Changelog @@ -1,3 +1,8 @@ +* version 1.2 [2009-06-28] +----------------------------------------------------------- +- Support IMAP namespaces in fileinto (#1485943) +- Added it_IT localization + * version 1.1 [2009-05-27] ----------------------------------------------------------- - Added new icons diff --git a/plugins/managesieve/managesieve.php b/plugins/managesieve/managesieve.php index 30bcf607b..606f6898e 100644 --- a/plugins/managesieve/managesieve.php +++ b/plugins/managesieve/managesieve.php @@ -775,7 +775,7 @@ class managesieve extends rcube_plugin foreach ($a_folders as $folder) { - $utf7folder = $folder; + $utf7folder = $this->rc->imap->mod_mailbox($folder); $names = explode($delimiter, rcube_charset_convert($folder, 'UTF7-IMAP')); $name = $names[sizeof($names)-1]; |