diff options
author | Waqas Hussain <waqas20@gmail.com> | 2011-02-23 01:22:04 +0500 |
---|---|---|
committer | Waqas Hussain <waqas20@gmail.com> | 2011-02-23 01:22:04 +0500 |
commit | a486ce828ec6431e701b7d4fbb9e3ad1ceda48e3 (patch) | |
tree | 33e1dd1d7379c62cd42b9c5ec00c53b529a53e9b | |
parent | 933cd7fc672c2eff37b76043cedfd438afc46ca8 (diff) | |
download | prosody-a486ce828ec6431e701b7d4fbb9e3ad1ceda48e3.tar.gz prosody-a486ce828ec6431e701b7d4fbb9e3ad1ceda48e3.zip |
mod_auth_cyrus: Print some diagnostic log messages about the available mechanisms.
-rw-r--r-- | plugins/mod_auth_cyrus.lua | 13 |
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); |