diff options
author | Aleksander Machniak <alec@alec.pl> | 2012-08-11 10:57:24 +0200 |
---|---|---|
committer | Aleksander Machniak <alec@alec.pl> | 2012-08-11 14:53:14 +0200 |
commit | 51fcb01f0a86d148b470571c7e32dd089c9b090b (patch) | |
tree | 7f701085fa311400c2bfc6b720894ce7bc0b4d4e /config | |
parent | a8e478c07cd0a954e2d061b49a18ee9fc1552f6e (diff) |
Added separate From and To columns apart from smart From/To column (#1486891)
Conflicts:
CHANGELOG
program/steps/mail/check_recent.inc
program/steps/mail/func.inc
program/steps/mail/list.inc
program/steps/mail/mark.inc
program/steps/mail/move_del.inc
program/steps/mail/pagenav.inc
program/steps/mail/search.inc
skins/larry/mail.css
skins/larry/templates/mail.html
skins/larry/ui.js
Diffstat (limited to 'config')
-rw-r--r-- | config/main.inc.php.dist | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/config/main.inc.php.dist b/config/main.inc.php.dist index 1837a6390..7788c0b50 100644 --- a/config/main.inc.php.dist +++ b/config/main.inc.php.dist @@ -365,15 +365,15 @@ $rcmail_config['plugins'] = array(); // ---------------------------------- // default messages sort column. Use empty value for default server's sorting, -// or 'arrival', 'date', 'subject', 'from', 'to', 'size', 'cc' +// or 'arrival', 'date', 'subject', 'from', 'to', 'fromto', 'size', 'cc' $rcmail_config['message_sort_col'] = ''; // default messages sort order $rcmail_config['message_sort_order'] = 'DESC'; // These cols are shown in the message list. Available cols are: -// subject, from, to, cc, replyto, date, size, status, flag, attachment, 'priority' -$rcmail_config['list_cols'] = array('subject', 'status', 'from', 'date', 'size', 'flag', 'attachment'); +// subject, from, to, fromto, cc, replyto, date, size, status, flag, attachment, 'priority' +$rcmail_config['list_cols'] = array('subject', 'status', 'fromto', 'date', 'size', 'flag', 'attachment'); // the default locale setting (leave empty for auto-detection) // RFC1766 formatted language name like en_US, de_DE, de_CH, fr_FR, pt_BR |