mod_saslauth: Fire authentication-failure if make_authenticated() failed.

This commit is contained in:
Kim Alvefur 2012-02-12 15:08:12 +01:00
parent 6eaa0d2b86
commit 807c896ee6

View file

@ -60,6 +60,7 @@ local function handle_status(session, status, ret, err_msg)
session:reset_stream();
else
module:log("warn", "SASL succeeded but username was invalid");
module:fire_event("authentication-failure", { session = session, condition = "not-authorized", text = err });
session.sasl_handler = session.sasl_handler:clean_clone();
return "failure", "not-authorized", "User authenticated successfully, but username was invalid";
end