mod_saslauth: Log which mechanisms are offered

This commit is contained in:
Kim Alvefur 2017-12-21 10:15:47 +01:00
parent cf3af7a85c
commit 2d4c94e612

View file

@ -263,6 +263,7 @@ module:hook("stream-features", function(event)
elseif not origin.secure and insecure_mechanisms:contains(mechanism) then
log("debug", "Not offering mechanism %s on insecure connection", mechanism);
else
log("debug", "Offering mechanism %s", mechanism);
mechanisms:tag("mechanism"):text(mechanism):up();
end
end