# HG changeset patch # User Matthew Wild # Date 1237671734 0 # Node ID 8176d224208ad6fb55ccb527b68a9fc54ce286e5 # Parent aeb05598dec12d90ca19a68124865e3c83df229b core.stanza_router: Allow routing from components diff -r aeb05598dec1 -r 8176d224208a core/stanza_router.lua --- a/core/stanza_router.lua Fri Mar 20 20:17:05 2009 +0000 +++ b/core/stanza_router.lua Sat Mar 21 21:42:14 2009 +0000 @@ -97,7 +97,7 @@ end]] -- FIXME -- FIXME do stanzas not of jabber:client get handled by components? - if (origin.type == "s2sin" or origin.type == "c2s") and (not xmlns or xmlns == "jabber:server" or xmlns == "jabber:client") then + if (origin.type == "s2sin" or origin.type == "c2s" or origin.type == "component") and (not xmlns or xmlns == "jabber:server" or xmlns == "jabber:client") then if origin.type == "s2sin" and not origin.dummy then local host_status = origin.hosts[from_host]; if not host_status or not host_status.authed then -- remote server trying to impersonate some other server?