Software /
code /
prosody
Diff
plugins/mod_saslauth.lua @ 6493:4e51b5e81bdd
mod_saslauth: Better name for config option
author | Kim Alvefur <zash@zash.se> |
---|---|
date | Tue, 21 Oct 2014 16:41:28 +0200 |
parent | 6492:0d07fdc07d8c |
child | 6517:e733e98a348a |
line wrap: on
line diff
--- a/plugins/mod_saslauth.lua Tue Oct 21 14:38:40 2014 +0200 +++ b/plugins/mod_saslauth.lua Tue Oct 21 16:41:28 2014 +0200 @@ -18,7 +18,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("allow_unencrypted_sasl", allow_unencrypted_plain_auth and {} or {"PLAIN", "LOGIN"}); +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 log = module._log;