Modules/filter
From the makers of InspIRCd.
(Redirected from Text filtering Module)
| Description
|
| Allows filtering of text from private and channel messages and notices, part messages and quit messages, for abuse prevention and realtime blocking of viruses and worms. |
| Configuration Tags
|
To use this module you should add the following tag to your Configuration file:
<include file="filter.conf"> You should then create a filter.conf file, which contains filter entries. The filter.conf is a standard styled config file, containing tags formatted like the one below: <keyword pattern="*qwerty*" reason="You qwertied!" action="gline" duration="1h6s" flags="pn"> The patterns used are standard glob patterns which match against any PRIVMSG, PART, QUIT or NOTICE command. The action variable can be one of three values:
|
| Additional Modes
|
| None |
| Special Notes
|
| Please note that while glob patterns are faster to match than regular expressions (such a those used in unrealircd, etc) a large number of them can still impede performance (e.g. a hundred or more), and the more users you have, the less patterns you will be able to have without crippling your irc server. Filtering is always done locally, so if you have over 2000 users per server, consider other alternatives where possible.
If you wish to use regular expressions instead of glob patterns, please consider using the m_filter_pcre module. |
| Conflicts
|
| This module may not be used at the same time as m_filter_pcre.so. |

















