Commented a buggy check

This commit is contained in:
Waqas Hussain 2008-11-04 17:43:48 +05:00
parent 0ee447e39f
commit 6f9e33247c

View file

@ -61,12 +61,14 @@ function core_process_stanza(origin, stanza)
if origin.type == "s2sin" then
if origin.host ~= from_host then -- remote server trying to impersonate some other server?
log("warn", "origin.host ~= from_host");
return; -- FIXME what should we do here? does this work with subdomains?
end
end
if to and not(hosts[to]) and not(hosts[to_bare]) and (not(hosts[host]) or hosts[host].type ~= "local") then -- not for us?
--[[if to and not(hosts[to]) and not(hosts[to_bare]) and (hosts[host] and hosts[host].type ~= "local") then -- not for us?
log("warn", "stanza recieved for a non-local server");
return; -- FIXME what should we do here?
end
end]] -- FIXME
-- FIXME do stanzas not of jabber:client get handled by components?
if not to then