plugins/mod_privacy.lua
changeset 5393 57c4964eff0b
parent 5370 7838acadb0fa
child 5500 eeea0eb2602a
--- a/plugins/mod_privacy.lua	Wed Mar 27 23:48:39 2013 +0100
+++ b/plugins/mod_privacy.lua	Thu Mar 28 12:49:19 2013 +0100
@@ -366,6 +366,10 @@
 		end
 		if apply then
 			if block then
+				-- drop and not bounce groupchat messages, otherwise users will get kicked
+				if stanza.attr.type == "groupchat" then
+					return true;
+				end
 				module:log("debug", "stanza blocked: %s, to: %s, from: %s", tostring(stanza.name), tostring(to), tostring(from));
 				if stanza.name == "message" then
 					origin.send(st.error_reply(stanza, "cancel", "service-unavailable"));