- Added option focus_on_new_message (#1485374)
| | |
| | | CHANGELOG RoundCube Webmail |
| | | --------------------------- |
| | | |
| | | 2008/10/22 (alec) |
| | | ---------- |
| | | - Added option focus_on_new_message (#1485374) |
| | | |
| | | 2008/10/18 (alec) |
| | | ---------- |
| | | - Fix html2text class autoloading on Windows (#1485505) |
| | |
| | | // default setting if preview pane is enabled |
| | | $rcmail_config['preview_pane'] = FALSE; |
| | | |
| | | // focus new window if new message arrives |
| | | $rcmail_config['focus_on_new_message'] = true; |
| | | |
| | | // Clear Trash on logout |
| | | $rcmail_config['logout_purge'] = FALSE; |
| | | |
| | |
| | | } |
| | | }; |
| | | |
| | | // notifies that a new message(s) has hit the mailbox |
| | | this.new_message_focus = function() |
| | | { |
| | | // focus main window |
| | | if (this.env.framed && window.parent) |
| | | window.parent.focus(); |
| | | else |
| | | window.focus(); |
| | | } |
| | | |
| | | // add row to contacts list |
| | | this.add_contact_row = function(cid, cols, select) |
| | | { |
| | |
| | | $labels['miscfolding'] = 'RFC 2047/2231 (MS Outlook)'; |
| | | $labels['2047folding'] = 'Full RFC 2047 (other)'; |
| | | $labels['advancedoptions'] = 'Advanced options'; |
| | | $labels['focusonnewmessage'] = 'Focus browser window on new message'; |
| | | $labels['messagesdisplaying'] = 'Displaying Messages'; |
| | | $labels['messagescomposition'] = 'Composing Messages'; |
| | | $labels['folder'] = 'Folder'; |
| | |
| | | $labels['miscfolding'] = 'RFC 2047/2231 (MS Outlook)'; |
| | | $labels['2047folding'] = 'Full RFC 2047 (other)'; |
| | | $labels['advancedoptions'] = 'Advanced options'; |
| | | $labels['focusonnewmessage'] = 'Focus browser window on new message'; |
| | | |
| | | $labels['folder'] = 'Folder'; |
| | | $labels['folders'] = 'Folders'; |
| | |
| | | $labels['autosavedraft'] = 'Automatyczny zapis tworzonej wiadomości'; |
| | | $labels['everynminutes'] = 'co $n minut'; |
| | | $labels['never'] = 'nigdy'; |
| | | $labels['focusonnewmessage'] = 'Informuj przeglądarkę o nowej wiadomości'; |
| | | $labels['folder'] = 'Folder'; |
| | | $labels['folders'] = 'Foldery'; |
| | | $labels['foldername'] = 'Nazwa folderu'; |
| | |
| | | $labels['miscfolding'] = 'RFC 2047/2231 (наибольшая совместимость)'; |
| | | $labels['2047folding'] = 'RFC 2047 (для старых программ)'; |
| | | $labels['advancedoptions'] = 'Дополнительные настройки'; |
| | | $labels['focusonnewmessage'] = 'Фокусировать окно браузера при новом сообщении'; |
| | | $labels['folder'] = 'Папка'; |
| | | $labels['folders'] = 'Папки'; |
| | | $labels['foldername'] = 'Имя папки'; |
| | |
| | | $OUTPUT->command('set_rowcount', rcmail_get_messagecount_text()); |
| | | $OUTPUT->command('set_quota', rcmail_quota_content($IMAP->get_quota())); |
| | | |
| | | if (rcmail::get_instance()->config->get('focus_on_new_message',true)) |
| | | $OUTPUT->command('new_message_focus'); |
| | | |
| | | // add new message headers to list |
| | | $a_headers = array(); |
| | | for ($i=$recent_count, $id=$count_all-$recent_count+1; $i>0; $i--, $id++) |
| | |
| | | |
| | | $table = new html_table(array('cols' => 2)); |
| | | |
| | | if (!isset($no_override['focus_on_new_message'])) { |
| | | $field_id = 'rcmfd_focus_on_new_message'; |
| | | $input_focus_on_new_message = new html_checkbox(array('name' => '_focus_on_new_message', 'id' => $field_id, 'value' => 1)); |
| | | $table->add('title', html::label($field_id, Q(rcube_label('focusonnewmessage')))); |
| | | $table->add(null, $input_focus_on_new_message->show($config['focus_on_new_message']?1:0)); |
| | | } |
| | | |
| | | // show config parameter for preview pane |
| | | if (!isset($no_override['preview_pane'])) { |
| | | $field_id = 'rcmfd_preview'; |
| | |
| | | $table->add('title', html::label($field_id, Q(rcube_label('skipdeleted')))); |
| | | $table->add(null, $input_purge->show($config['skip_deleted']?1:0)); |
| | | } |
| | | |
| | | |
| | | // Trash purging on logout |
| | | if (!isset($no_override['logout_purge'])) { |
| | | $field_id = 'rcmfd_logout_purge'; |
| | |
| | | 'htmleditor' => isset($_POST['_htmleditor']) ? TRUE : FALSE, |
| | | 'inline_images' => isset($_POST['_inline_images']) ? TRUE : FALSE, |
| | | 'preview_pane' => isset($_POST['_preview_pane']) ? TRUE : FALSE, |
| | | 'focus_on_new_message' => isset($_POST['_focus_on_new_message']) ? TRUE : FALSE, |
| | | 'read_when_deleted' => isset($_POST['_read_when_deleted']) ? TRUE : FALSE, |
| | | 'skip_deleted' => isset($_POST['_skip_deleted']) ? TRUE : FALSE, |
| | | 'flag_for_deletion' => isset($_POST['_flag_for_deletion']) ? TRUE : FALSE, |