Diff

plugins/sasl.lua @ 456:6a65142052c8

sasl: Include offered mechanisms in event when no supported mechanisms found This allows consumers of the event to determine what may be required in order to successfully authenticate.
author Matthew Wild <mwild1@gmail.com>
date Fri, 03 Mar 2023 12:10:54 +0000
parent 395:e86144a4eaa1
child 467:8e6a7a5e70b3
line wrap: on
line diff
--- a/plugins/sasl.lua	Wed Aug 03 03:07:16 2022 +0200
+++ b/plugins/sasl.lua	Fri Mar 03 12:10:54 2023 +0000
@@ -32,7 +32,7 @@
 			table.insert(supported, mech);
 		end
 		if not supported[1] then
-			stream:event("authentication-failure", { condition = "no-supported-sasl-mechanisms" });
+			stream:event("authentication-failure", { condition = "no-supported-sasl-mechanisms", mechanisms = mechanisms });
 			stream:close();
 			return;
 		end