plugins/mod_saslauth.lua
changeset 6491 c91193b7e72c
parent 6490 edc63dc72566
child 6492 1f07c72112d2
--- 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;