mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
mod_blocklist: Check JID of mediated MUC invite sender against blocklist
This ensures that someone on your blocklist is unable to invite you to MUC rooms.
This commit is contained in:
parent
d1022fe0c4
commit
f94d5d2f7f
1 changed files with 16 additions and 1 deletions
|
@ -262,7 +262,22 @@ local function drop_stanza(event)
|
|||
local to, from = attr.to, attr.from;
|
||||
to = to and jid_split(to);
|
||||
if to and from then
|
||||
return is_blocked(to, from);
|
||||
if is_blocked(to, from) then
|
||||
return true;
|
||||
end
|
||||
|
||||
-- Check mediated MUC inviter
|
||||
if stanza.name == "message" then
|
||||
local invite = stanza:find("{http://jabber.org/protocol/muc#user}x/invite");
|
||||
if invite then
|
||||
from = jid_prep(invite.attr.from);
|
||||
if is_blocked(to, from) then
|
||||
return true;
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
return false;
|
||||
end
|
||||
end
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue