Use new cofig option reading API.
authorTobias Markmann <tm@ayena.de>
Thu, 19 Nov 2009 16:44:37 +0100
changeset 2208 2dc746323de6
parent 2207 7ef74b2be8f8
child 2209 adbedc32d41b
Use new cofig option reading API.
plugins/mod_saslauth.lua
--- a/plugins/mod_saslauth.lua	Thu Nov 19 16:43:38 2009 +0100
+++ b/plugins/mod_saslauth.lua	Thu Nov 19 16:44:37 2009 +0100
@@ -137,7 +137,7 @@
 				if secure_auth_only and not session.secure then
 					return;
 				end
-				if config.get(session.host or "*", "core", "anonymous_login") then
+				if module:get_option("anonymous_login") then
 					session.sasl_handler = new_sasl(session.host, anonymous_authentication_profile);
 				else
 					session.sasl_handler = new_sasl(session.host, default_authentication_profile);