diff options
author | Tobias Markmann <tm@ayena.de> | 2009-07-05 19:02:55 +0200 |
---|---|---|
committer | Tobias Markmann <tm@ayena.de> | 2009-07-05 19:02:55 +0200 |
commit | ef8c8fb19f409ea78cdbe301b8986666363fc5f8 (patch) | |
tree | 5da7cc655e505defe2adc045666906b96d4de875 /util | |
parent | f80cf5ff5954613e579cb9079927cb3bd0038853 (diff) | |
download | prosody-ef8c8fb19f409ea78cdbe301b8986666363fc5f8.tar.gz prosody-ef8c8fb19f409ea78cdbe301b8986666363fc5f8.zip |
Move to-unicode conversion from mod_saslauth.lua to sasl.lua.
Diffstat (limited to 'util')
-rw-r--r-- | util/sasl.lua | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/util/sasl.lua b/util/sasl.lua index a343d608..3fd133d2 100644 --- a/util/sasl.lua +++ b/util/sasl.lua @@ -19,6 +19,7 @@ local st = require "util.stanza"; local generate_uuid = require "util.uuid".generate; local t_insert, t_concat = table.insert, table.concat; local to_byte, to_char = string.byte, string.char; +local to_unicode = require "util.encodings".idna.to_unicode; local s_match = string.match; local gmatch = string.gmatch local string = string @@ -199,7 +200,7 @@ local function new_digest_md5(realm, password_handler) --TODO maybe realm support self.username = response["username"]; - local password_encoding, Y = self.password_handler(response["username"], domain, response["realm"], "DIGEST-MD5", decoder); + local password_encoding, Y = self.password_handler(response["username"], to_unicode(domain), response["realm"], "DIGEST-MD5", decoder); if Y == nil then return "failure", "not-authorized" elseif Y == false then return "failure", "account-disabled" end local A1 = ""; |