summaryrefslogtreecommitdiff
path: root/config
diff options
context:
space:
mode:
Diffstat (limited to 'config')
-rw-r--r--config/main.inc.php.dist25
1 files changed, 12 insertions, 13 deletions
diff --git a/config/main.inc.php.dist b/config/main.inc.php.dist
index 0cde47823..527210d10 100644
--- a/config/main.inc.php.dist
+++ b/config/main.inc.php.dist
@@ -246,11 +246,22 @@ $rcmail_config['javascript_config'] = array('read_when_deleted', 'flag_for_delet
// 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 *****/
// show up to X items in list view
@@ -271,12 +282,6 @@ $rcmail_config['htmleditor'] = FALSE;
// 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;
@@ -289,11 +294,5 @@ $rcmail_config['logout_purge'] = FALSE;
// 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
?>