diff options
Diffstat (limited to 'docs')
-rw-r--r-- | docs/conf/modules.conf.example | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/docs/conf/modules.conf.example b/docs/conf/modules.conf.example index 76563fbeb..ea0431499 100644 --- a/docs/conf/modules.conf.example +++ b/docs/conf/modules.conf.example @@ -943,6 +943,14 @@ #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-# # Knock module: adds the /KNOCK command and +K channel mode #<module name="m_knock.so"> +# This setting specifes what to do when someone successfully /KNOCKs. +# If set to "notice", then a NOTICE will be sent to the channel. +# This is the default and the compatible setting, as it requires no +# special support from the clients. +# If set to "numeric" then a 710 numeric will be sent to the channel. +# This allows easier scripting but not all clients support it. +# If set to "both" then (surprise!) both will be sent. +#<knock notify="notice"> #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-# # LDAP authentication module: Adds the ability to authenticate users # @@ -1381,6 +1389,20 @@ #<module name="m_regex_posix.so"> #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-# +# Regular Expression Provider for C++11 std::regex Regular Expressions. +# This module works on any fully compliant implementation of the C++11 +# std::regex container. Examples for such are Visual C++ 2010 and newer +# but not libstdc++ (which GCC uses) +# You should verify that std::regex is supported by your setup before +# using this module, as it may compile normally but won't do anything +# on some implementations. +#<module name="m_regex_stdlib.so"> + +# Specify the Regular Expression engine to use here. Valid settings are +# bre, ere, awk, grep, egrep, ecmascript (default if not specified) +#<stdregex type="ecmascript"> + +#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-# # Regular Expression Provider for TRE Regular Expressions. # This is the same regular expression engine used by UnrealIRCd, so # if you are most familiar with the syntax of /spamfilter from there, |