mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
mod_privacy: Drop stanzas of type groupchat, so users aren't kicked from their chatrooms when blocking specific MUC occupants.
This commit is contained in:
parent
077cfbe8a4
commit
afbece2a94
1 changed files with 4 additions and 0 deletions
|
@ -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"));
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue