Changeset

7621:b8c03df6e8ca

mod_blocklist: Mention issue numbers
author Kim Alvefur <zash@zash.se>
date Sat, 20 Aug 2016 17:30:16 +0200
parents 7620:c27c9695d130
children 7622:96e6df712359 7632:2b14e2121700
files plugins/mod_blocklist.lua
diffstat 1 files changed, 4 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- a/plugins/mod_blocklist.lua	Sat Aug 20 17:24:08 2016 +0200
+++ b/plugins/mod_blocklist.lua	Sat Aug 20 17:30:16 2016 +0200
@@ -302,6 +302,7 @@
 module:hook("presence/bare", drop_stanza, prio_in);
 module:hook("presence/full", drop_stanza, prio_in);
 
+-- FIXME See #690
 module:hook("message/bare", bounce_message, prio_in);
 module:hook("message/full", bounce_message, prio_in);
 
@@ -312,9 +313,9 @@
 module:hook("pre-message/full", bounce_outgoing, prio_out);
 module:hook("pre-message/host", bounce_outgoing, prio_out);
 
--- Note: MUST bounce these, but we don't because this would produce
--- lots of error replies due to server-generated presence.
--- FIXME some day, likely needing changes to mod_presence
+-- FIXME See #575 -- We MUST bounce these, but we don't because this
+-- would produce lots of error replies due to server-generated presence.
+-- This will likely need changes to mod_presence
 module:hook("pre-presence/bare", drop_outgoing, prio_out);
 module:hook("pre-presence/full", drop_outgoing, prio_out);
 module:hook("pre-presence/host", drop_outgoing, prio_out);