From 3be56d2e6e4be815e5b844513ab9791cf2ea7773 Mon Sep 17 00:00:00 2001 From: Matthew Wild Date: Wed, 22 Jul 2009 21:35:41 +0100 Subject: mod_presence: Ignore presence sent to host and invalid JIDs, fixes traceback (thanks Deepspawn) --- plugins/mod_presence.lua | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'plugins/mod_presence.lua') diff --git a/plugins/mod_presence.lua b/plugins/mod_presence.lua index dbcf55d6..3ca3b35e 100644 --- a/plugins/mod_presence.lua +++ b/plugins/mod_presence.lua @@ -207,6 +207,11 @@ function handle_inbound_presence_subscriptions_and_probes(origin, stanza, from_b local st_from, st_to = stanza.attr.from, stanza.attr.to; stanza.attr.from, stanza.attr.to = from_bare, to_bare; log("debug", "inbound presence "..stanza.attr.type.." from "..from_bare.." for "..to_bare); + + if not node then + log("debug", "dropping presence sent to host or invalid address '%s'", tostring(to_bare)); + end + if stanza.attr.type == "probe" then if rostermanager.is_contact_subscribed(node, host, from_bare) then if 0 == send_presence_of_available_resources(node, host, st_from, origin, core_route_stanza) then -- cgit v1.2.3