# HG changeset patch # User Waqas Hussain # Date 1298406124 -18000 # Node ID 6f509033f855a836f55a15593900e91e00f55c72 # Parent ab1a0ffbfdf576f12bf207bebdb54e572233a4bd mod_auth_cyrus: Print some diagnostic log messages about the available mechanisms. diff -r ab1a0ffbfdf5 -r 6f509033f855 plugins/mod_auth_cyrus.lua --- a/plugins/mod_auth_cyrus.lua Tue Feb 22 18:37:29 2011 +0000 +++ b/plugins/mod_auth_cyrus.lua Wed Feb 23 01:22:04 2011 +0500 @@ -27,6 +27,19 @@ ); 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);