# HG changeset patch # User Waqas Hussain # Date 1264770999 -18000 # Node ID 7929882435c08882562bebfbd58b93a253e2fcf6 # Parent 5d27eb255901d075547e55fe049b107d878cb05d mod_presence: Respond with an unavailable presence when subscribers probe and no resources are available. diff -r 5d27eb255901 -r 7929882435c0 plugins/mod_presence.lua --- a/plugins/mod_presence.lua Sun Jan 24 05:35:21 2010 +0500 +++ b/plugins/mod_presence.lua Fri Jan 29 18:16:39 2010 +0500 @@ -217,7 +217,7 @@ 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 - -- TODO send last recieved unavailable presence (or we MAY do nothing, which is fine too) + core_route_stanza(hosts[host], st.presence({from=to_bare, to=from_bare, type="unavailable"})); -- TODO send last activity end else core_route_stanza(hosts[host], st.presence({from=to_bare, to=from_bare, type="unsubscribed"})); @@ -227,7 +227,7 @@ core_route_stanza(hosts[host], st.presence({from=to_bare, to=from_bare, type="subscribed"})); -- already subscribed -- Sending presence is not clearly stated in the RFC, but it seems appropriate if 0 == send_presence_of_available_resources(node, host, from_bare, origin, core_route_stanza) then - -- TODO send last recieved unavailable presence (or we MAY do nothing, which is fine too) + core_route_stanza(hosts[host], st.presence({from=to_bare, to=from_bare, type="unavailable"})); -- TODO send last activity end else core_route_stanza(hosts[host], st.presence({from=to_bare, to=from_bare, type="unavailable"})); -- acknowledging receipt