diff options
author | Matthew Wild <mwild1@gmail.com> | 2008-11-15 19:50:22 +0000 |
---|---|---|
committer | Matthew Wild <mwild1@gmail.com> | 2008-11-15 19:50:22 +0000 |
commit | e9de112af306218381314735676ffd399e2cda51 (patch) | |
tree | 8c5acc3ce158eaf3fd70b744255684fb7362ac32 /plugins/mod_saslauth.lua | |
parent | c076401aa7910e27e6695f685d6adf5c2322205d (diff) | |
download | prosody-e9de112af306218381314735676ffd399e2cda51.tar.gz prosody-e9de112af306218381314735676ffd399e2cda51.zip |
Comment out DIGEST-MD5 until it is fully implemented
Diffstat (limited to 'plugins/mod_saslauth.lua')
-rw-r--r-- | plugins/mod_saslauth.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/mod_saslauth.lua b/plugins/mod_saslauth.lua index 2a1485d0..2b48ccff 100644 --- a/plugins/mod_saslauth.lua +++ b/plugins/mod_saslauth.lua @@ -101,7 +101,7 @@ add_event_hook("stream-features", 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>"); |