Author Topic: mesgs disaply option  (Read 4287 times)

Offline Arabian

  • Jr. Member
  • **
  • Posts: 10
mesgs disaply option
« 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

Offline KingOfN00bz

  • Newbie
  • *
  • Posts: 7
Re: mesgs disaply option
« Reply #1 on: October 25, 2006, 06:05:05 AM »
in config/main.inc.php

search for

Code: [Select]
// these cols are shown in the message list
// available cols are: subject, from, to, cc, replyto, date, size, encoding

in the following line

Code: [Select]
$rcmail_config['list_cols'] = array('subject', 'from', 'date', 'size');

define your preferred order, in your case

Code: [Select]
$rcmail_config['list_cols'] = array('from', 'subject', 'date', 'size');