diff options
| author | thomasb <thomasb@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2008-07-31 20:27:46 +0000 |
|---|---|---|
| committer | thomasb <thomasb@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2008-07-31 20:27:46 +0000 |
| commit | 42bc89bdd5ca45a51fd414d30fbc8789e81ba73f (patch) | |
| tree | 397b4fefefe209e57ce69c4d7a1d4e1cba192760 /roundcubemail/program/steps/settings/save_prefs.inc | |
| parent | 0384f7782a63c94ee5dd5322c12d9046277b335e (diff) | |
Make special folders configurable for the user
git-svn-id: https://svn.roundcube.net/trunk@1619 208e9e7b-5314-0410-a742-e7e81cd9613c
Diffstat (limited to 'roundcubemail/program/steps/settings/save_prefs.inc')
| -rw-r--r-- | roundcubemail/program/steps/settings/save_prefs.inc | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/roundcubemail/program/steps/settings/save_prefs.inc b/roundcubemail/program/steps/settings/save_prefs.inc index 750b33bf0..ccd6e5f7b 100644 --- a/roundcubemail/program/steps/settings/save_prefs.inc +++ b/roundcubemail/program/steps/settings/save_prefs.inc @@ -36,6 +36,10 @@ $a_user_prefs = array( 'draft_autosave' => isset($_POST['_draft_autosave']) ? intval($_POST['_draft_autosave']) : 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'], + 'drafts_mbox' => get_input_value('_drafts_mbox', RCUBE_INPUT_POST), + 'sent_mbox' => get_input_value('_sent_mbox', RCUBE_INPUT_POST), + 'junk_mbox' => get_input_value('_junk_mbox', RCUBE_INPUT_POST), + 'trash_mbox' => get_input_value('_trash_mbox', RCUBE_INPUT_POST), ); // don't override these parameters |
