diff options
author | Kim Alvefur <zash@zash.se> | 2014-10-21 12:56:19 +0200 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2014-10-21 12:56:19 +0200 |
commit | 82f50a212252a2683463a981e7b73abc8301627d (patch) | |
tree | 92e138056fdcb08e85d992ac5cb89f01749d1f5e | |
parent | fbd277b5c84d752c472348fd3527773ecffe3c48 (diff) | |
download | prosody-82f50a212252a2683463a981e7b73abc8301627d.tar.gz prosody-82f50a212252a2683463a981e7b73abc8301627d.zip |
mod_saslauth: Use type-specific config option getters
-rw-r--r-- | plugins/mod_saslauth.lua | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/mod_saslauth.lua b/plugins/mod_saslauth.lua index 1cd944b0..af3a5fec 100644 --- a/plugins/mod_saslauth.lua +++ b/plugins/mod_saslauth.lua @@ -16,8 +16,8 @@ local base64 = require "util.encodings".base64; local usermanager_get_sasl_handler = require "core.usermanager".get_sasl_handler; local tostring = tostring; -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 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 log = module._log; |