plugins/mod_auth_internal_plain.lua
changeset 4160 f08f649b898b
parent 3994 42899d5efe3b
child 4603 6900c9484834
--- a/plugins/mod_auth_internal_plain.lua	Wed Feb 23 01:22:04 2011 +0500
+++ b/plugins/mod_auth_internal_plain.lua	Wed Feb 23 01:34:46 2011 +0500
@@ -68,7 +68,6 @@
 	end
 
 	function provider.get_sasl_handler()
-		local realm = module:get_option("sasl_realm") or module.host;
 		local getpass_authentication_profile = {
 			plain = function(sasl, username, realm)
 				local prepped_username = nodeprep(username);
@@ -83,7 +82,7 @@
 				return password, true;
 			end
 		};
-		return new_sasl(realm, getpass_authentication_profile);
+		return new_sasl(module.host, getpass_authentication_profile);
 	end
 	
 	return provider;