# HG changeset patch # User Kim Alvefur # Date 1413888979 -7200 # Node ID c91193b7e72cd6cda8775e67eddec1dcee0f250f # Parent edc63dc7256688b05f02e374afdf37294e9837c0 mod_saslauth: Use type-specific config option getters diff -r edc63dc72566 -r c91193b7e72c plugins/mod_saslauth.lua --- 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;