aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTobias Markmann <tm@ayena.de>2009-09-06 22:07:59 +0200
committerTobias Markmann <tm@ayena.de>2009-09-06 22:07:59 +0200
commit9be45d05d6ec13ec468e2fcbe5da1ef8791af141 (patch)
treecfec31be221c13ab56573a71dfde18d536c33405
parentae3ee66fa190a3c0458ad00fc20470805b3dbf92 (diff)
downloadprosody-9be45d05d6ec13ec468e2fcbe5da1ef8791af141.tar.gz
prosody-9be45d05d6ec13ec468e2fcbe5da1ef8791af141.zip
Add NODEprepping to SASL Digest-MD5 authentication handling.
-rw-r--r--plugins/mod_saslauth.lua6
1 files changed, 5 insertions, 1 deletions
diff --git a/plugins/mod_saslauth.lua b/plugins/mod_saslauth.lua
index da66717c..6051bf9d 100644
--- a/plugins/mod_saslauth.lua
+++ b/plugins/mod_saslauth.lua
@@ -84,7 +84,11 @@ local function credentials_callback(mechanism, ...)
elseif mechanism == "DIGEST-MD5" then
function func(x) return x; end
local node, domain, realm, decoder = ...;
- local password = usermanager_get_password(node, domain);
+ local prepped_node = nodeprep(node);
+ if not prepped_node then
+ return func, nil;
+ end
+ local password = usermanager_get_password(prepped_node, domain);
if password then
if decoder then
node, realm, password = decoder(node), decoder(realm), decoder(password);