Making sure the node is in unicode when passing it to password lookup function.

Wed, 01 Jul 2009 15:14:44 +0200

author
Tobias Markmann <tm@ayena.de>
date
Wed, 01 Jul 2009 15:14:44 +0200
changeset 1449
6a90316a81c3
parent 1448
700ea94e1769
child 1450
c1c7b27b983b
child 1484
80e4f1d731c2

Making sure the node is in unicode when passing it to password lookup function.

plugins/mod_saslauth.lua file | annotate | diff | comparison | revisions
--- a/plugins/mod_saslauth.lua	Mon Jun 29 14:13:49 2009 +0100
+++ b/plugins/mod_saslauth.lua	Wed Jul 01 15:14:44 2009 +0200
@@ -12,6 +12,7 @@
 local sm_bind_resource = require "core.sessionmanager".bind_resource;
 local sm_make_authenticated = require "core.sessionmanager".make_authenticated;
 local base64 = require "util.encodings".base64;
+local to_unicode = require "util.encodings".idna.to_unicode;
 
 local datamanager_load = require "util.datamanager".load;
 local usermanager_validate_credentials = require "core.usermanager".validate_credentials;
@@ -65,7 +66,7 @@
 end
 
 local function password_callback(node, hostname, realm, mechanism, decoder)
-	local password = (datamanager_load(node, hostname, "accounts") or {}).password; -- FIXME handle hashed passwords
+	local password = (datamanager_load(node, to_unicode(hostname), "accounts") or {}).password; -- FIXME handle hashed passwords
 	local func = function(x) return x; end;
 	if password then
 		if mechanism == "PLAIN" then

mercurial