# HG changeset patch # User Waqas Hussain # Date 1258908331 -18000 # Node ID 4b339020607ff25be6f99bf269dd4a510fd01c50 # Parent f544729f9228ee0b9d330e6f91542aaa052744d8 mod_presence: Acknowledge subscription requests by responding with an unavailable presence. diff -r f544729f9228 -r 4b339020607f plugins/mod_presence.lua --- a/plugins/mod_presence.lua Sun Nov 22 21:41:09 2009 +0500 +++ b/plugins/mod_presence.lua Sun Nov 22 21:45:31 2009 +0500 @@ -233,6 +233,7 @@ -- TODO send last recieved unavailable presence (or we MAY do nothing, which is fine too) end else + core_route_stanza(origin, st.presence({from=to_bare, to=from_bare, type="unavailable"})); -- acknowledging receipt if not rostermanager.is_contact_pending_in(node, host, from_bare) then if rostermanager.set_contact_pending_in(node, host, from_bare) then sessionmanager.send_to_available_resources(node, host, stanza);