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:
Tobias Markmann 2013-03-28 12:49:19 +01:00
parent 077cfbe8a4
commit afbece2a94

View file

@ -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"));