plugins/mod_presence.lua
changeset 7334 c8ad387aab1c
parent 7284 21da137d83b0
child 7335 ba32289e8d0b
--- a/plugins/mod_presence.lua	Sun Apr 03 15:52:40 2016 +0200
+++ b/plugins/mod_presence.lua	Mon Apr 04 17:15:10 2016 +0200
@@ -357,3 +357,25 @@
 		session.directed = nil;
 	end
 end);
+
+module:hook("roster-item-removed", function (event)
+	local username = event.username;
+	local session = event.origin;
+	local roster = event.roster or session and session.roster;
+	local jid = event.jid;
+	local item = event.item;
+
+	local subscription = item and item.subscription or "none";
+	local ask = item and item.ask;
+	local pending = roster and roster[false].pending[jid];
+
+	if subscription == "both" or subscription == "from" or pending then
+		core_post_stanza(session, st.presence({type="unsubscribed", from=session.full_jid, to=jid}));
+	end
+
+	if subscription == "both" or subscription == "to" or ask then
+		core_post_stanza(session, st.presence({type="unsubscribe", from=session.full_jid, to=jid}));
+	end
+
+end, -1);
+