# HG changeset patch # User Kim Alvefur # Date 1338084094 -7200 # Node ID 98a8db95de8c1af65375ce95294c36e7e5aefeb5 # Parent d1dca1d12d53eb4cd7301e9e62791e4496312f9f stanza_router: Don't bounce type=error stanzas diff -r d1dca1d12d53 -r 98a8db95de8c core/stanza_router.lua --- a/core/stanza_router.lua Sun May 27 01:22:02 2012 +0200 +++ b/core/stanza_router.lua Sun May 27 04:01:34 2012 +0200 @@ -199,6 +199,8 @@ local routed = host_session.events.fire_event("route/remote", { origin = origin, stanza = stanza, from_host = from_host, to_host = host }); stanza.attr.xmlns = xmlns; -- reset if not routed then + log("debug", "... no, just kidding."); + if stanza.attr.type == "error" then return end core_route_stanza(host_session, st.error_reply(stanza, "cancel", "not-allowed", "Communication with remote domains is not enabled")); end end