diff options
| author | alec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2011-12-29 09:35:01 +0000 |
|---|---|---|
| committer | alec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2011-12-29 09:35:01 +0000 |
| commit | fae8674359063881ab6d2a62eba6bf815de290db (patch) | |
| tree | d252ab8881123334ddecac999f3f354642bd9780 /roundcubemail/config | |
| parent | 8f96f6d95ef85779395a46e558d6d412e4407ff7 (diff) | |
- Add separate pagesize setting for mail messages and contacts (#1488269)
git-svn-id: https://svn.roundcube.net/trunk@5662 208e9e7b-5314-0410-a742-e7e81cd9613c
Diffstat (limited to 'roundcubemail/config')
| -rw-r--r-- | roundcubemail/config/main.inc.php.dist | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/roundcubemail/config/main.inc.php.dist b/roundcubemail/config/main.inc.php.dist index 32d8a0da0..691c5be9e 100644 --- a/roundcubemail/config/main.inc.php.dist +++ b/roundcubemail/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'; |
