plugins/mod_saslauth.lua
changeset 7943 e520dc0c3af4
parent 7902 2b3d0ab67f7d
parent 7942 6940d6db970b
child 7963 9a938b785bc5
--- a/plugins/mod_saslauth.lua	Thu Mar 02 03:03:25 2017 +0100
+++ b/plugins/mod_saslauth.lua	Thu Mar 02 15:21:07 2017 +0100
@@ -96,8 +96,19 @@
 module:hook_stanza(xmlns_sasl, "failure", function (session, stanza)
 	if session.type ~= "s2sout_unauthed" or session.external_auth ~= "attempting" then return; end
 
-	module:log("info", "SASL EXTERNAL with %s failed", session.to_host)
-	-- TODO: Log the failure reason
+	local text = stanza:get_child_text("text");
+	local condition = "unknown-condition";
+	for child in stanza:childtags() do
+		if child.name ~= "text" then
+			condition = child.name;
+			break;
+		end
+	end
+	if text and condition then
+		condition = connection .. ": " .. text;
+	end
+	module:log("info", "SASL EXTERNAL with %s failed: %s", session.to_host, condition);
+
 	session.external_auth = "failed"
 	session:close();
 	return true;