| | |
| | | // The login name is used to search for the DN to bind with |
| | | 'search_base_dn' => '', |
| | | 'search_filter' => '', // e.g. '(&(objectClass=posixAccount)(uid=%u))' |
| | | // DN and password to bind as before searching for bind DN, if anonymous search is not allowed |
| | | 'search_bind_dn' => '', |
| | | 'search_bind_pw' => '', |
| | | // Default for %dn variable if search doesn't return DN value |
| | | 'search_dn_default' => '', |
| | | // Optional authentication identifier to be used as SASL authorization proxy |
| | |
| | | // show up to X items in list view |
| | | $rcmail_config['pagesize'] = 40; |
| | | |
| | | // sort contacts by this col (preferably either one of name, firstname, surname) |
| | | $rcmail_config['addressbook_sort_col'] = 'surname'; |
| | | |
| | | // use this timezone to display date/time |
| | | $rcmail_config['timezone'] = 'auto'; |
| | | |
| | | // is daylight saving On? |
| | | $rcmail_config['dst_active'] = (bool)date('I'); |
| | | // is daylight saving On? Default: (bool)date('I'); |
| | | $rcmail_config['dst_active'] = null; |
| | | |
| | | // prefer displaying HTML messages |
| | | $rcmail_config['prefer_html'] = true; |