diff options
author | thomascube <thomas@roundcube.net> | 2008-11-28 19:03:24 +0000 |
---|---|---|
committer | thomascube <thomas@roundcube.net> | 2008-11-28 19:03:24 +0000 |
commit | 2fd975071a43147b054adaa857008f6ae2ee245f (patch) | |
tree | 71f60d8580ddff8656296e63c00fa86899b8db42 /program/steps/settings/save_prefs.inc | |
parent | 41b43ba00e9110e6f415014382e11af7fe381fcb (diff) |
Option to check for new mails in all folders (#1484374)
Diffstat (limited to 'program/steps/settings/save_prefs.inc')
-rw-r--r-- | program/steps/settings/save_prefs.inc | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/program/steps/settings/save_prefs.inc b/program/steps/settings/save_prefs.inc index debd345e3..023ffff36 100644 --- a/program/steps/settings/save_prefs.inc +++ b/program/steps/settings/save_prefs.inc @@ -38,6 +38,7 @@ $a_user_prefs = array( 'logout_expunge' => isset($_POST['_logout_expunge']) ? TRUE : FALSE, 'draft_autosave' => isset($_POST['_draft_autosave']) ? intval($_POST['_draft_autosave']) : 0, 'keep_alive' => isset($_POST['_keep_alive']) ? intval($_POST['_keep_alive'])*60 : $CONFIG['keep_alive'], + 'check_all_folders' => isset($_POST['_check_all_folders']) ? TRUE : FALSE, 'mime_param_folding' => isset($_POST['_mime_param_folding']) ? intval($_POST['_mime_param_folding']) : 0, 'mdn_requests' => isset($_POST['_mdn_requests']) ? intval($_POST['_mdn_requests']) : 0, 'skin' => isset($_POST['_skin']) ? get_input_value('_skin', RCUBE_INPUT_POST) : $CONFIG['skin'], |