From e52cd0fdf3c325af48eda8b987d87df6c21baa85 Mon Sep 17 00:00:00 2001 From: Kim Alvefur Date: Sun, 27 May 2012 04:01:34 +0200 Subject: stanza_router: Don't bounce type=error stanzas --- core/stanza_router.lua | 2 ++ 1 file changed, 2 insertions(+) (limited to 'core') diff --git a/core/stanza_router.lua b/core/stanza_router.lua index 6e8ac6b3..043eb458 100644 --- a/core/stanza_router.lua +++ b/core/stanza_router.lua @@ -199,6 +199,8 @@ function core_route_stanza(origin, stanza) 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 -- cgit v1.2.3