aboutsummaryrefslogtreecommitdiffstats
path: root/plugins
diff options
context:
space:
mode:
authorMatthew Wild <mwild1@gmail.com>2008-11-15 19:50:22 +0000
committerMatthew Wild <mwild1@gmail.com>2008-11-15 19:50:22 +0000
commite9de112af306218381314735676ffd399e2cda51 (patch)
tree8c5acc3ce158eaf3fd70b744255684fb7362ac32 /plugins
parentc076401aa7910e27e6695f685d6adf5c2322205d (diff)
downloadprosody-e9de112af306218381314735676ffd399e2cda51.tar.gz
prosody-e9de112af306218381314735676ffd399e2cda51.zip
Comment out DIGEST-MD5 until it is fully implemented
Diffstat (limited to 'plugins')
-rw-r--r--plugins/mod_saslauth.lua2
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>");