# HG changeset patch # User Kim Alvefur # Date 1458298540 -3600 # Node ID b7dea8fd09c7c76b6db5d32358bac3bd64b68eef # Parent 7056bbaf81eeecd0951cf25d98a1e5aac2ca228f# Parent b34a42a10c9f365f52dc1d7baa61cff342f4be7d Merge diff -r b34a42a10c9f -r b7dea8fd09c7 plugins/mod_saslauth.lua --- a/plugins/mod_saslauth.lua Fri Mar 18 10:24:46 2016 +0000 +++ b/plugins/mod_saslauth.lua Fri Mar 18 11:55:40 2016 +0100 @@ -19,7 +19,7 @@ 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;