diff options
author | thomascube <thomas@roundcube.net> | 2005-10-26 22:12:36 +0000 |
---|---|---|
committer | thomascube <thomas@roundcube.net> | 2005-10-26 22:12:36 +0000 |
commit | b076a460e5418ae8f0db0b4b392d91853fd2a21b (patch) | |
tree | 2528fa73bddf1fe04f35192d611d2dd1f91d0671 /config | |
parent | fa3addfc5d03046cd173fde7e7875bad2badc6da (diff) |
Finished message sorting and fixed some skin issues
Diffstat (limited to 'config')
-rw-r--r-- | config/main.inc.php.dist | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/config/main.inc.php.dist b/config/main.inc.php.dist index 5031db47f..816c6184c 100644 --- a/config/main.inc.php.dist +++ b/config/main.inc.php.dist @@ -100,6 +100,13 @@ $rcmail_config['trash_mbox'] = 'Trash'; // display these folders separately in the mailbox list $rcmail_config['default_imap_folders'] = array('INBOX', 'Drafts', 'Sent', 'Junk', 'Trash'); +// default sort col +$rcmail_config['message_sort_col'] = 'date'; + +// default sort order +$rcmail_config['message_sort_order'] = 'DESC'; + + /***** these settings can be overwritten by user's preferences *****/ @@ -115,6 +122,5 @@ $rcmail_config['prefer_html'] = TRUE; // show pretty dates as standard $rcmail_config['prettydate'] = TRUE; - // end of config file ?> |