mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 13:47:41 +03:00
mod_saslauth: Remove 2 instances of raising errors and replacing with more graceful handling
This commit is contained in:
parent
a2b3659dd8
commit
5095f23e5d
1 changed files with 7 additions and 2 deletions
|
@ -41,7 +41,7 @@ local function build_reply(status, ret, err_msg)
|
|||
log("debug", "%s", ret or "");
|
||||
reply:text(base64.encode(ret or ""));
|
||||
else
|
||||
error("Unknown sasl status: "..status);
|
||||
module:log("error", "Unknown sasl status: %s", status);
|
||||
end
|
||||
return reply;
|
||||
end
|
||||
|
@ -50,7 +50,12 @@ 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 error("SASL succeeded but we didn't get a username!"); end -- TODO move this to sessionmanager
|
||||
if not session.sasl_handler.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;
|
||||
session:reset_stream();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue