Software /
code /
prosody
Diff
plugins/mod_saslauth.lua @ 294:5d861d6e5bbd
Made SASL module fit the new interface.
author | Tobias Markmann <tm@ayena.de> |
---|---|
date | Sat, 15 Nov 2008 22:30:09 +0100 |
parent | 293:b446de4e258e |
child | 297:15b375870b40 |
line wrap: on
line diff
--- a/plugins/mod_saslauth.lua Sun Nov 16 02:10:01 2008 +0500 +++ b/plugins/mod_saslauth.lua Sat Nov 15 22:30:09 2008 +0100 @@ -3,6 +3,7 @@ local send = require "core.sessionmanager".send_to_session; local sm_bind_resource = require "core.sessionmanager".bind_resource; local jid +local base64 = require "base64" local usermanager_validate_credentials = require "core.usermanager".validate_credentials; local t_concat, t_insert = table.concat, table.insert; @@ -101,7 +102,7 @@ t_insert(features, "<mechanisms xmlns='urn:ietf:params:xml:ns:xmpp-sasl'>"); -- TODO: Provide PLAIN only if TLS is active, this is a SHOULD from the introduction of RFC 4616. This behavior could be overridden via configuration but will issuing a warning or so. t_insert(features, "<mechanism>PLAIN</mechanism>"); - -- t_insert(features, "<mechanism>DIGEST-MD5</mechanism>"); + t_insert(features, "<mechanism>DIGEST-MD5</mechanism>"); t_insert(features, "</mechanisms>"); else t_insert(features, "<bind xmlns='urn:ietf:params:xml:ns:xmpp-bind'><required/></bind>");