Mercurial > prosody-modules
view mod_log_sasl_mech/mod_log_sasl_mech.lua @ 2914:0d2d4d5bb5f5
[mod_mam] Fix hook priority for local clients, too (see also commit 2af42a3af131)
author | tmolitor <thilo@eightysoft.de> |
---|---|
date | Wed, 07 Mar 2018 22:21:43 +0100 |
parents | 4baaa5a66a5a |
children | 5ff8022466ab |
line wrap: on
line source
module:hook("authentication-success", function (event) local session = event.session; local sasl_handler = session.sasl_handler; session.log("info", "Authenticated with %s", sasl_handler and sasl_handler.selected or "legacy auth"); end);