From: brain Date: Sun, 21 Sep 2008 18:21:34 +0000 (+0000) Subject: Update config to remove m_filter_pcre and document new tags X-Git-Tag: v2.0.23~2508 X-Git-Url: https://git.netwichtig.de/gitweb/?a=commitdiff_plain;h=90e32d5991f367ac1d79b0d1c40ddb6279a51b9a;p=user%2Fhenk%2Fcode%2Finspircd.git Update config to remove m_filter_pcre and document new tags git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@10587 e03df62e-2008-0410-955e-edbf42e46eb7 --- diff --git a/conf/modules.conf.example b/conf/modules.conf.example index 6edd70269..cd40f50d5 100644 --- a/conf/modules.conf.example +++ b/conf/modules.conf.example @@ -606,19 +606,30 @@ # http://inspircd.org/wiki/DNS_Blacklist_Module # #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-# -# Filter module: Provides glob-based message filtering +# Filter module: Provides message filtering, similar to SPAMFILTER. # -# OR -# PCRE filter module: Filters messages using regular expressions -# -# -# You may only use one or the other with these modules, network-wide. +# # +# This module depends upon a regex provider such as m_regex_pcre or # +# m_regex_glob to function. You must specify which of these you want # +# m_filter to use via the tag below. # +# # +# Valid engines are: # +# # +# glob - Glob patterns, provided via m_regex_glob.so # +# pcre - PCRE regexps, provided via m_regex_pcre.so, needs libpcre # +# tre - TRE regexps, provided via m_regex_tre.so, requires libtre # +# posix - POSIX regexps, provided via m_regex_posix.so, not availale # +# on windows, no dependencies on other operating systems. # +# # +# # +# # +# Your choice of regex engine must match on all servers network-wide. # #-#-#-#-#-#-#-#-#-#-#- FILTER CONFIGURATION -#-#-#-#-#-#-#-#-#-#-#-# # # -# Optional - If you specify to use the m_filter or m_filter_pcre # -# modules, then specfiy below the path to the filter.conf file, # -# or define some tags. # +# Optional - If you specify to use the m_filter module, then # +# specfiy below the path to the filter.conf file, or define some # +# tags. # # # # @@ -1121,6 +1132,7 @@ # # #-#-#-#-#-#-#-#-#-#-#-#- RLINE CONFIGURATION -#-#-#-#-#-#-#-#-#-#-#-#-# +# # If you wish to re-check a user when they change nickname (can be # useful under some situations, but *can* also use CPU with more users # on a server) then set the following configuration value: @@ -1129,8 +1141,10 @@ # wiped. This is the regex engine used by all R-Lines set, and # m_regex_.so must be loaded, or rline will be nonfunctional # until you load it or change the engine to one that is loaded. +# # -# Generally, you will not want to use 'glob' here, as this turns +# +# Generally, you will NOT want to use 'glob' here, as this turns # rline into just another gline. The exceptions are that rline will # always use the full nick!user@host realname string, rather than only # user@host, but beware that only the ? and * wildcards are available,