mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 05:07:42 +03:00
mod_saslauth: Fire event per SASL step
This matches the behaviour of the newer mod_sasl2 implementation. It allows plugins to observe (and potentially, with caution, modify) the SASL exchange.
This commit is contained in:
parent
e03fe2ebe3
commit
c35307551b
1 changed files with 5 additions and 2 deletions
|
@ -87,9 +87,12 @@ local function sasl_process_cdata(session, stanza)
|
|||
return true;
|
||||
end
|
||||
end
|
||||
local status, ret, err_msg = session.sasl_handler:process(text);
|
||||
local sasl_handler = session.sasl_handler;
|
||||
local status, ret, err_msg = sasl_handler:process(text);
|
||||
status, ret, err_msg = handle_status(session, status, ret, err_msg);
|
||||
local s = build_reply(status, ret, err_msg);
|
||||
local event = { session = session, message = ret, error_text = err_msg };
|
||||
module:fire_event("sasl/"..session.base_type.."/"..status, event);
|
||||
local s = build_reply(status, event.message, event.error_text);
|
||||
session.send(s);
|
||||
return true;
|
||||
end
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue