diff options
author | Tobias Markmann <tm@ayena.de> | 2013-03-28 12:49:19 +0100 |
---|---|---|
committer | Tobias Markmann <tm@ayena.de> | 2013-03-28 12:49:19 +0100 |
commit | b47879e18077b22d5cbace5ed8bb7362ec087d33 (patch) | |
tree | 13397a2d6f07fbc84a3120b9594f2927a8276972 /plugins | |
parent | 983891c9fa8e728aa4680aedc74ec50a0329346e (diff) | |
download | prosody-b47879e18077b22d5cbace5ed8bb7362ec087d33.tar.gz prosody-b47879e18077b22d5cbace5ed8bb7362ec087d33.zip |
mod_privacy: Drop stanzas of type groupchat, so users aren't kicked from their chatrooms when blocking specific MUC occupants.
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/mod_privacy.lua | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/plugins/mod_privacy.lua b/plugins/mod_privacy.lua index 7ec94922..dc6b153a 100644 --- a/plugins/mod_privacy.lua +++ b/plugins/mod_privacy.lua @@ -366,6 +366,10 @@ function checkIfNeedToBeBlocked(e, session) 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")); |