diff mod_auth_dovecot/mod_auth_dovecot.lua @ 342:8e9e5c7d97ff

mod_auth_*: Get rid of undocumented and broken 'sasl_realm' config option.
author Waqas Hussain <waqas20@gmail.com>
date Wed, 23 Feb 2011 01:36:46 +0500
parents 5d306466f3f6
children abac17cb5032
line wrap: on
line diff
--- a/mod_auth_dovecot/mod_auth_dovecot.lua	Wed Feb 16 22:04:55 2011 +0000
+++ b/mod_auth_dovecot/mod_auth_dovecot.lua	Wed Feb 23 01:36:46 2011 +0500
@@ -208,7 +208,6 @@
 	end
 
 	function provider.get_sasl_handler()
-		local realm = module:get_option("sasl_realm") or module.host;
 		local getpass_authentication_profile = {
 			plain_test = function(sasl, username, password, realm)
 			local prepped_username = nodeprep(username);
@@ -219,7 +218,7 @@
 			return usermanager.test_password(prepped_username, realm, password), true;
 		end
 		};
-		return new_sasl(realm, getpass_authentication_profile);
+		return new_sasl(module.host, getpass_authentication_profile);
 	end
 	
 	return provider;