core/usermanager.lua

changeset 2030
d9382a16af5b
parent 1589
812ae3be7bed
child 2031
e82ceb5bbe49
--- a/core/usermanager.lua	Wed Oct 21 11:29:43 2009 +0500
+++ b/core/usermanager.lua	Wed Oct 21 11:39:02 2009 +0500
@@ -66,8 +66,12 @@
 	return {["PLAIN"] = true, ["DIGEST-MD5"] = true}; -- TODO this should be taken from the config
 end
 
-function is_admin(jid)
-	local admins = config.get("*", "core", "admins");
+function is_admin(jid, host)
+	host = host or "*";
+	local admins = config.get(host, "core", "admins");
+	if host ~= "*" and admins == config.get("*", "core", "admins") then
+		return nil;
+	end
 	if type(admins) == "table" then
 		jid = jid_bare(jid);
 		for _,admin in ipairs(admins) do

mercurial