diff options
author | Robby <Robby-@users.noreply.github.com> | 2018-04-20 16:28:28 +0200 |
---|---|---|
committer | Peter Powell <petpow@saberuk.com> | 2018-04-20 15:28:28 +0100 |
commit | 46e71e2f509eb38166fafcc69931117f0f9b7798 (patch) | |
tree | 551fb4cc8463997e095b38fb4c9dcf35773cb598 /docs/conf/modules.conf.example | |
parent | 49c35af6af8c5207c7c7c0fe41c041b2134262d6 (diff) |
Optionally do not notify users if their messages are blocked by certain modules (#1134).
Closes #711.
Diffstat (limited to 'docs/conf/modules.conf.example')
-rw-r--r-- | docs/conf/modules.conf.example | 19 |
1 files changed, 14 insertions, 5 deletions
diff --git a/docs/conf/modules.conf.example b/docs/conf/modules.conf.example index d4b254134..da72775e9 100644 --- a/docs/conf/modules.conf.example +++ b/docs/conf/modules.conf.example @@ -402,7 +402,10 @@ # his/her message is blocked. # # If maxlen is set then it defines the maximum length of a filter entry. -#<chanfilter hidemask="yes" maxlen="50"> +# +# If notifyuser is set to no, the user will not be notified when +# his/her message is blocked. +#<chanfilter hidemask="yes" maxlen="50" notifyuser="yes"> #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-# # Channel history module: Displays the last 'X' lines of chat to a user @@ -785,14 +788,16 @@ # stdlib - stdlib regexps, provided via regex_stdlib, see comment # # at the <module> tag for info on availability. # # # -#<filteropts engine="glob"> # +# If notifyuser is set to no, the user will not be notified when # +# his/her message is blocked. # +#<filteropts engine="glob" notifyuser="yes"> +# # +# Your choice of regex engine must match on all servers network-wide. # # # -# Your choice of regex engine must match on all servers network-wide. -# # To learn more about the configuration of this module, read # # examples/filter.conf.example, which covers the various types of # # filters and shows how to add exemptions. # -# +# # #-#-#-#-#-#-#-#-#-#-#- FILTER CONFIGURATION -#-#-#-#-#-#-#-#-#-#-#-# # # # Optional - If you specify to use the filter module, then # @@ -1536,6 +1541,10 @@ # Muteban: Implements extended ban 'm', which stops anyone matching # a mask like +b m:nick!user@host from speaking on channel. #<module name="muteban"> +# +# If notifyuser is set to no, the user will not be notified when +# his/her message is blocked. +#<muteban notifyuser="yes"> #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-# # Random quote module: Provides a random quote on connect. |