From fe6b7ae748f1065a9f6ece6f0cc26594b6d208c3 Mon Sep 17 00:00:00 2001 From: alecpl <alec@alec.pl> Date: Fri, 11 Apr 2008 09:47:39 -0400 Subject: [PATCH] some options moved outside user preferences section --- config/main.inc.php.dist | 25 ++++++++++++------------- 1 files changed, 12 insertions(+), 13 deletions(-) diff --git a/config/main.inc.php.dist b/config/main.inc.php.dist index 0cde478..527210d 100644 --- a/config/main.inc.php.dist +++ b/config/main.inc.php.dist @@ -246,10 +246,21 @@ // try to load host-specific configuration $rcmail_config['include_host_config'] = false; +// don't let users set pagesize to more than this value if set +$rcmail_config['max_pagesize'] = 200; + +// mime magic database +$rcmail_config['mime_magic'] = '/usr/share/misc/magic'; + +// default sort col +$rcmail_config['message_sort_col'] = 'date'; + +// default sort order +$rcmail_config['message_sort_order'] = 'DESC'; + // THIS OPTION WILL ALLOW THE INSTALLER TO RUN AND CAN EXPOSE SENSITIVE CONFIG DATA. // ONLY ENABLE IT IF YOU'RE REALLY SURE WHAT YOU'RE DOING! $rcmail_config['enable_installer'] = false; - /***** these settings can be overwritten by user's preferences *****/ @@ -271,12 +282,6 @@ // show pretty dates as standard $rcmail_config['prettydate'] = TRUE; -// default sort col -$rcmail_config['message_sort_col'] = 'date'; - -// default sort order -$rcmail_config['message_sort_order'] = 'DESC'; - // save compose message every 300 seconds (5min) $rcmail_config['draft_autosave'] = 300; @@ -288,12 +293,6 @@ // Compact INBOX on logout $rcmail_config['logout_expunge'] = FALSE; - -// don't let users set pagesize to more than this value if set -$rcmail_config['max_pagesize'] = 200; - -// mime magic database -$rcmail_config['mime_magic'] = '/usr/share/misc/magic'; // end of config file ?> -- Gitblit v1.9.1