diff options
author | Matthew Wild <mwild1@gmail.com> | 2016-03-18 14:03:35 +0000 |
---|---|---|
committer | Matthew Wild <mwild1@gmail.com> | 2016-03-18 14:03:35 +0000 |
commit | 8c0392226672520d8a4a59e7f2544a2d4297d739 (patch) | |
tree | cc8a353f9fd1d39993e99256dd784e813d0e4153 /plugins/mod_saslauth.lua | |
parent | 401fde4ef607e993432c50ee2b23e6b34a5746ea (diff) | |
parent | 3b6bbde55c734ea709db7dbb3d7e293fa6440220 (diff) | |
download | prosody-8c0392226672520d8a4a59e7f2544a2d4297d739.tar.gz prosody-8c0392226672520d8a4a59e7f2544a2d4297d739.zip |
Merge 0.10->trunk
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 7e9b0720..bb36600b 100644 --- a/plugins/mod_saslauth.lua +++ b/plugins/mod_saslauth.lua @@ -19,7 +19,7 @@ local tostring = tostring; local secure_auth_only = module:get_option_boolean("c2s_require_encryption", module:get_option_boolean("require_encryption", false)); local allow_unencrypted_plain_auth = module:get_option_boolean("allow_unencrypted_plain_auth", false) local insecure_mechanisms = module:get_option_set("insecure_sasl_mechanisms", allow_unencrypted_plain_auth and {} or {"PLAIN", "LOGIN"}); -local disabled_mechanisms = module:get_option_set("disable_sasl_mechanisms", {}); +local disabled_mechanisms = module:get_option_set("disable_sasl_mechanisms", { "DIGEST-MD5" }); local log = module._log; |