Software /
code /
prosody
Diff
plugins/mod_saslauth.lua @ 6487:edc63dc72566
mod_legacyauth, mod_saslauth, mod_tls: Pass require_encryption as default option to s2s_require_encryption so the later overrides the former
author | Kim Alvefur <zash@zash.se> |
---|---|
date | Tue, 21 Oct 2014 12:49:03 +0200 |
parent | 6427:7653bbd5247e |
child | 6488:c91193b7e72c |
line wrap: on
line diff
--- a/plugins/mod_saslauth.lua Tue Oct 21 12:47:53 2014 +0200 +++ b/plugins/mod_saslauth.lua Tue Oct 21 12:49:03 2014 +0200 @@ -16,7 +16,7 @@ local usermanager_get_sasl_handler = require "core.usermanager".get_sasl_handler; local tostring = tostring; -local secure_auth_only = module:get_option("c2s_require_encryption") or module:get_option("require_encryption"); +local secure_auth_only = module:get_option("c2s_require_encryption", module:get_option("require_encryption")); local allow_unencrypted_plain_auth = module:get_option("allow_unencrypted_plain_auth") local log = module._log;