summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorthomasb <thomasb@208e9e7b-5314-0410-a742-e7e81cd9613c>2011-07-17 17:27:36 +0000
committerthomasb <thomasb@208e9e7b-5314-0410-a742-e7e81cd9613c>2011-07-17 17:27:36 +0000
commitb876bf7dbf85f587c39baa1a11404df91ef76e4d (patch)
treed0b32d67fcb6c056f0deda7de13dbd1988e1ecca
parent23204ae61da4423ee407441bbbb90fdebd55d3f6 (diff)
Also configure alias of new user if specified
git-svn-id: https://svn.roundcube.net/trunk@4929 208e9e7b-5314-0410-a742-e7e81cd9613c
-rw-r--r--plugins/new_user_identity/new_user_identity.php11
1 files changed, 10 insertions, 1 deletions
diff --git a/plugins/new_user_identity/new_user_identity.php b/plugins/new_user_identity/new_user_identity.php
index e3659230b..2fc025b59 100644
--- a/plugins/new_user_identity/new_user_identity.php
+++ b/plugins/new_user_identity/new_user_identity.php
@@ -6,7 +6,7 @@
*
* This plugin requires that a working public_ldap directory be configured.
*
- * @version 1.01
+ * @version 1.02
* @author Kris Steinhoff
*
* Example configuration:
@@ -19,6 +19,10 @@
* // 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';
+ *
+ * // Use this field (from fieldmap configuration) to fill alias col of
+ * // the new user record.
+ * $rcmail_config['new_user_identity_alias'] = 'alias';
*/
class new_user_identity extends rcube_plugin
{
@@ -33,6 +37,8 @@ class new_user_identity extends rcube_plugin
function lookup_user_name($args)
{
+ $rcmail = rcmail::get_instance();
+
if ($this->init_ldap()) {
$results = $this->ldap->search('*', $args['user'], TRUE);
if (count($results->records) == 1) {
@@ -40,6 +46,9 @@ class new_user_identity extends rcube_plugin
if (!$args['user_email'] && strpos($results->records[0]['email'], '@')) {
$args['user_email'] = rcube_idn_to_ascii($results->records[0]['email']);
}
+ if (($alias_col = $rcmail->config->get('new_user_identity_alias')) && $results->records[0][$alias_col]) {
+ $args['alias'] = $results->records[0][$alias_col];
+ }
}
}
return $args;