diff options
author | Waqas Hussain <waqas20@gmail.com> | 2010-01-29 18:16:39 +0500 |
---|---|---|
committer | Waqas Hussain <waqas20@gmail.com> | 2010-01-29 18:16:39 +0500 |
commit | 0d85845a9747742e9e446512848927787a078a7b (patch) | |
tree | ade18ba8201ac6046136d4dddf69abc70160174d /plugins | |
parent | 76550b9ad1f186f2411d6b03e095792750f97a53 (diff) | |
download | prosody-0d85845a9747742e9e446512848927787a078a7b.tar.gz prosody-0d85845a9747742e9e446512848927787a078a7b.zip |
mod_presence: Respond with an unavailable presence when subscribers probe and no resources are available.
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/mod_presence.lua | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/mod_presence.lua b/plugins/mod_presence.lua index 815b5c8b..31d2d7b4 100644 --- a/plugins/mod_presence.lua +++ b/plugins/mod_presence.lua @@ -217,7 +217,7 @@ function handle_inbound_presence_subscriptions_and_probes(origin, stanza, from_b 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 @@ function handle_inbound_presence_subscriptions_and_probes(origin, stanza, from_b 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 |