diff -r d2363643a5c0 -r d9382a16af5b core/usermanager.lua --- 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