# HG changeset patch # User Matthew Wild # Date 1248294958 -3600 # Node ID 6bb5bc6593c71174e860462011287532f4fa4c3e # Parent e052a3bdb8b50ba7360a7d87894baef215070b40# Parent b11bac42d56f2ac60b0d2186b8ca2f5cfcc346a4 Merge with 0.5 diff -r e052a3bdb8b5 -r 6bb5bc6593c7 plugins/mod_presence.lua --- a/plugins/mod_presence.lua Tue Jul 21 19:23:03 2009 +0100 +++ b/plugins/mod_presence.lua Wed Jul 22 21:35:58 2009 +0100 @@ -207,6 +207,11 @@ 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