0
|
1 <?php
|
|
2
|
|
3 // The id of the address book to use to automatically set a
|
|
4 // user's full name in their new identity. (This should be an
|
|
5 // string, which refers to the $config['ldap_public'] array.)
|
|
6 $config['new_user_identity_addressbook'] = 'People';
|
|
7
|
|
8 // When automatically setting a user's full name in their
|
|
9 // new identity, match the user's login name against this field.
|
|
10 $config['new_user_identity_match'] = 'uid';
|
|
11
|
|
12 // Determine whether to import user's identities on each login.
|
|
13 // New user identity will be created for each e-mail address
|
|
14 // present in address book, but not assigned to any identity.
|
|
15 $config['new_user_identity_onlogin'] = false;
|