diff options
author | alecpl <alec@alec.pl> | 2011-12-29 09:35:01 +0000 |
---|---|---|
committer | alecpl <alec@alec.pl> | 2011-12-29 09:35:01 +0000 |
commit | 08ffd939a7530c44cd68b455f75175f79698073c (patch) | |
tree | ff3d5dcfef837d47e2a9b5873ef4a864f9da0e4a /config | |
parent | 81c2ce9b7b670b05de21f5dcc4be50b70c12fcfc (diff) |
- Add separate pagesize setting for mail messages and contacts (#1488269)
Diffstat (limited to 'config')
-rw-r--r-- | config/main.inc.php.dist | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/config/main.inc.php.dist b/config/main.inc.php.dist index 32d8a0da0..691c5be9e 100644 --- a/config/main.inc.php.dist +++ b/config/main.inc.php.dist @@ -654,8 +654,11 @@ $rcmail_config['default_charset'] = 'ISO-8859-1'; // skin name: folder from skins/ $rcmail_config['skin'] = 'default'; -// show up to X items in list view -$rcmail_config['pagesize'] = 40; +// show up to X items in messages list view +$rcmail_config['mail_pagesize'] = 50; + +// show up to X items in contacts list view +$rcmail_config['addressbook_pagesize'] = 50; // use this timezone to display date/time $rcmail_config['timezone'] = 'auto'; |