mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
mod_blocklist: Drop blocked messages without error, option to restore compliant behavior
From XEP-0191: > For message stanzas, the server SHOULD return an error, which SHOULD > be <service-unavailable/>. Following this may leak to a blocked JID that they have been blocked, which seems contrary to the goal of pretending to be perpetually offline.
This commit is contained in:
parent
ec3655ced6
commit
4414f8402f
1 changed files with 7 additions and 2 deletions
|
@ -322,8 +322,13 @@ local prio_in, prio_out = 100, 100;
|
|||
module:hook("presence/bare", drop_stanza, prio_in);
|
||||
module:hook("presence/full", drop_stanza, prio_in);
|
||||
|
||||
module:hook("message/bare", bounce_message, prio_in);
|
||||
module:hook("message/full", bounce_message, prio_in);
|
||||
if module:get_option_boolean("bounce_blocked_messages", false) then
|
||||
module:hook("message/bare", bounce_message, prio_in);
|
||||
module:hook("message/full", bounce_message, prio_in);
|
||||
else
|
||||
module:hook("message/bare", drop_stanza, prio_in);
|
||||
module:hook("message/full", drop_stanza, prio_in);
|
||||
end
|
||||
|
||||
module:hook("iq/bare", bounce_iq, prio_in);
|
||||
module:hook("iq/full", bounce_iq, prio_in);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue