[rt-users] autogenerated password bug

David J. Schnardthorst daves at wavesco.com
Thu Oct 7 12:55:09 EDT 2004


I have had the same experience and have since yanked the code out until
a solution can be found.

David J. Schnardthorst
Waves Corporation
Phone: 314.974.0932 / Fax: 636.410-0630
Email: daves at wavesco.com
http://www.wavesco.com



-----Original Message-----
From: rt-users-bounces at lists.bestpractical.com
[mailto:rt-users-bounces at lists.bestpractical.com] On Behalf Of Ed
Davison
Sent: Thursday, October 07, 2004 10:49 AM
To: rt-users at lists.bestpractical.com
Subject: [rt-users] autogenerated password bug


I have added the following code from the RTWiki to autogenerate a
password for a new user:

{

if (($Transaction->CreatorObj->id != $RT::Nobody->id) &&

(!$Transaction->CreatorObj->Privileged) &&
($Transaction->CreatorObj->__Value('Password') eq '*NO-PASSWORD*')
) {

    my $user = RT::User->new($RT::SystemUser);
    $user->Load($Transaction->CreatorObj->Id);
    my ($stat, $pass) = $user->SetRandomPassword();

    if (!$stat) {
            $OUT .=

"An internal error has occurred. RT was not able to set a password for
you. Please contact your local RT administrator for assistance.";

}

$out .= " You can check the current status and history of your requests
at:

".$RT::WebURL."

When prompted, enter the following username and password:

Username: ".$user->Name."
Password: ".$pass."

"; } } 


Now, once that was implemented, it seemed to work just fine.  But, then
I got a user reporting that he had gotten THREE username/password combos
in the same autoreply.  Checking into this I found that all of the users
in the email had created tickets in the system previously.  This is a
pretty big bug and has resulted in both the user and my department
director expressing concern over this bug.

In looking through the code, there are no where clauses and no splits
that I can see would account for multiple entries.

Any ideas why this would create THREE username/password entries in the
autoreply???

Ed Davison



_______________________________________________
http://lists.bestpractical.com/cgi-bin/mailman/listinfo/rt-users

Be sure to check out the RT wiki at http://wiki.bestpractical.com




More information about the rt-users mailing list