mod_firewall/conditions.lib.lua
changeset 2407 f96bdfd81eba
parent 2390 00eed68f63bf
child 2469 bd69ffe071e6
--- a/mod_firewall/conditions.lib.lua	Wed Nov 30 15:37:51 2016 +0100
+++ b/mod_firewall/conditions.lib.lua	Wed Nov 30 15:44:35 2016 +0100
@@ -105,6 +105,11 @@
 	return ("not not (roster_entry and roster_entry.groups[%q])"):format(group), { "roster_entry" };
 end
 
+function condition_handlers.SUBSCRIBED()
+	return "rostermanager.is_contact_subscribed(to_node, to_host, bare_from)",
+	       { "rostermanager", "split_to", "bare_from" };
+end
+
 function condition_handlers.PAYLOAD(payload_ns)
 	return ("stanza:get_child(nil, %q)"):format(payload_ns);
 end