Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F3319429
new_user_identity.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Flag For Later
Award Token
Size
1 KB
Referenced Files
None
Subscribers
None
new_user_identity.php
View Options
<?php
/**
* New user identity
*
* Populates a new user's default identity from LDAP on their first visit.
*
* This plugin requires that a working public_ldap directory be configured.
*
* @version 1.0
* @author Kris Steinhoff
*
* Example configuration:
*
* // The id of the address book to use to automatically set a new
* // user's full name in their new identity. (This should be an
* // string, which refers to the $rcmail_config['ldap_public'] array.)
* $rcmail_config['new_user_identity_addressbook'] = 'People';
*
* // When automatically setting a new users's full name in their
* // new identity, match the user's login name against this field.
* $rcmail_config['new_user_identity_match'] = 'uid';
*/
class
new_user_identity
extends
rcube_plugin
{
function
init
()
{
$this
->
add_hook
(
'create_user'
,
array
(
$this
,
'lookup_user_name'
));
}
function
lookup_user_name
(
$args
)
{
$rcmail
=
rcmail
::
get_instance
();
if
(
$addressbook
=
$rcmail
->
config
->
get
(
'new_user_identity_addressbook'
))
{
$match
=
$rcmail
->
config
->
get
(
'new_user_identity_match'
);
$ldap
=
$rcmail
->
get_address_book
(
$addressbook
);
$ldap
->
prop
[
'search_fields'
]
=
array
(
$match
);
$results
=
$ldap
->
search
(
$match
,
$args
[
'user'
],
TRUE
);
if
(
count
(
$results
->
records
)
==
1
)
{
$args
[
'user_name'
]
=
$results
->
records
[
0
][
'name'
];
}
}
return
$args
;
}
}
?>
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Thu, Apr 9, 6:05 PM (1 d, 1 h)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
487191
Default Alt Text
new_user_identity.php (1 KB)
Attached To
Mode
R3 roundcubemail
Attached
Detach File
Event Timeline
Log In to Comment