From b7f952248e47c126406044ab26829133d3184429 Mon Sep 17 00:00:00 2001 From: alecpl <alec@alec.pl> Date: Fri, 05 Mar 2010 05:18:01 -0500 Subject: [PATCH] - Add 'delete_always' option to user preferences --- config/main.inc.php.dist | 14 ++++++-------- 1 files changed, 6 insertions(+), 8 deletions(-) diff --git a/config/main.inc.php.dist b/config/main.inc.php.dist index 2bcd70f..61736c2 100644 --- a/config/main.inc.php.dist +++ b/config/main.inc.php.dist @@ -322,14 +322,6 @@ // don't let users set pagesize to more than this value if set $rcmail_config['max_pagesize'] = 200; -/** - * 'Delete always' - * This setting reflects if mail should be always deleted - * when moving to Trash fails. This is necessary in some setups - * when user is over quota and Trash is included in the quota. - */ -$rcmail_config['delete_always'] = false; - // Minimal value of user's 'keep_alive' setting (in seconds) // Must be less than 'session_lifetime' $rcmail_config['min_keep_alive'] = 60; @@ -506,5 +498,11 @@ // Please note that folder names should to be in sync with $rcmail_config['default_imap_folders'] $rcmail_config['search_mods'] = null; // Example: array('*' => array('subject'=>1, 'from'=>1), 'Sent' => array('subject'=>1, 'to'=>1)); +// 'Delete always' +// This setting reflects if mail should be always deleted +// when moving to Trash fails. This is necessary in some setups +// when user is over quota and Trash is included in the quota. +$rcmail_config['delete_always'] = false; + // end of config file ?> -- Gitblit v1.9.1