diff options
author | alecpl <alec@alec.pl> | 2009-05-20 09:55:15 +0000 |
---|---|---|
committer | alecpl <alec@alec.pl> | 2009-05-20 09:55:15 +0000 |
commit | a5897a3e38e5527e45b5d640466cfd55b979da59 (patch) | |
tree | dccbe6cacb5ef8b4caeee70f710f794b28b7db52 /program/include/rcube_config.php | |
parent | 2de7d74c2bba02568581ea2f819b3d3eda52c6e5 (diff) |
- Support UTF-7 encoding in messages (#1485832)
Diffstat (limited to 'program/include/rcube_config.php')
-rw-r--r-- | program/include/rcube_config.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/program/include/rcube_config.php b/program/include/rcube_config.php index 60064e7f5..56f577bda 100644 --- a/program/include/rcube_config.php +++ b/program/include/rcube_config.php @@ -78,11 +78,11 @@ class rcube_config // fix default imap folders encoding foreach (array('drafts_mbox', 'junk_mbox', 'sent_mbox', 'trash_mbox') as $folder) - $this->prop[$folder] = rcube_charset_convert($this->prop[$folder], RCMAIL_CHARSET, 'UTF-7'); + $this->prop[$folder] = rcube_charset_convert($this->prop[$folder], RCMAIL_CHARSET, 'UTF7-IMAP'); if (!empty($this->prop['default_imap_folders'])) foreach ($this->prop['default_imap_folders'] as $n => $folder) - $this->prop['default_imap_folders'][$n] = rcube_charset_convert($folder, RCMAIL_CHARSET, 'UTF-7'); + $this->prop['default_imap_folders'][$n] = rcube_charset_convert($folder, RCMAIL_CHARSET, 'UTF7-IMAP'); // set PHP error logging according to config if ($this->prop['debug_level'] & 1) { |