mod_version: Use the module API to read configuration options instead of configmanager
[prosody.git] / plugins / mod_presence.lua
index f45df8fc0c320ff7fd4ca68e2434e7e187cde479..f78a5950ad3315e6a21b0a65e3cb67f41bdb2d96 100644 (file)
@@ -1,4 +1,4 @@
--- Prosody IM v0.4
+-- Prosody IM
 -- Copyright (C) 2008-2009 Matthew Wild
 -- Copyright (C) 2008-2009 Waqas Hussain
 -- 
@@ -165,6 +165,7 @@ end
 
 function handle_outbound_presence_subscriptions_and_probes(origin, stanza, from_bare, to_bare, core_route_stanza)
        local node, host = jid_split(from_bare);
+       if to_bare == origin.username.."@"..origin.host then return; end -- No self contacts
        local st_from, st_to = stanza.attr.from, stanza.attr.to;
        stanza.attr.from, stanza.attr.to = from_bare, to_bare;
        log("debug", "outbound presence "..stanza.attr.type.." from "..from_bare.." for "..to_bare);
@@ -207,6 +208,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
@@ -325,7 +331,7 @@ module:hook("resource-unbind", function(event)
                pres:tag("status"):text("Disconnected: "..err):up();
                session:dispatch_stanza(pres);
        elseif session.directed then
-               local pres = st.presence{ type = "unavailable" };
+               local pres = st.presence{ type = "unavailable", from = session.full_jid };
                if not(err) or err == "closed" then err = "connection closed"; end
                pres:tag("status"):text("Disconnected: "..err):up();
                for jid in pairs(session.directed) do