The WordFilter cog is a moderation tool. It watches all messages on the server for the use of certain words, expressions or other strings. The bot has two separate lists of filter strings, both fully configurable using bot commands:
del
list: Any messages that match will be auto-deleted. Moderators are notified.warn
list: Moderators are notified of the matching message.
Moderator notifications are output to either #bot-output or #mods; this can be switched using the filter switch command.
Filter string syntax
The special character %
will match a word boundary (any non-letter character).
Each word/expression in the list can be matched in four different ways:
foo
: Matches any sub-stringfoo
, even if inside a word; for example, the wordsfoobar
,zoboomafoo
, andafoot
inside a message will all be caught.%foo
: Matches any word that starts withfoo
. For example,fooing
will match, butzoboomafoo
will not match.foo%
: Matches any word that ends withfoo
. For example,zoboomafoo
will match, but notfoobar
.%foo%
: Matches whole words only.
You can also refer to the table below to see examples of which method will catch which sub-strings.
foo | %foo | foo% | %foo% | |
---|---|---|---|---|
foo | ||||
foobar | ||||
barfoo | ||||
barfoobar |
1. filter
Command group to manages the filter lists.
For all sub-commands except filter switch, you need to specify the filter list,
either del
(auto-delete list) or warn
(warn-only list). You can also use the
shorthand d
or w
.
Usage: .filter
Details
- Members
- Moderators, Administrators.
- Channels
- Mod channels.
1.1. filter list (l)
Lists the current filters.
If filter_type
is not given, lists all filters; otherwise, lists the specified filter.
Usage: .filter [list|l] [filter_type]
Parameters
- [filter_type]
- Optional. Filter list:
del
orwarn
(shorthand:d
orw
). Default: both
Details
- Members
- Moderators, Administrators.
- Channels
- Mod channels.
Examples
.filter list
- Shows both auto-warn and auto-delete lists..filter list warn
- Shows warn filter list..filter list del
- Shows auto-delete filter list..filter l w
- Shorthand version of.filter list warn
.
1.2. filter add (a)
Adds a new filter word/expression.
Usage: .filter [add|a] <filter_type> <word>
Parameters
- <filter_type>
- Filter list:
del
orwarn
(shorthand:d
orw
). - <word>
- string. The word or expression to filter. If it has spaces, use quotation marks. See
WordFilter (or
.help WordFilter
in-bot) for information on matching syntax.
Details
- Members
- Moderators, Administrators.
- Channels
- Mod channels.
Examples
.filter add warn %word%
- Adds “word” (as an exact word match) to the auto-warning list..filter add del "%pink flamingo%"
- Add “pink flamingo” (exact expression) to the auto-delete list.filter a w %talk
- Shorthand. Add “%talk” to the warning list - this will match any words that start with “talk”.
1.3. filter rem (r, remove)
Remove a filter word/expression by word.
Usage: .filter [rem|r|remove] <filter_type> <word>
Parameters
- <filter_type>
- Filter list:
del
orwarn
(shorthand:d
orw
). - <word>
- string. The word or expression to remove. If it has spaces, use quotation marks.
Details
- Members
- Moderators, Administrators.
- Channels
- Mod channels.
Examples
.filter rem warn %word%
- Remove “%word%” from the auto-warning list..filter r d "%pink flamingo%"
- Shorthand. Remove “%pink flamingo%” from the auto-delete list.
1.4. filter rnum
Remove a filter word/expression by list index.
Usage: .filter rnum <filter_type> <index>
Parameters
- <filter_type>
- Filter list:
del
orwarn
(shorthand:d
orw
). - <index>
- number. The index number of the filter to remove. You can get this index number using the filter list command.
Details
- Members
- Moderators, Administrators.
- Channels
- Mod channels.
Examples
.filter rnum del 5
- Removes the 5th rule in the auto-delete filter..filter rnum w 3
- Shorthand. Removes the 3rd rule in the warning-only filter.
1.5. filter switch (s, sw)
Change the bot output channel for WordFilter warnings.
Switches between the #bot-output and #mods channels.
Usage: .filter [switch|s|sw]
Details
- Members
- Moderators, Administrators.
- Channels
- Mod channels.
2. switch
DEPRECATED.
Usage: .switch
Details
- Members
- Moderators, Administrators.