Is this code in Handler.pm doing the most reasonable thing? The way it
works now, if you have a rewrite username that lowercases, people can
log in muliple times with username, Username, USERNAME, etc.
In our environment, they can also log in multiple times with username and
[EMAIL PROTECTED]
# Get the username before any rewriting. Need this to
# match users in the session database
my $original_username = $p->{OriginalUserName};
...
$sessdb->add($original_username, $nas_id, $nas_port, $p);
Locally I'll probably change it to something like...
my $original_username = $p->getUserName;
PLEASE CC ME ON ANY REPLIES.
-a
===
Archive at http://www.starport.net/~radiator/
Announcements on [EMAIL PROTECTED]
To unsubscribe, email '[EMAIL PROTECTED]' with
'unsubscribe radiator' in the body of the message.