diff options
author | thomascube <thomas@roundcube.net> | 2012-02-11 11:28:58 +0000 |
---|---|---|
committer | thomascube <thomas@roundcube.net> | 2012-02-11 11:28:58 +0000 |
commit | f9a967763e2a4cc595b44f40ac1ca666b2a02af6 (patch) | |
tree | acf8a043fe90dbe860888402f718608eaaee8344 /config/main.inc.php.dist | |
parent | d3ec72522b44e3c8d5ff29edecde866a9199f921 (diff) |
User configurable setting how to display contact names in list
Diffstat (limited to 'config/main.inc.php.dist')
-rw-r--r-- | config/main.inc.php.dist | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/config/main.inc.php.dist b/config/main.inc.php.dist index 73967fb6f..be82a5f62 100644 --- a/config/main.inc.php.dist +++ b/config/main.inc.php.dist @@ -667,6 +667,13 @@ $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 |