Software /
code /
prosody
Changeset
6488:c91193b7e72c
mod_saslauth: Use type-specific config option getters
author | Kim Alvefur <zash@zash.se> |
---|---|
date | Tue, 21 Oct 2014 12:56:19 +0200 |
parents | 6487:edc63dc72566 |
children | 6489:1f07c72112d2 |
files | plugins/mod_saslauth.lua |
diffstat | 1 files changed, 2 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/plugins/mod_saslauth.lua Tue Oct 21 12:49:03 2014 +0200 +++ b/plugins/mod_saslauth.lua Tue Oct 21 12:56:19 2014 +0200 @@ -16,8 +16,8 @@ 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;