Add option to set default message list mode - default_list_mode (#1487312)
| | |
| | | CHANGELOG Roundcube Webmail |
| | | =========================== |
| | | |
| | | - Add option to set default message list mode - default_list_mode (#1487312) |
| | | - Close "no subject" prompt with Enter key (#1489580) |
| | | - Add config option to specify IMAP connection socket parameters - imap_conn_options (#1489948) |
| | | - Password: Add option to force new users to change their password (#1486884) |
| | |
| | | // If true, after message delete/move, the next message will be displayed |
| | | $config['display_next'] = true; |
| | | |
| | | // Default messages listing mode. One of 'threads' or 'list'. |
| | | $config['default_list_mode'] = 'list'; |
| | | |
| | | // 0 - Do not expand threads |
| | | // 1 - Expand all threads automatically |
| | | // 2 - Expand only threads with unread messages |
| | |
| | | { |
| | | global $RCMAIL; |
| | | |
| | | $default_threading = $RCMAIL->config->get('default_list_mode', 'list') == 'threads'; |
| | | $a_threading = $RCMAIL->config->get('message_threading', array()); |
| | | $message_sort_col = $RCMAIL->config->get('message_sort_col'); |
| | | $message_sort_order = $RCMAIL->config->get('message_sort_order'); |
| | |
| | | $RCMAIL->storage->set_page($_SESSION['page'] = 1); |
| | | } |
| | | |
| | | unset($a_threading[$_SESSION['mbox']]); |
| | | $a_threading[$_SESSION['mbox']] = false; |
| | | } |
| | | |
| | | $RCMAIL->user->save_prefs(array('message_threading' => $a_threading)); |
| | | } |
| | | |
| | | $RCMAIL->storage->set_threading($a_threading[$_SESSION['mbox']]); |
| | | $threading = isset($a_threading[$_SESSION['mbox']]) ? $a_threading[$_SESSION['mbox']] : $default_threading; |
| | | |
| | | $RCMAIL->storage->set_threading($threading); |
| | | } |
| | | |
| | | /** |
| | |
| | | } |
| | | else if (strlen($mbox_imap)) { |
| | | $a_threaded = $RCMAIL->config->get('message_threading', array()); |
| | | $value = (int) isset($a_threaded[$mbox_imap]); |
| | | $default_mode = $RCMAIL->config->get('default_list_mode', 'list'); |
| | | |
| | | $value = (int) (isset($a_threaded[$mbox_imap]) ? $a_threaded[$mbox_imap] : $default_mode == 'threads'); |
| | | } |
| | | |
| | | $form['props']['fieldsets']['settings']['content']['viewmode'] = array( |
| | |
| | | $a_threaded = (array) $RCMAIL->config->get('message_threading', array()); |
| | | $oldprefix = '/^' . preg_quote($oldname . $delimiter, '/') . '/'; |
| | | |
| | | foreach (array_keys($a_threaded) as $key) { |
| | | foreach ($a_threaded as $key => $val) { |
| | | if ($key == $oldname) { |
| | | unset($a_threaded[$key]); |
| | | $a_threaded[$newname] = true; |
| | | $a_threaded[$newname] = $val; |
| | | } |
| | | else if (preg_match($oldprefix, $key)) { |
| | | unset($a_threaded[$key]); |
| | | $a_threaded[preg_replace($oldprefix, $newname.$delimiter, $key)] = true; |
| | | $a_threaded[preg_replace($oldprefix, $newname.$delimiter, $key)] = $val; |
| | | } |
| | | } |
| | | |
| | | $RCMAIL->user->save_prefs(array('message_threading' => $a_threaded)); |
| | | |
| | | // #1488692: update session |
| | |
| | | if (isset($_POST['_viewmode'])) { |
| | | $a_threaded = (array) $RCMAIL->config->get('message_threading', array()); |
| | | |
| | | if ($_POST['_viewmode']) |
| | | $a_threaded[$folder['name']] = true; |
| | | else |
| | | unset($a_threaded[$folder['name']]); |
| | | $a_threaded[$folder['name']] = (bool) $_POST['_viewmode']; |
| | | |
| | | $RCMAIL->user->save_prefs(array('message_threading' => $a_threaded)); |
| | | } |
| | | |
| | | rcmail_update_folder_row($folder['name'], null, $folder['subscribe'], $folder['class']); |
| | | |
| | | $OUTPUT->show_message('foldercreated', 'confirmation'); |
| | | // reset folder preview frame |
| | | $OUTPUT->command('subscription_select'); |
| | |
| | | } |
| | | else if (preg_match($oldprefix, $key)) { |
| | | unset($a_threaded[$key]); |
| | | $a_threaded[preg_replace($oldprefix, $folder['name'].$delimiter, $key)] = true; |
| | | $a_threaded[preg_replace($oldprefix, $folder['name'].$delimiter, $key)] = $val; |
| | | } |
| | | } |
| | | } |
| | | if ($_POST['_viewmode']) |
| | | $a_threaded[$folder['name']] = true; |
| | | else |
| | | unset($a_threaded[$folder['name']]); |
| | | |
| | | $a_threaded[$folder['name']] = (bool) $_POST['_viewmode']; |
| | | |
| | | $RCMAIL->user->save_prefs(array('message_threading' => $a_threaded)); |
| | | } |