- Allow UTF-8 folder names in config (#1485579)
- Add junk_mbox option configuration in installer (#1485579)
| | |
| | | CHANGELOG RoundCube Webmail |
| | | --------------------------- |
| | | |
| | | 2008/11/26 (alec) |
| | | ---------- |
| | | - Allow UTF-8 folder names in config (#1485579) |
| | | - Add junk_mbox option configuration in installer (#1485579) |
| | | |
| | | 2008/11/23 (thomasb) |
| | | ---------- |
| | | - Do serverside addressbook queries for autocompletion (#1485531) |
| | |
| | | echo $text_sentmbox->show($RCI->getprop('sent_mbox')); |
| | | |
| | | ?> |
| | | <div>Store sent messages is this folder</div> |
| | | <div>Store sent messages in this folder</div> |
| | | |
| | | <p class="hint">Leave blank if sent messages should not be stored</p> |
| | | </dd> |
| | |
| | | echo $text_draftsmbox->show($RCI->getprop('drafts_mbox')); |
| | | |
| | | ?> |
| | | <div>Store draft messages is this folder</div> |
| | | <div>Store draft messages in this folder</div> |
| | | |
| | | <p class="hint">Leave blank if they should not be stored</p> |
| | | </dd> |
| | | |
| | | <dt class="propname">junk_mbox</dt> |
| | | <dd> |
| | | <?php |
| | | |
| | | $text_junkmbox = new html_inputfield(array('name' => '_junk_mbox', 'size' => 20, 'id' => "cfgjunkmbox")); |
| | | echo $text_junkmbox->show($RCI->getprop('junk_mbox')); |
| | | |
| | | ?> |
| | | <div>Store spam messages in this folder</div> |
| | | </dd> |
| | | </dl> |
| | | </fieldset> |
| | | |
| | |
| | | */ |
| | | function Q($string) |
| | | { |
| | | return htmlentities($string); |
| | | return htmlentities($string, ENT_COMPAT, 'UTF-8'); |
| | | } |
| | | |
| | | |
| | |
| | | // fix paths |
| | | $this->prop['log_dir'] = $this->prop['log_dir'] ? unslashify($this->prop['log_dir']) : INSTALL_PATH . 'logs'; |
| | | $this->prop['temp_dir'] = $this->prop['temp_dir'] ? unslashify($this->prop['temp_dir']) : INSTALL_PATH . 'temp'; |
| | | |
| | | |
| | | // fix default imap folders encode |
| | | foreach (Array('draft_mbox', 'junk_mbox', 'sent_mbox', 'trash_mbox') as $folder) |
| | | $this->prop[$folder] = rcube_charset_convert($this->prop[$folder], RCMAIL_CHARSET, 'UTF-7'); |
| | | |
| | | foreach ($this->prop['default_imap_folders'] as $n => $folder) |
| | | $this->prop['default_imap_folders'][$n] = rcube_charset_convert($folder, RCMAIL_CHARSET, 'UTF-7'); |
| | | |
| | | // set PHP error logging according to config |
| | | if ($this->prop['debug_level'] & 1) { |
| | | ini_set('log_errors', 1); |