| | |
| | | | | |
| | | | This file is part of the Roundcube Webmail client | |
| | | | Copyright (C) 2005-2011, The Roundcube Dev Team | |
| | | | Licensed under the GNU GPL | |
| | | | | |
| | | | Licensed under the GNU General Public License version 3 or | |
| | | | any later version with exceptions for skins & plugins. | |
| | | | See the README file for a full license statement. | |
| | | | | |
| | | +-----------------------------------------------------------------------+ |
| | | |
| | |
| | | // show up to X items in contacts list view |
| | | $rcmail_config['addressbook_pagesize'] = 50; |
| | | |
| | | // sort contacts by this col (preferably either one of name, firstname, surname) |
| | | $rcmail_config['addressbook_sort_col'] = 'surname'; |
| | | |
| | | // the way how contact names are displayed in the list |
| | | // 0: display name |
| | | // 1: (prefix) firstname middlename surname (suffix) |
| | | // 2: (prefix) surname firstname middlename (suffix) |
| | | // 3: (prefix) surname, firstname middlename (suffix) |
| | | $rcmail_config['addressbook_name_listing'] = 0; |
| | | |
| | | // use this timezone to display date/time |
| | | // valid timezone identifers are listed here: php.net/manual/en/timezones.php |
| | | // 'auto' will use the browser's timezone settings |