Changeset

4053:3d0f54f3906a

prosody: Don't add a datamanager callback when anonymous_login=true (mod_auth_anonymous does this now).
author Waqas Hussain <waqas20@gmail.com>
date Tue, 28 Dec 2010 09:59:27 +0500
parents 4052:1b9e691d2f47
children 4054:6011dee889b2
files prosody
diffstat 1 files changed, 0 insertions(+), 6 deletions(-) [+]
line wrap: on
line diff
--- a/prosody	Tue Dec 28 09:58:40 2010 +0500
+++ b/prosody	Tue Dec 28 09:59:27 2010 +0500
@@ -334,12 +334,6 @@
 function init_data_store()
 	local data_path = config.get("*", "core", "data_path") or CFG_DATADIR or "data";
 	require "util.datamanager".set_data_path(data_path);
-	require "util.datamanager".add_callback(function(username, host, datastore, data)
-		if config.get(host, "core", "anonymous_login") then
-			return false;
-		end
-		return username, host, datastore, data;
-	end);
 	require "core.storagemanager";
 end