aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/mod_auth_cyrus.lua
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/mod_auth_cyrus.lua')
-rw-r--r--plugins/mod_auth_cyrus.lua13
1 files changed, 13 insertions, 0 deletions
diff --git a/plugins/mod_auth_cyrus.lua b/plugins/mod_auth_cyrus.lua
index ed3d5408..2a52c8b5 100644
--- a/plugins/mod_auth_cyrus.lua
+++ b/plugins/mod_auth_cyrus.lua
@@ -27,6 +27,19 @@ local new_sasl = function(realm)
);
end
+do -- diagnostic
+ local realm = module:get_option("sasl_realm") or module.host;
+ local list;
+ for mechanism in pairs(new_sasl(realm):mechanisms()) do
+ list = (not(list) and mechanism) or (list..", "..mechanism);
+ end
+ if not list then
+ module:log("error", "No Cyrus SASL mechanisms available");
+ else
+ module:log("debug", "Available Cyrus SASL mechanisms: %s", list);
+ end
+end
+
function new_default_provider(host)
local provider = { name = "cyrus" };
log("debug", "initializing default authentication provider for host '%s'", host);