diff plugins/mod_saslauth.lua @ 3178:46f5ed897beb

mod_saslauth: Fix log level
author Matthew Wild <mwild1@gmail.com>
date Fri, 04 Jun 2010 13:55:39 +0100
parents 546695e80e0a
children c690e3c5105c
line wrap: on
line diff
--- a/plugins/mod_saslauth.lua	Fri Jun 04 13:54:15 2010 +0100
+++ b/plugins/mod_saslauth.lua	Fri Jun 04 13:55:39 2010 +0100
@@ -200,7 +200,7 @@
 			elseif usermanager_get_provider(realm).test_password then
 				origin.sasl_handler = new_sasl(realm, testpass_authentication_profile);
 			else
-				log("warning", "AUTH: Could not load an authentication profile for the given provider.");
+				log("warn", "AUTH: Could not load an authentication profile for the given provider.");
 			end
 			if not (module:get_option("allow_unencrypted_plain_auth")) and not origin.secure then
 				origin.sasl_handler:forbidden({"PLAIN"});