From c4742ed7810b3e10bfc6bdb55a11c31b3faf5426 Mon Sep 17 00:00:00 2001 From: Matthew Wild Date: Wed, 25 Nov 2009 03:30:00 +0000 Subject: s2smanager: Log warning when trying to send a stanza from a host we don't serve, instead of a traceback (thanks stpeter) --- core/s2smanager.lua | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/core/s2smanager.lua b/core/s2smanager.lua index 4c61eaa3..20d932e8 100644 --- a/core/s2smanager.lua +++ b/core/s2smanager.lua @@ -79,6 +79,10 @@ local function bounce_sendq(session) end function send_to_host(from_host, to_host, data) + if not hosts[from_host] then + log("warn", "Attempt to send stanza from %s - a host we don't serve", from_host); + return false; + end local host = hosts[from_host].s2sout[to_host]; if host then -- We have a connection to this host already -- cgit v1.2.3