| | |
| | | // send plaintext messages as format=flowed |
| | | $rcmail_config['send_format_flowed'] = true; |
| | | |
| | | // According to RFC2298, return receipt envelope sender address must be empty. |
| | | // If this option is true, Roundcube will use user's identity as envelope sender for MDN responses. |
| | | $rcmail_config['mdn_use_from'] = false; |
| | | |
| | | // Set identities access level: |
| | | // 0 - many identities with possibility to edit all params |
| | | // 1 - many identities with possibility to edit all params but not email address |
| | |
| | | 'port' => 389, |
| | | 'use_tls' => false, |
| | | 'ldap_version' => 3, // using LDAPv3 |
| | | 'network_timeout' => 10, // The timeout (in seconds) for connect + bind arrempts. This is only supported in PHP >= 5.3.0 with OpenLDAP 2.x |
| | | 'user_specific' => false, // If true the base_dn, bind_dn and bind_pass default to the user's IMAP login. |
| | | // %fu - The full username provided, assumes the username is an email |
| | | // address, uses the username_domain value if not an email address. |
| | |
| | | 'phone:work' => 'telephoneNumber', |
| | | 'phone:mobile' => 'mobile', |
| | | 'phone:pager' => 'pager', |
| | | 'phone:workfax' => 'facsimileTelephoneNumber', |
| | | 'street' => 'street', |
| | | 'zipcode' => 'postalCode', |
| | | 'region' => 'st', |
| | |
| | | 'department' => 'ou', |
| | | 'jobtitle' => 'title', |
| | | 'notes' => 'description', |
| | | 'photo' => 'jpegPhoto', |
| | | // these currently don't work: |
| | | // 'phone:workfax' => 'facsimileTelephoneNumber', |
| | | // 'photo' => 'jpegPhoto', |
| | | // 'manager' => 'manager', |
| | | // 'assistant' => 'secretary', |
| | | ), |
| | |
| | | 'object_classes' => array("top", "groupOfNames"), |
| | | 'member_attr' => 'member', // name of the member attribute, e.g. uniqueMember |
| | | 'name_attr' => 'cn', // attribute to be used as group name |
| | | 'member_filter' => '(objectclass=*)', // optional filter to use when querying for group members |
| | | ), |
| | | // this configuration replaces the regular groups listing in the directory tree with |
| | | // a hard-coded list of groups, each listing entries with the configured base DN and filter. |
| | | // if the 'groups' option from above is set, it'll be shown as the first entry with the name 'Groups' |
| | | 'group_filters' => array( |
| | | 'departments' => array( |
| | | 'name' => 'Company Departments', |
| | | 'scope' => 'list', |
| | | 'base_dn' => 'ou=Groups,dc=mydomain,dc=com', |
| | | 'filter' => '(|(objectclass=groupofuniquenames)(objectclass=groupofurls))', |
| | | ), |
| | | 'customers' => array( |
| | | 'name' => 'Customers', |
| | | 'scope' => 'sub', |
| | | 'base_dn' => 'ou=Customers,dc=mydomain,dc=com', |
| | | 'filter' => '(objectClass=inetOrgPerson)', |
| | | ), |
| | | ), |
| | | ); |
| | | */ |