mod_saslauth: Don't throw errors in async code when connections are gone

Fixes #1515
This commit is contained in:
tmolitor 2021-03-18 14:30:47 +01:00
parent 2b0c472f87
commit a7cc31c6bb

View file

@ -44,6 +44,7 @@ local function build_reply(status, ret, err_msg)
end
local function handle_status(session, status, ret, err_msg)
if session["sasl_handler"] == nil then return "failure", "connection-timeout", "Connection gone"; end
if status == "failure" then
module:fire_event("authentication-failure", { session = session, condition = ret, text = err_msg });
session.sasl_handler = session.sasl_handler:clean_clone();