# HG changeset patch # User Tobias Markmann # Date 1364471359 -3600 # Node ID 214c32e10734da72016d6a325e4514706da1b573 # Parent 30484214d49b9c25a2594a0939d19c59557ad4d4 mod_privacy: Drop stanzas of type groupchat, so users aren't kicked from their chatrooms when blocking specific MUC occupants. diff -r 30484214d49b -r 214c32e10734 plugins/mod_privacy.lua --- a/plugins/mod_privacy.lua Sat Mar 23 04:17: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"));