mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 21:57:45 +03:00
mod_saslauth: Prep username used for authenticating a session
This commit is contained in:
parent
e094c8b08b
commit
d937a3e043
1 changed files with 4 additions and 4 deletions
|
@ -52,14 +52,14 @@ local function handle_status(session, status)
|
|||
if status == "failure" then
|
||||
session.sasl_handler = nil;
|
||||
elseif status == "success" then
|
||||
if not session.sasl_handler.username then -- TODO move this to sessionmanager
|
||||
local username = nodeprep(session.sasl_handler.username);
|
||||
session.sasl_handler = nil;
|
||||
if not username then -- TODO move this to sessionmanager
|
||||
module:log("warn", "SASL succeeded but we didn't get a username!");
|
||||
session.sasl_handler = nil;
|
||||
session:reset_stream();
|
||||
return;
|
||||
end
|
||||
sm_make_authenticated(session, session.sasl_handler.username);
|
||||
session.sasl_handler = nil;
|
||||
sm_make_authenticated(session, username);
|
||||
session:reset_stream();
|
||||
end
|
||||
end
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue