]> git.donarmstrong.com Git - roundcube.git/blob - plugins/new_user_identity/new_user_identity.php
Imported Upstream version 0.3.1
[roundcube.git] / plugins / new_user_identity / new_user_identity.php
1 <?php
2 /**
3  * New user identity
4  *
5  * Populates a new user's default identity from LDAP on their first visit.
6  *
7  * This plugin requires that a working public_ldap directory be configured.
8  *
9  * @version 1.0
10  * @author Kris Steinhoff
11  *
12  * Example configuration:
13  *
14  *  // The id of the address book to use to automatically set a new
15  *  // user's full name in their new identity. (This should be an
16  *  // string, which refers to the $rcmail_config['ldap_public'] array.)
17  *  $rcmail_config['new_user_identity_addressbook'] = 'People';
18  *  
19  *  // When automatically setting a new users's full name in their
20  *  // new identity, match the user's login name against this field.
21  *  $rcmail_config['new_user_identity_match'] = 'uid';
22  */
23 class new_user_identity extends rcube_plugin
24 {
25     function init()
26     {
27         $this->add_hook('create_user', array($this, 'lookup_user_name'));
28     }
29
30     function lookup_user_name($args)
31     {
32         $rcmail = rcmail::get_instance();
33         if ($addressbook = $rcmail->config->get('new_user_identity_addressbook')) {
34             $match = $rcmail->config->get('new_user_identity_match');
35             $ldap = $rcmail->get_address_book($addressbook);
36             $ldap->prop['search_fields'] = array($match);
37             $results = $ldap->search($match, $args['user'], TRUE);
38             if (count($results->records) == 1) {
39                 $args['user_name'] = $results->records[0]['name'];
40             }
41         }
42         return $args;
43     }
44 }
45 ?>