Hello,
It would be great if you add the ability for the users and the options for the admin to choose how msgs displayed.
For example:
now it's : Subject Sender Name Date Size
I would like it to have it in this order:
Sender Name Subject Date Size
Best Regards,
-Arabian
in config/main.inc.php
search for
// these cols are shown in the message list
// available cols are: subject, from, to, cc, replyto, date, size, encoding
in the following line
$rcmail_config['list_cols'] = array('subject', 'from', 'date', 'size');
define your preferred order, in your case
$rcmail_config['list_cols'] = array('from', 'subject', 'date', 'size');