From ee2187e1b151c27fbf2b6854634fc4fd90f0ebd1 Mon Sep 17 00:00:00 2001 From: Aleksander Machniak Date: Tue, 7 Aug 2012 11:54:37 +0200 Subject: Fix errors after removing users.alias column (#1488581) --- plugins/new_user_identity/new_user_identity.php | 9 +-------- plugins/new_user_identity/package.xml | 6 +++--- plugins/password/drivers/virtualmin.php | 4 ---- plugins/squirrelmail_usercopy/config.inc.php.dist | 2 +- program/include/rcube_user.php | 5 ++--- 5 files changed, 7 insertions(+), 19 deletions(-) diff --git a/plugins/new_user_identity/new_user_identity.php b/plugins/new_user_identity/new_user_identity.php index 7b67578bf..f3dae20a3 100644 --- a/plugins/new_user_identity/new_user_identity.php +++ b/plugins/new_user_identity/new_user_identity.php @@ -19,10 +19,6 @@ * // 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 { @@ -38,7 +34,7 @@ class new_user_identity extends rcube_plugin function lookup_user_name($args) { $rcmail = rcmail::get_instance(); - + if ($this->init_ldap($args['host'])) { $results = $this->ldap->search('*', $args['user'], TRUE); if (count($results->records) == 1) { @@ -46,9 +42,6 @@ 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; diff --git a/plugins/new_user_identity/package.xml b/plugins/new_user_identity/package.xml index 95f1dc0dc..7d9d20d39 100644 --- a/plugins/new_user_identity/package.xml +++ b/plugins/new_user_identity/package.xml @@ -15,10 +15,10 @@ alec@alec.pl yes - 2011-11-21 + 2012-08-07 - 1.0.5 - 1.0 + 1.0.6 + 1.1 stable diff --git a/plugins/password/drivers/virtualmin.php b/plugins/password/drivers/virtualmin.php index f6b9bd412..b2547e07f 100644 --- a/plugins/password/drivers/virtualmin.php +++ b/plugins/password/drivers/virtualmin.php @@ -48,10 +48,6 @@ class rcube_virtualmin_password $pieces = explode("_", $username); $domain = $pieces[0]; break; - case 8: // domain taken from alias, username left as it was - $email = $rcmail->user->data['alias']; - $domain = substr(strrchr($email, "@"), 1); - break default: // username@domain $domain = substr(strrchr($username, "@"), 1); } diff --git a/plugins/squirrelmail_usercopy/config.inc.php.dist b/plugins/squirrelmail_usercopy/config.inc.php.dist index 0dc0abb02..cb62b1b86 100644 --- a/plugins/squirrelmail_usercopy/config.inc.php.dist +++ b/plugins/squirrelmail_usercopy/config.inc.php.dist @@ -22,4 +22,4 @@ $rcmail_config['squirrelmail_identities_level'] = null; // Set to false if you don't want the email address of the default identity // (squirrelmail preference "email_address") to be saved as alias. // Recommended: set to false if your squirrelmail config setting $edit_identity has been true. -$rcmail_config['squirrelmail_set_alias'] = true; +$rcmail_config['squirrelmail_set_alias'] = true; \ No newline at end of file diff --git a/program/include/rcube_user.php b/program/include/rcube_user.php index d5421526b..a54cbd79c 100644 --- a/program/include/rcube_user.php +++ b/program/include/rcube_user.php @@ -456,11 +456,10 @@ class rcube_user $dbh->query( "INSERT INTO ".$dbh->table_name('users'). - " (created, last_login, username, mail_host, alias, language)". - " VALUES (".$dbh->now().", ".$dbh->now().", ?, ?, ?, ?)", + " (created, last_login, username, mail_host, language)". + " VALUES (".$dbh->now().", ".$dbh->now().", ?, ?, ?)", strip_newlines($user), strip_newlines($host), - strip_newlines($data['alias'] ? $data['alias'] : $user_email), strip_newlines($data['language'] ? $data['language'] : $_SESSION['language'])); if ($user_id = $dbh->insert_id('users')) { -- cgit v1.2.3