Roundcube Community Forum

Release Support => Requests => Topic started by: Arabian on October 04, 2006, 06:49:30 PM

Title: mesgs disaply option
Post by: Arabian on October 04, 2006, 06:49:30 PM
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
Title: Re: mesgs disaply option
Post by: KingOfN00bz on October 25, 2006, 06:05:05 AM
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');