]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - docs/conf/filter.conf.example
Merge insp20
[user/henk/code/inspircd.git] / docs / conf / filter.conf.example
index 922f55fb699ffc6704213fa6607528571164c724..ef7f50588258bf6d26eb918169398cff1ca579d8 100644 (file)
@@ -1,4 +1,4 @@
-# Configuration file for m_filter.so and m_filter_pcre.so
+# Configuration file for m_filter.so
 
 # The tags for this module are formatted as follows:
 #
@@ -39,7 +39,7 @@
 # o: Don't match against opers
 # c: Strip color codes from text before trying to match
 # *: Represents all of the above flags
-# -: Does nothing, a non-op for when you do not want to specify any flags 
+# -: Does nothing, a no-op for when you do not want to specify any flags
 #
 # IMPORTANT NOTE: Because the InspIRCd config reader places special meaning on the
 # '\' character, you must use '\\' if you wish to specify a '\' character in a regular
 #
 # <keyword pattern="^blah.*?$" reason="Dont blah!" action="gline" duration="1d6h" flags="pnPq">
 
-# An example of excluding a channel from filtering:
-# <exemptfromfilter channel="#help">
+# You may specify specific channels that are exempt from being filtered:
+#<exemptfromfilter target="#opers">
+#<exemptfromfilter target="#help">
+
+# You can also exempt messages from being filtered if they are sent to
+# specific nicks.
+# Example that exempts all messages sent *to* NickServ:
+#<exemptfromfilter target="NickServ">
+
+# Note that messages *from* services are never subject to filtering;
+# <exemptfromfilter> tags are only for exempting messages sent *to* the
+# configured targets.