]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - conf/modules.conf.example
Run modulemanager upgrade to check for updates to third party (and extras) modules...
[user/henk/code/inspircd.git] / conf / modules.conf.example
1 #-#-#-#-#-#-#-#-#-#-#-#-#-  MODULE OPTIONS   -#-#-#-#-#-#-#-#-#-#-#-#-#
2 #                                                                     #
3 #  These tags define which modules will be loaded on startup by your  #
4 #  server. Add modules without any paths. When you make your ircd     #
5 #  using the 'make' command, all compiled modules will be moved into  #
6 #  the folder you specified when you ran ./configure. The module tag  #
7 #  automatically looks for modules in this location.                  #
8 #  If you attempt to load a module outside of this location, either   #
9 #  in the config, or via /LOADMODULE, you will receive an error.      #
10 #                                                                     #
11 #  By default, ALL modules are commented out. You must uncomment them #
12 #  or add lines to your config to load modules. Please refer to       #
13 #  http://wiki.inspircd.org/Modules for a list of modules and         #
14 #  each modules link for any additional conf tags they require.       #
15 #                                                                     #
16 #  You may use wildcards in a <module> tag to load all modules which  #
17 #  match a glob pattern (e.g. m_sa????.so would load m_sajoin,        #
18 #  m_sapart, m_saquit and m_sanick)                                   #
19 #                                                                     #
20 #    ____                _   _____ _     _       ____  _ _   _        #
21 #   |  _ \ ___  __ _  __| | |_   _| |__ (_)___  | __ )(_) |_| |       #
22 #   | |_) / _ \/ _` |/ _` |   | | | '_ \| / __| |  _ \| | __| |       #
23 #   |  _ <  __/ (_| | (_| |   | | | | | | \__ \ | |_) | | |_|_|       #
24 #   |_| \_\___|\__,_|\__,_|   |_| |_| |_|_|___/ |____/|_|\__(_)       #
25 #                                                                     #
26 # To link servers to InspIRCd, you MUST load the m_spanningtree       #
27 # module. Since several features (like SSL server links) rely on      #
28 # other modules being loaded before m_spanningtree, the module itself #
29 # is at the bottom of this file. DO NOT forget to load it. If you DO  #
30 # NOT do this, server links will NOT work at all. ie. The ports will  #
31 # NOT bind, and /connect will not work properly. This is by design,   #
32 # to allow for the implementation of other linking protocols in       #
33 # modules in the future.                                              #
34 #                                                                     #
35
36 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
37 # MD5 Module - Allows other modules to generate MD5 hashes, usually for
38 # cryptographic uses and security.
39 #
40 # IMPORTANT:
41 # Other modules such as m_cloaking.so and m_password_hash.so may rely on
42 # this module being loaded to function.
43 #
44 #<module name="m_md5.so">
45 #
46 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
47 # SHA256 Module - Allows other modules to generate SHA256 hashes,
48 # usually for cryptographic uses and security.
49 #
50 # IMPORTANT:
51 # Other modules such as m_password_hash.so may rely on this module being
52 # loaded to function. Certain modules such as m_spanningtree.so will
53 # function without this module but when it is loaded their features will
54 # be enhanced (for example the addition of HMAC authentication).
55 #
56 #<module name="m_sha256.so">
57 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
58 # RIPEMD160 Module - Allows other modules to generate RIPEMD160 hashes,
59 # usually for cryptographic uses and security.
60
61 # IMPORTANT:
62 # Other modules may rely on this module being loaded to function.
63 #<module name="m_ripemd160.so">
64
65 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
66 # Abbreviation module: Provides the ability to abbreviate commands a-la 
67 # BBC BASIC keywords.
68 #<module name="m_abbreviation.so">
69
70 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
71 # Alias module: Allows you to define server-side command aliases
72 #<module name="m_alias.so">
73 #
74 # Fantasy settings:
75 #
76 #<fantasy prefix="!" allowbots="no">
77 #
78 # prefix:
79 #  Set the prefix for in-channel aliases (fantasy commands) to the
80 #  specified character. If not set, the default is "!".
81 # allowbots:
82 #  If this is set to no, +B clients will not be able to use fantasy
83 #  commands. If not set, the default is no.
84 #
85 #-#-#-#-#-#-#-#-#-#-#-  ALIAS DEFINITIONS  -#-#-#-#-#-#-#-#-#-#-#-#-#-#
86 #                                                                     #
87 # If you have the m_alias.so module loaded, you may also define       #
88 # aliases as shown below. They are commonly used to provide shortcut  #
89 # commands to services, however they are not limited to just this use.#
90 # An alias tag requires the following values to be defined in it:     #
91 #                                                                     #
92 # text        -      The text to detect as the actual command line,   #
93 #                    Cant contain spaces, but case insensitive.       #
94 #                    You may have multiple aliases with the same      #
95 #                    command name (text="" value), however the first  #
96 #                    found will be executed if its format value is    #
97 #                    matched, or it has no format value. Aliases are  #
98 #                    read from the top of the file to the bottom.     #
99 #                                                                     #
100 # usercommand -      If this is true, the alias can be run simply as  #
101 #                    /aliasname. Defaults to true.                    #
102 #                                                                     #
103 # channelcommand -   If this is true, the alias can be used as an     #
104 #                    in-channel alias or 'fantasy command', prefixed  #
105 #                    by the fantasy prefix character, !aliasname by   #
106 #                    default. Defaults to false.                      #
107 #                                                                     #
108 # format      -      If this is defined, the parameters of the alias  #
109 #                    must match this glob pattern. For example if you #
110 #                    want the first parameter to start with a # for   #
111 #                    the alias to be executed, set format="#*" in the #
112 #                    alias definition. Note that the :'s which are    #
113 #                    part of IRC formatted lines will be preserved    #
114 #                    for matching of this text. This value is         #
115 #                    optional.                                        #
116 #                                                                     #
117 # replace     -      The text to replace 'text' with. Usually this    #
118 #                    will be "PRIVMSG ServiceName :$2-" or similar.   #
119 #                    You may use the variables $1 through $9 in the   #
120 #                    replace string, which refer to the first through #
121 #                    ninth word in the original string typed by the   #
122 #                    user. You may also use $1- through $9- which     #
123 #                    refer to the first word onwards, through to the  #
124 #                    ninth word onwards, e.g. if the user types the   #
125 #                    command "foo bar baz qux quz" then $3- will hold #
126 #                    "baz qux quz" and $2 will contain "bar". You may #
127 #                    also use the special variables: $nick, $ident,   #
128 #                    $host and $vhost, and you may separate multiple  #
129 #                    commands with \n. If you wish to use the ACTUAL  #
130 #                    characters \ and n together in a line, you must  #
131 #                    use the sequence "\\n".                          #
132 #                                                                     #
133 # requires    -      If you provide a value for 'requires' this means #
134 #                    the given nickname MUST be online for the alias  #
135 #                    to successfully trigger. If they are not, then   #
136 #                    the user receives a 'no such nick' 401 numeric.  #
137 #                                                                     #
138 # uline       -      Defining this value with 'yes', 'true' or '1'    #
139 #                    will ensure that the user given in 'requires'    #
140 #                    must also be on a u-lined server, as well as     #
141 #                    actually being on the network. If the user is    #
142 #                    online, but not on a u-lined server, then an     #
143 #                    oper-alert is sent out as this is possibly signs #
144 #                    of a user trying to impersonate a service.       #
145 #                                                                     #
146 # operonly    -      Defining this value, with a value of 'yes', '1'  #
147 #                    or true will make the alias oper only. If a non- #
148 #                    oper attempts to use the alias, it will appear   #
149 #                    to not exist.                                    #
150 #                                                                     #
151 #<alias text="NICKSERV" replace="PRIVMSG NickServ :$2-" requires="NickServ" uline="yes">
152 #<alias text="CHANSERV" replace="PRIVMSG ChanServ :$2-" requires="ChanServ" uline="yes">
153 #<alias text="OPERSERV" replace="PRIVMSG OperServ :$2-" requires="OperServ" uline="yes" operonly="yes">
154 #<alias text="BOTSERV" replace="PRIVMSG BotServ :$2-" requires="BotServ" uline="yes">
155 #<alias text="HOSTSERV" replace="PRIVMSG HostServ :$2-" requires="HostServ" uline="yes">
156 #<alias text="MEMOSERV" replace="PRIVMSG MemoServ :$2-" requires="MemoServ" uline="yes">
157 #<alias text="NS" replace="PRIVMSG NickServ :$2-" requires="NickServ" uline="yes">
158 #<alias text="CS" replace="PRIVMSG ChanServ :$2-" requires="ChanServ" uline="yes">
159 #<alias text="OS" replace="PRIVMSG OperServ :$2-" requires="OperServ" uline="yes" operonly="yes">
160 #<alias text="BS" replace="PRIVMSG BotServ :$2-" requires="BotServ" uline="yes">
161 #<alias text="HS" replace="PRIVMSG HostServ :$2-" requires="HostServ" uline="yes">
162 #<alias text="MS" replace="PRIVMSG MemoServ :$2-" requires="MemoServ" uline="yes">
163 #
164 # An example of using the format value to create an alias with two
165 # different behaviours depending on the format of the parameters.
166 #
167 #<alias text="ID" format="#*" replace="PRIVMSG ChanServ :IDENTIFY $2 $3"
168 #  requires="ChanServ" uline="yes">
169 #
170 #<alias text="ID" replace="PRIVMSG NickServ :IDENTIFY $2"
171 #  requires="NickServ" uline="yes">
172 #
173 # This alias fixes a glitch in xchat 2.6.x and above and the way it
174 # assumes IDENTIFY must be prefixed by a colon (:) character. It should
175 # be placed ABOVE the default NICKSERV alias (the first example) listed
176 # above.
177 #
178 #<alias text="NICKSERV" format=":IDENTIFY *" replace="PRIVMSG NickServ :IDENTIFY $3-"
179 #  requires="NickServ" uline="yes">
180 #
181 # You may also add aliases to trigger based on something said in a
182 # channel, aka 'fantasy' commands, configured in the same manner as any
183 # other alias, with usercommand="no" and channelcommand="yes" The
184 # command must be preceded by the fantasy prefix when used.
185 #
186 #<alias text="CS" usercommand="no" channelcommand="yes"
187 #  replace="PRIVMSG ChanServ :$1 $chan $2-" requires="ChanServ" uline="yes">
188 #
189 # This would be used as "!cs <command> <options>", with the channel
190 # being automatically inserted after the command in the message to
191 # ChanServ, assuming the fantasy prefix is "!".
192
193 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
194 # Allowinvite module: Gives channel mode +A to allow all users to use
195 # /invite, and extban A to deny invite from specific masks
196 #<module name="m_allowinvite.so">
197
198 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
199 # Alltime module: Shows time on all connected servers at once.
200 # This module is oper-only and provides /alltime.
201 # To use, ALLTIME must be in one of your oper class blocks.
202 #<module name="m_alltime.so">
203
204 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
205 # Antibear security module: Prevents 'bear.txt' based trojans from
206 # connecting to your network by sending them a numeric they can't handle.
207 #<module name="m_antibear.so">
208
209 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
210 # Antibottler module: Labels bottler leech bots
211 #<module name="m_antibottler.so">
212
213 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
214 # Auditorium module: Adds channel mode +u which makes everyone else
215 # except you in the channel invisible, used for large meetings etc.
216 #<module name="m_auditorium.so">
217 #
218 # Auditorium settings:
219 #
220 #<auditorium showops="no" operoverride="no">
221 #
222 # showops:
223 #   Setting this value to yes makes m_auditorium behave like unrealircd
224 #   +u channel mode, e.g. ops see users joining, parting, etc, and users
225 #   joining the channel see the ops. Without this flag, the mode acts
226 #   like ircnet's +a (anonymous channels), showing only the user in the
227 #   names list, and not even showing the ops in the list, or showing the
228 #   ops that the user has joined.
229 # operoverride:
230 #   Setting this value to yes makes m_auditorium affect the userlist for
231 #   regular users only. Opers will view all users in the channel normally.
232
233 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
234 # Ban except module: Adds support for channel ban exceptions (+e)
235 #<module name="m_banexception.so">
236
237 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
238 # Ban redirection module: Allows bans which redirect to a specified
239 # channel. e.g. +b nick!ident@host#channelbanneduserissentto
240 #<module name="m_banredirect.so">
241
242 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
243 # Block amsg module: Attempt to block all usage of /amsg and /ame
244 #<module name="m_blockamsg.so">
245 #
246 #-#-#-#-#-#-#-#-#-#-#-  BLOCKAMSG CONFIGURATION  -#-#-#-#-#-#-#-#-#-#-#
247 #                                                                     #
248 # If you have the m_blockamsg.so module loaded, you can configure it  #
249 # with the <blockamsg> tag:                                           #
250 #                                                                     #
251 # delay          -   How many seconds between two messages to force   #
252 #                    them to be recognised as unrelated.              #
253 # action         -   Any of 'notice', 'noticeopers', 'silent', 'kill' #
254 #                    or 'killopers'. Define how to take action when   #
255 #                    a user uses /amsg or /ame.                       #
256 #
257 #<blockamsg delay="3" action="killopers">
258
259 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
260 # Block CAPS module: Blocking all-CAPS messages with cmode +B
261 #<module name="m_blockcaps.so">
262 #                                                                     #
263 #-#-#-#-#-#-#-#-#-#-#-  BLOCKCAPS CONFIGURATION  -#-#-#-#-#-#-#-#-#-#-#
264 #                                                                     #
265 # percent        - How many percent of text must be caps before text  #
266 #                  will be blocked.                                   #
267 #                                                                     #
268 # minlen         - The minimum length a line must be for the block    #
269 #                  percent to have any effect.                        #
270 #                                                                     #
271 # capsmap        - A list of chars to be considered CAPS, this was    #
272 #                  you can add CAPS for your language. Also you can   #
273 #                  add things like ! and space to further lock down   #
274 #                  on caps usage.                                     #
275 #<blockcaps percent="50"
276 #           minlen="5"
277 #           capsmap="ABCDEFGHIJKLMNOPQRSTUVWXYZ! ">
278
279 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
280 # Block colour module: Blocking colour-coded messages with cmode +c
281 #<module name="m_blockcolor.so">
282
283 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
284 # Botmode module: Adds the user mode +B
285 #<module name="m_botmode.so">
286
287 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
288 # CallerID module: Adds usermode +g which activates hybrid-style 
289 # callerid (== block all private messages unless you /accept first)
290 #<module name="m_callerid.so">
291
292 #-#-#-#-#-#-#-#-#-#-#- CALLERID  CONFIGURATION -#-#-#-#-#-#-#-#-#-#-#-#
293 # maxaccepts     - Maximum number of entires a user can add to his    #
294 #                  /accept list. Default is 16 entries.               #
295 # operoverride   - Can opers (note: ALL opers) ignore callerid mode?  #
296 #                  Default is no.                                     #
297 # tracknick      - Preserve /accept entries when a user changes nick? #
298 #                  If no (the default), the user is removed from      #
299 #                  everyone's accept list if he changes nickname.     #
300 # cooldown       - Amount of time (in seconds) that must pass since   #
301 #                  the last notification sent to a user before he can #
302 #                  be sent another. Default is 60 (1 minute).         #
303 #<callerid maxaccepts="16"
304 #          operoverride="no"
305 #          tracknick="no"
306 #          cooldown="60">
307
308 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
309 # CAP module: Provides the CAP negotiation mechanism seen in
310 # ratbox-derived ircds
311 #<module name="m_cap.so">
312
313 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
314 # CBAN module: Lets you disallow channels from being used at runtime.
315 # This module is oper-only and provides /cban.
316 # To use, CBAN must be in one of your oper class blocks.
317 #<module name="m_cban.so">
318
319 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
320 # Censor module: Adds the channel mode +G
321 #<module name="m_censor.so">
322 #
323 #-#-#-#-#-#-#-#-#-#-#-  CENSOR  CONFIGURATION  -#-#-#-#-#-#-#-#-#-#-#-#
324 #                                                                     #
325 # Optional - If you specify to use the m_censor module, then you must #
326 # specify some censor tags. See also:                                 #
327 # http://wiki.inspircd.org/Modules/censor                             #
328 #
329 #<include file="censor.conf">
330
331 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
332 # CGI:IRC module: Adds support for automatic host changing in CGI:IRC
333 # (http://cgiirc.sourceforge.net).
334 #<module name="m_cgiirc.so">
335 #
336 #-#-#-#-#-#-#-#-#-#-#-# CGIIRC  CONFIGURATION #-#-#-#-#-#-#-#-#-#-#-#-#
337 #
338 # Optional - If you specify to use m_cgiirc, then you must specify one
339 # or more cgihost tags which indicate authorised CGI:IRC servers which
340 # will be connecting to your network, and an optional cgiirc tag.
341 # For more information see: http://wiki.inspircd.org/Modules/cgiirc
342 #
343 # Set to yes if you want to notice opers when CGI clients connect
344 # <cgiirc opernotice="no">
345 #
346 # The type field indicates where the module should get the real
347 # client's IP address from, for further information, please see the
348 # CGI:IRC documentation.
349 #
350 # Old style:
351 # <cgihost type="pass" mask="www.mysite.com">       # Get IP from PASS
352 # <cgihost type="ident" mask="otherbox.mysite.com"> # Get IP from ident
353 # <cgihost type="passfirst" mask="www.mysite.com">  # See the docs
354 # New style:
355 # <cgihost type="webirc" password="foobar"
356 #   mask="somebox.mysite.com">                      # Get IP from WEBIRC
357 #
358 # IMPORTANT NOTE:
359 # ---------------
360 #
361 # When you connect CGI:IRC clients, there are two connect classes which
362 # apply to these clients. When the client initially connects, the connect
363 # class which matches the cgi:irc site's host is checked. Therefore you
364 # must raise the maximum local/global clients for this ip as high as you
365 # want to allow cgi clients. After the client has connected and is
366 # determined to be a cgi:irc client, the class which matches the client's
367 # real IP is then checked. You may set this class to a lower value, so that
368 # the real IP of the client can still be restricted to, for example, 3
369 # sessions maximum.
370 #
371
372
373 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
374 # Channel create module: Adds snomask +j, which will notify opers of
375 # any new channels that are created.
376 # This module is oper-only.
377 #<module name="m_chancreate.so">
378
379 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
380 # Channel filter module: Allows channel-op defined message
381 # filtering using simple string matches (channel mode +g)
382 #<module name="m_chanfilter.so">
383 #
384 # If hidemask is set to yes, the user will not be shown the mask when
385 # his/her message is blocked.
386 #<chanfilter hidemask="yes">
387
388 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
389 # Channel logging module: used to send snotice output to channels, to
390 # allow staff to centrally monitor and discuss network activity.
391 #
392 # The "channel" field is where you want the messages to go, "snomasks"
393 # is what snomasks you want to be sent to that channel. Multiple tags
394 # are allowed.
395 #<module name="m_chanlog.so">
396 #<chanlog snomasks="AOcC" channel="#opers">
397
398 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
399 # Channelban: Implements extended ban j:, which stops anyone in already
400 # in a channel matching a mask like +b j:#channel*mask from joining.
401 #<module name="m_channelban.so">
402
403 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
404 # Chanprotect module: gives +q and +a channel modes
405 #<module name="m_chanprotect.so">
406
407 <chanprotect
408         # noservices: With this set to yes, when a user joins a empty channel,
409         # the server will set +q on them. If set to no, it will only set +o
410         # on them until they register the channel.
411         noservices="no"
412
413         # qprefix: Prefix (symbol) to use for +q users.
414         qprefix="~"
415
416         # aprefix: Prefix (symbol) to use for +a users.
417         aprefix="&"
418
419         # deprotectself: If this value is set (true, yes or 1), it will allow
420         # +a and +q users to remove the +a and +q from themselves, otherwise,
421         # the status will have to be removed by services.
422         deprotectself="yes"
423
424         # deprotectothers: If this value is set to yes, true, or 1, then any
425         # user with +q or +a may remove the +q or +a from other users.
426         deprotectothers="yes">
427
428
429 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
430 # Check module: gives /check
431 # Check is useful for looking up information on channels,
432 # users, IP addresses and hosts.
433 # This module is oper-only.
434 # To use, CHECK must be in one of your oper class blocks.
435 #<module name="m_check.so">
436
437 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
438 # CHGHOST module: Adds the /CHGHOST command
439 # This module is oper-only.
440 # To use, CHGHOST must be in one of your oper class blocks.
441 #<module name="m_chghost.so">
442 #
443 #-#-#-#-#-#-#-#-# /CHGHOST - /SETHOST  CONFIGURATION #-#-#-#-#-#-#-#-#
444 # Optional - If you want to use special chars for hostnames you can  #
445 # specify your own custom list of chars with the <hostname> tag:     #
446 #                                                                    #
447 # charmap        - A list of chars accepted as valid by the /CHGHOST #
448 #                  and /SETHOST commands. Also note that the list is # 
449 #                  case-sensitive.                                   #
450 #<hostname charmap="abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ.-_/0123456789">
451
452 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
453 # CHGIDENT module: Adds the /CHGIDENT command
454 # This module is oper-only.
455 # To use, CHGIDENT must be in one of your oper class blocks.
456 #<module name="m_chgident.so">
457
458 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
459 # CHGNAME module: Adds the /CHGNAME command
460 # This module is oper-only.
461 # To use, CHGNAME must be in one of your oper class blocks.
462 #<module name="m_chgname.so">
463
464 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
465 # Cloaking module: Adds usermode +x and cloaking support.
466 # Relies on the module m_md5.so being loaded before m_cloaking.so in
467 # the configuration file.
468 # To use, you should enable m_conn_umodes and add +x as
469 # an enabled mode. See the m_conn_umodes module for more information.
470 #<module name="m_cloaking.so">
471 #
472 #-#-#-#-#-#-#-#-#-#-#- CLOAKING  CONFIGURATION -#-#-#-#-#-#-#-#-#-#-#-#
473 #                                                                     #
474 # Optional - If you specify the m_cloaking.so module as above, you    #
475 # must define cloak keys, and optionally a cloak prefix as shown      #
476 # below. When using cloaking, the cloak keys are MANDITORY and must   #
477 # be included. However, if prefix is not included, it will default    #
478 # to your networks name from the <server> tag. You can also include   #
479 # the following optional values:                                      #
480 #                                                                     #
481 #   ipalways         - Always cloak the IP address, not the hostname, #
482 #                      which doesn't reveal the user's ISP, but       #
483 #                      results in hosts that are harder to read and   #
484 #                      ban.                                           #
485 #                                                                     #
486 #   lowercase        - Display the cloaked hostnames in lowercase     #
487 #                      characters instead of uppercase                #
488 #                                                                     #
489 # <cloak key1="0x2AF39F40"                                            #
490 #        key2="0x78E10B32"                                            #
491 #        key3="0x4F2D2E82"                                            #
492 #        key4="0x043A4C81"                                            #
493 #        prefix="mynet"                                               #
494 #        ipalways="false"                                             #
495 #        lowercase="false">                                           #
496 #                                                                     #
497 # Please note that the key values will accept any number, and should  #
498 # be large numbers. Using small numbers such as "7" or "1924" will    #
499 # seriously weaken the security of your cloak. It is recommended you  #
500 # use hexdecimal numbers prefixed by "0x", as shown in this example,  #
501 # with each key eight hex digits long.                                #
502
503 #-#-#-#-#-#-#-#-#-#-#-#- CLOSE MODULE #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
504 # Close module: Allows an oper to close all unregistered connections.
505 # This module is oper-only and provides /close.
506 # To use, CLOSE must be in one of your oper class blocks.
507 #<module name="m_close.so">
508
509 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
510 # Clones module: Adds an oper command /CLONES for detecting cloned
511 # users. Warning: This module may be resource intensive when its
512 # command is issued, use with care.
513 # This module is oper-only.
514 # To use, CLONES must be in one of your oper class blocks.
515 #<module name="m_clones.so">
516
517 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
518 # Common channels module: Adds user mode +c, which, when set, requires
519 # that users must share a common channel with you to PRIVMSG or NOTICE
520 # you.
521 #<module name="m_commonchans.so">
522
523 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
524 # Conn-Join: Allows you to force users to join one or more channels
525 # automatically upon connecting to the server.
526 #<module name="m_conn_join.so">
527 #
528 #-#-#-#-#-#-#-#-#-#-#-#- CONNJOIN CONFIGURATION  -#-#-#-#-#-#-#-#-#-#-#
529 #
530 # If you have m_conn_join.so loaded, you can configure it using the
531 # follow values:
532 #
533 #<autojoin channel="#one,#two,#three">
534
535 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
536 # Conn-Usermodes: Set modes on users when they connect
537 # When this module is loaded <connect:allow> tags may have an optional
538 # modes="" value, which contains modes to add or remove from users
539 # when they connect to the server.
540 #<module name="m_conn_umodes.so">
541
542 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
543 # Conn-Wait-for-Pong: Don't let a user connect until they PONG
544 #<module name="m_conn_waitpong.so">
545 #
546 #-#-#-#-#-#-#-#-#-#-#-   WAITPONG CONFIGURATION  -#-#-#-#-#-#-#-#-#-#-#
547 #                                                                     #
548 # If you have the m_conn_waitpong.so module loaded, configure it with #
549 # the <waitpong> tag:                                                 #
550 #                                                                     #
551 # sendsnotice    -   Whether to send a snotice on connect, like other #
552 #                    older ircds                                      #
553 #                                                                     #
554 # killonbadreply -   Whether to kill the user if they send the wrong  #
555 #                    PONG reply.                                      #
556 #                                                                     #
557 #<waitpong sendsnotice="yes" killonbadreply="yes">
558
559
560 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
561 # Channel cycle module. Server side /hop, with +ilk etc bypass.
562 #<module name="m_cycle.so">
563
564 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
565 # Connectban: Provides IP connection throttling. Any IP range that connects
566 # too many times (configurable) in an hour is zlined for a (configurable)
567 # duration, and their count resets to 0.
568 #
569 # ipv4cidr and ipv6cidr allow you to turn the comparison from individual
570 # IP addresses (32 and 128 bits) into CIDR masks, to allow for throttling
571 # over whole ISPs/blocks of IPs, which may be needed to prevent attacks.
572 #
573 #<connectban threshold="10" duration="10m" ipv4cidr="32" ipv6cidr="128">
574 # This allows for 10 connections in an hour with a 10 minute ban if that is exceeded.
575 #
576 #<module name="m_connectban.so">
577
578 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
579 # Connection throttle module. Configuration:
580 #<module name="m_connflood.so">
581 #
582 #-#-#-#-#-#-#-#-#-#-#- CONTHROTTLE CONFIGURATION -#-#-#-#-#-#-#-#-#-#-#
583 #  seconds, maxconns -  Amount of connections per <seconds>.
584 #
585 #  timeout           -  Time to wait after the throttle was activated
586 #                       before deactivating it. Be aware that the time
587 #                       is seconds + timeout.
588 #
589 #  quitmsg           -  The message that users get if they attempt to
590 #                       connect while the throttle is active.
591 #
592 #  bootwait          -  Amount of time to wait before enforcing the
593 #                       throttling when the server just booted.
594 #
595 #<connflood seconds="30" maxconns="3" timeout="30"
596 #   quitmsg="Throttled" bootwait="10">
597
598 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
599 # Custom title module: Adds the /TITLE command which allows for trusted
600 #                      users to gain a custom whois line and a optional
601 #                      vhost can be specified.
602 #<module name="m_customtitle.so">
603 #
604 #-#-#-#-#-#-#-#-#-#-  CUSTOM TITLE CONFIGURATION   -#-#-#-#-#-#-#-#-#-#
605 #  name              - The username used to identify 
606 #  password          - The password used to identify
607 #  hash              - The hash for the specific user's password (optional)
608 #                      m_password_hash.so and a hashing module must be loaded for this to work
609 #  host              - Allowed hostmask [optional]
610 #  title             - Title shown in whois
611 #  vhost             - Displayed host [optional]
612 #
613 #<title name="foo" password="bar" title="Official Chat Helper">
614 #<title name="bar" password="foo" host="ident@host.name" title="Official Chat Helper" vhost="helper.network.chat">
615 #<title name="foo" password="fcde2b2edba56bf408601fb721fe9b5c338d10ee429ea04fae5511b68fbf8fb9" hash="sha256" title="Official Chat Helper">
616
617 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
618 # DCCALLOW module: Adds the /DCCALLOW command
619 #<module name="m_dccallow.so">
620 #
621 #-#-#-#-#-#-#-#-#-#-#-  DCCALLOW CONFIGURATION   -#-#-#-#-#-#-#-#-#-#-#
622 #  blockchat         - Whether to block DCC CHAT as well as DCC SEND
623 #  length            - Default duration of entries in DCCALLOW list
624 #  action            - Default action to take if no action is specified
625 #                      can be 'block' or 'allow'
626 #
627 # File configuration:
628 #  pattern           - The glob pattern to match against
629 #  action            - Action to take if a user attempts to send a file
630 #                      that matches this pattern, can be 'block' or 'allow'
631 #
632 #<dccallow blockchat="yes" length="5m" action="block">
633 #<banfile pattern="*.exe" action="block">
634 #<banfile pattern="*.txt" action="allow">
635 #
636 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
637
638 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
639 # Deaf module: adds support for ircu style usermode +d - deaf to
640 # channel messages and channel notices.
641 #<module name="m_deaf.so">
642
643 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
644 # Delay join module: Adds the channel mode +D which delays all JOIN
645 # messages from users until they speak. If they quit or part before
646 # speaking, their quit or part message will not be shown to the channel
647 # which helps cut down noise on large channels in a more friendly way
648 # than the auditorium mode. Only channel ops may set the +D mode.
649 #<module name="m_delayjoin.so">
650
651 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
652 # Deny Channels: Deny Channels from being used by users
653 #<module name="m_denychans.so"> 
654 #
655 #-#-#-#-#-#-#-#-#-#-#-   DENYCHAN DEFINITIONS  -#-#-#-#-#-#-#-#-#-#-#-#
656 #                                                                     #
657 # If you have the m_denychans.so module loaded, you need to specify   #
658 # the channels to deny:                                               #
659 #                                                                     #
660 # name        -      The channel name to deny. (glob masks are ok)    #
661 #                                                                     #
662 # allowopers  -      If operators are allowed to override the deny.   #
663 #                                                                     #
664 # reason      -      Reason given for the deny.                       #
665 #                                                                     #
666 # redirect    -      Redirect the user to a different channel         #
667 #                                                                     #
668 #<badchan name="#gods*" allowopers="yes" reason="Tortoises!">         #
669 #<badchan name="#heaven" redirect="#hell" reason="Nice try!">         #
670 #                                                                     #
671 # Redirects will not work if the target channel is set +L.            #
672 #                                                                     #
673 # Additionally, you may specify channels which are allowed, even if   #
674 # a badchan tag specifies it would be denied:                         #
675 #<goodchan name="#godsleeps">                                         #
676 # Glob masks are accepted here also.
677
678 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
679 # Devoice Module: Let users devoice themselves.
680 #<module name="m_devoice.so">
681
682 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
683 # DNS Blacklist Module: Provides support for looking up IPs on one or #
684 # more blacklists.                                                    #
685 #<module name="m_dnsbl.so">                                           #
686 #                                                                     #
687 # For configuration options please see the wiki page for m_dnsbl at   #
688 # http://wiki.inspircd.org/Modules/dnsbl                              #
689
690 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
691 # Filter module: Provides message filtering, similar to SPAMFILTER.
692 #<module name="m_filter.so">
693 #                                                                     #
694 # This module depends upon a regex provider such as m_regex_pcre or   #
695 # m_regex_glob to function. You must specify which of these you want  #
696 # m_filter to use via the tag below.                                  #
697 #                                                                     #
698 # Valid engines are:                                                  #
699 #                                                                     #
700 # glob  - Glob patterns, provided via m_regex_glob.so                 #
701 # pcre  - PCRE regexps, provided via m_regex_pcre.so, needs libpcre   #
702 # tre   - TRE regexps, provided via m_regex_tre.so, requires libtre   #
703 # posix - POSIX regexps, provided via m_regex_posix.so, not availale  #
704 #         on windows, no dependencies on other operating systems.     #
705 #                                                                     #
706 #<filteropts engine="glob">                                           #
707 #                                                                     #
708 # Your choice of regex engine must match on all servers network-wide.
709 #
710 # You may specify specific channels that are exempt from being filtered:
711 #<exemptfromfilter channel="#blah">
712 #
713 #-#-#-#-#-#-#-#-#-#-#-  FILTER  CONFIGURATION  -#-#-#-#-#-#-#-#-#-#-#-#
714 #                                                                     #
715 # Optional - If you specify to use the m_filter module, then          #
716 # specfiy below the path to the filter.conf file, or define some      #
717 # <filter> tags.                                                      #
718 #                                                                     #
719 #<include file="filter.conf">
720
721 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
722 # Foobar module: does nothing - historical relic
723 #<module name="m_foobar.so">
724
725 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
726 # Gecosban: Implements extended ban r:, which stops anyone matching
727 # a mask like +b r:*realname?here* from joining a channel.
728 #<module name="m_gecosban.so">
729
730 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
731 # GeoIP module: Allows the server admin to ban users by country code.
732 # This modules is in extras. Re-run configure with: ./configure --enable-extras=m_geoip.cpp
733 # and run make install, then uncomment this module to enable it.
734 #<module name="m_geoip.so">
735 #
736 #-#-#-#-#-#-#-#-#-#-#-#  GEOIP CONFIGURATION  #-#-#-#-#-#-#-#-#-#-#-#-#
737 #                                                                     #
738 # <geoip banunknown="false">                                          #
739 #                                                                     #
740 # Set this value to true or yes to block unknown IP ranges which are  #
741 # not in the database (usually LAN addresses, localhost, etc)         #
742 #                                                                     #
743 # <geoban country="TR" reason="This country not permitted">           #
744 #                                                                     #
745 # Use one or more of these tags to ban countries by country code.     #
746 # The country code must be in capitals and should be an ISO country   #
747 # code such as TR, GB, or US.                                         #
748
749 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
750 # Globops module: gives /GLOBOPS and SNOMASK +g
751 # This module is oper-only.
752 # To use, GLOBOPS must be in one of your oper class blocks.
753 #<module name="m_globops.so">
754
755 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
756 # Global load module: Allows loading and unloading of modules network-
757 # wide (USE WITH EXTREME CAUTION!)
758 # This module is oper-only and provides /gloadmodule, /gunloadmodule
759 # and /greloadmodule.
760 # To use, GLOADMODULE, GUNLOADMODULE and GRELOADMODULE
761 # must be in one of your oper class blocks.
762 #<module name="m_globalload.so">
763
764 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
765 # HELPOP module: Provides the /HELPOP command
766 #<module name="m_helpop.so">
767 #
768 #-#-#-#-#-#-#-#-#-#-#-#-  HELPOP  CONFIGURATION  -#-#-#-#-#-#-#-#-#-#-#
769 #                                                                     #
770 # Optional - If you specify to use the m_helpop.so module, then       #
771 # specify below the path to the helpop.conf file, or if you like to   #
772 # make a mess, define your helpop tags in this conf.                  #
773 #                                                                     #
774 #<include file="helpop.conf">
775
776 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
777 # HIDECHANS module: Allows opers to hide their channels list from non-
778 # opers by setting user mode +I on themselves.
779 # <module name="m_hidechans.so">
780 #
781 # HIDECHANS can optionally prevent opers from seeing channels on a +I
782 # user, for more privacy if set to true.
783 # This setting is not recommended for most mainstream networks.
784 #<hidechans affectsopers="false">
785
786 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
787 # HIDEOPER module: Allows opers to hide their oper status from non-
788 # opers by setting user mode +H on themselves.
789 # This module is oper-only.
790 # <module name="m_hideoper.so">
791
792 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
793 # Hostchange module: Allows a different style of cloaking
794 #<module name="m_hostchange.so">
795 #
796 #-#-#-#-#-#-#-#-#-#-#-  HOSTCHANGE  CONFIGURATION  -#-#-#-#-#-#-#-#-#-#
797 #                                                                     #
798 # Optional - If you choose to use the m_hostchange.so module.         #
799 # Config Help -  See http://wiki.inspircd.org/Modules/hostchange      #
800 #                                                                     #
801 #<host suffix="polarbears.org" separator="." prefix="">
802 #<hostchange mask="*@fbi.gov" action="addnick">
803 #<hostchange mask="*r00t@*" action="suffix">
804 #<hostchange mask="a@b.com" action="set" value="blah.blah.blah">
805 #<hostchange mask="localhost" ports="7000,7001,7005-7007" action="set" value="blahblah.foo">
806
807 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
808 # httpd module: Provides http server support for InspIRCd
809 #<module name="m_httpd.so">
810 #
811 #-#-#-#-#-#-#-#-#-#-#-#-  HTTPD   CONFIGURATION  -#-#-#-#-#-#-#-#-#-#-#
812 #
813 # Optional - If you choose to use the m_httpd.so module,  then you must
814 # specify the port number and other details of your http server:
815 #
816 #<http ip="192.168.1.10" host="brainwave" port="32006"
817 #      index="/home/brain/inspircd/http/index.html">
818 #
819 # You may have as many of these tags as you wish, each with a different
820 # IP, port, host or index file. Each one will act as an independent
821 # HTTP server.
822 #
823
824 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
825 # http ACL module: Provides access control lists for m_httpd dependent
826 # modules. Use this module to restrict pages by IP address and by
827 # password.
828 #
829 #<module name="m_httpd_acl.so">
830 #
831 #-#-#-#-#-#-#-#-#-#-#-#- HTTPD ACL CONFIGURATION -#-#-#-#-#-#-#-#-#-#-#
832 #
833 # Restrict access to the m_httpd_stats module to all but the local
834 # network and when the correct password is specified:
835 #
836 # <httpdacl path="/stats*" types="password,whitelist"
837 #    username="secretstuff" password="mypasshere" whitelist="127.0.0.*,10.*">
838
839 # Deny all connections to all but the main index page:
840 #
841 # <httpdacl path="/*" types="blacklist" blacklist="*">
842 #
843
844 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
845 # http config module: Allows the server's configuration to be viewed
846 # over HTTP. Requires m_httpd.so to be loaded for it to function.
847 #<module name="m_httpd_config.so">
848
849 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
850 # http stats module: Provides basic stats pages over HTTP
851 # Requires m_httpd.so to be loaded for it to function.
852 #<module name="m_httpd_stats.so">
853
854 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
855 # Ident: Provides RFC 1413 ident lookup support
856 # When this module is loaded <connect:allow> tags may have an optional
857 # useident="yes|no" boolean value, determining whether or not to lookup
858 # ident on users matching that connect tag.
859 #<module name="m_ident.so">
860 #
861 #-#-#-#-#-#-#-#-#-#-#-#-   IDENT CONFIGURATION   -#-#-#-#-#-#-#-#-#-#-#
862 #                                                                     #
863 # Optional - If you are using the m_ident.so module, then you can     #
864 # specify the timeout for ident lookups here. If not defined, it will #
865 # default to one second. This is a non-blocking timeout which holds   #
866 # the user in a 'connecting' state until the lookup is complete.      #
867 # The bind value indicates which IP to bind outbound requests to.     #
868 #                                                                     #
869 #<ident timeout="5">
870
871 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
872 # Invite except module: Adds support for channel invite exceptions (+I)
873 #<module name="m_inviteexception.so">
874
875 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
876 # Invisible module - Adds support for usermode +Q (quiet) which lets an
877 # oper go 'invisible' similar to unrealircd 3.1's +I mode. Note that
878 # opers are still able to see invisible users, and if an oper with +Q
879 # deopers, they will become visible. 
880 #
881 # This module is oper-only.
882 #
883 #<module name="m_invisible.so">
884
885 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
886 # Join flood module: Adds support for join flood protection (+j)
887 #<module name="m_joinflood.so">
888
889 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
890 # Jump Server module: Adds support for the RPL_REDIR numeric
891 # This module is oper-only.
892 # To use, JUMPSERVER must be in one of your oper class blocks.
893 #<module name="m_jumpserver.so">
894
895 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
896 # Anti-Auto-Rejoin: Adds support for prevention of auto-rejoin (+J)
897 #<module name="m_kicknorejoin.so">
898
899 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
900 # Knock module: adds the /KNOCK command and +K channel mode
901 #<module name="m_knock.so">
902
903 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
904 # LDAP authentication module: Adds the ability to authenticate users  #
905 # via LDAP. This is an extra module which must be enabled explicitly  #
906 # by symlinking it from modules/extra, and requires the OpenLDAP libs #
907 # This modules is in extras. Re-run configure with: ./configure --enable-extras=m_ldapauth.cpp
908 # and run make install, then uncomment this module to enable it.      #
909 #                                                                     #
910 #<module name="m_ldapauth.so">                                        #
911 #                                                                     #
912 # Configuration:                                                      #
913 #                                                                     #
914 # <ldapauth baserdn="ou=People,dc=brainbox,dc=cc"                     #
915 #           attribute="uid"                                           #
916 #           server="ldap://brainwave.brainbox.cc"                     #
917 #           allowpattern="Guest*"                                     #
918 #           killreason="Access denied"                                #
919 #           searchscope="subtree"                                     #
920 #           binddn="cn=Manager,dc=brainbox,dc=cc"                     #
921 #           bindauth="mysecretpass"                                   #
922 #           verbose="yes">                                            #
923 #                                                                     #
924 # The baserdn indicates the base DN to search in for users. Usually   #
925 # this is 'ou=People,dc=yourdomain,dc=yourtld'.                       #
926 #                                                                     #
927 # The attribute value indicates the attribute which is used to locate #
928 # a user account by name. On POSIX systems this is usually 'uid'.     #
929 #                                                                     #
930 # The server parameter indicates the LDAP server to connect to. The   #
931 # ldap:// style scheme before the hostname proper is MANDITORY.       #
932 #                                                                     #
933 # The allowpattern value allows you to specify a wildcard mask which  #
934 # will always be allowed to connect regardless of if they have an     #
935 # account, for example guest users.                                   #
936 #                                                                     #
937 # Killreason indicates the QUIT reason to give to users if they fail  #
938 # to authenticate.                                                    #
939 #                                                                     #
940 # The searchscope value indicates the subtree to search under. On our #
941 # test system this is 'subtree'. Your mileage may vary.               #
942 #                                                                     #
943 # Setting the verbose value causes an oper notice to be sent out for  #
944 # every failed authentication to the server, with an error string.    #
945 #                                                                     #
946 # The binddn and bindauth indicate the DN to bind to for searching,   #
947 # and the password for the distinguished name. Some LDAP servers will #
948 # allow anonymous searching in which case these two values do not     #
949 # need defining, otherwise they should be set similar to the examples #
950 # above.                                                              #
951
952 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
953 # LDAP oper configuration module: Adds the ability to authenticate    #
954 # opers via LDAP. This is an extra module which must be enabled       #
955 # explicitly by symlinking it from modules/extra, and requires the    #
956 # OpenLDAP libs. Re-run configure with: ./configure --enable-extras=m_ldapoper.cpp
957 # and run make install, then uncomment this module to enable it.      #
958 #                                                                     #
959 #<module name="m_ldapoper.so">
960 #                                                                     #
961 # Configuration:                                                      #
962 #                                                                     #
963 # <ldapoper baserdn="ou=People,dc=brainbox,dc=cc"
964 #           server="ldap://brainwave.brainbox.cc"
965 #           searchscope="subtree"
966 #           binddn="cn=Manager,dc=brainbox,dc=cc"
967 #           bindauth="mysecretpass">
968 #                                                                     #
969 # Available configuration items are identical to the same items in    #
970 # m_ldapauth above.                                                   #
971
972 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
973 # Lock server module: Adds /LOCKSERV and /UNLOCKSERV commands that is #
974 # used to temporarily close/open for new connections to the server.   #
975 # These commands require OPER status and that the LOCKSERV UNLOCKSERV #
976 # are specified in a <class> tag that the oper is part of. This is so #
977 # you can control who has access to this possible dangerous command.  #
978 # If your server is locked and you got disconnected, do a REHASH from #
979 # shell to open up again.
980 #
981 # This module is oper-only.
982 #
983 #<module name="m_lockserv.so">
984
985 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
986 # Map hiding module: replaces /MAP and /LINKS output to users with a  #
987 # message to see a website, set by maphide="http://link.to/site" in   #
988 # the security tag, instead.                                          #
989 #<module name="m_maphide.so">
990
991 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
992 # Msg flood module: Adds message/notice flood protection (+f)
993 #<module name="m_messageflood.so">
994
995 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
996 # MsSQL module: Allows other SQL modules to access MS SQL Server 
997 # through a unified API. You must copy the source for this module
998 # from the directory src/modules/extra, plus the file m_sqlv2.h
999 # This modules is in extras. Re-run configure with: ./configure --enable-extras=m_mssql.cpp
1000 # and run make install, then uncomment this module to enable it.
1001 #
1002 #<module name="m_mssql.so">
1003 #
1004 #-#-#-#-#-#-#-#-#-#-#-#- SQL CONFIGURATION   -#-#-#-#-#-#-#-#-#-#-#-#-#
1005 #                                                                     #
1006 # m_mssql.so is more complex than described here, see wiki for more   #
1007 # info http://wiki.inspircd.org/Modules/mssql                         #
1008 #
1009 #<database name="db" username="user" password="pass" hostname="localhost" id="db1">
1010
1011 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1012 # MySQL module: Allows other SQL modules to access MySQL databases
1013 # through a unified API. You must copy the source for this module
1014 # from the directory src/modules/extra, plus the file m_sqlv2.h
1015 # This modules is in extras. Re-run configure with: ./configure --enable-extras=m_mysql.cpp
1016 # and run make install, then uncomment this module to enable it.
1017 #
1018 #<module name="m_mysql.so">
1019 #
1020 #-#-#-#-#-#-#-#-#-#-#-#- SQL CONFIGURATION   -#-#-#-#-#-#-#-#-#-#-#-#-#
1021 #                                                                     #
1022 # m_mysql.so is more complex than described here, see the wiki for    #
1023 # more: http://wiki.inspircd.org/Modules/mysql                        #
1024 #
1025 #<database name="mydb" username="myuser" password="mypass" hostname="localhost" id="my_database2">
1026
1027 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1028 # NAMESX module: Provides support for the NAMESX extension which allows
1029 # clients to see all the prefixes set on a user without getting confused.
1030 # This is supported by mIRC, x-chat, klient, and maybe more.
1031 #<module name="m_namesx.so">
1032
1033 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1034 # National characters module:
1035 # 1) Allows using national characters in nicknames.
1036 # 2) Allows using custom (national) casemapping over the network.
1037 # file -- filename of existing file in "locales" directory
1038 # casemapping -- custom value for 005 numeric (if you want it to be
1039 # different from the filename.
1040 #
1041 #<nationalchars file="bynets/russian-w1251-charlink" casemapping="ru_RU.cp1251-charlink">
1042 #<module name="m_nationalchars.so">
1043
1044 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1045 # Nickchange flood protection module: Allows up to X nick changes in Y seconds.
1046 # Provides channel mode +F.
1047 #<module name="m_nickflood.so">
1048
1049 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1050 # Nicklock module: Let opers change a user's nick and then stop that
1051 # user from changing their nick again.
1052 # This module is oper-only.
1053 # To use, NICKLOCK and NICKUNLOCK must be in one of your oper class blocks.
1054 #<module name="m_nicklock.so">
1055
1056 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1057 # No ctcp module: Adds the channel mode +C to block CTCPs and extban C
1058 # to block CTCPs sent by specific users.
1059 #<module name="m_noctcp.so">
1060
1061 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1062 # No kicks module: Adds the +Q channel mode and the Q: extban to deny
1063 # certain users from kicking.
1064 #<module name="m_nokicks.so">
1065
1066 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1067 # No nicks module: Adds the +N channel mode, as well as the +b N:
1068 # extended bantype. +N stops all users from changing their nick,
1069 # the +b N: extban stops anyone from matching a +b N:nick!user@host
1070 # mask from changing their nick.
1071 #<module name="m_nonicks.so">
1072
1073 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1074 # No part message module: adds extban 'p' to block part messages from #
1075 # matching users.                                                     #
1076 #<module name="m_nopartmsg.so">
1077
1078 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1079 # No Notice module: adds the channel mode +T and the extban T to block
1080 # specific users from noticing the channel.
1081 #<module name="m_nonotice.so">
1082
1083 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1084 # Oper channels mode: Adds the +O channel mode
1085 # This module is oper-only.
1086 #<module name="m_operchans.so">
1087
1088 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1089 # Oper invex/extban module: Adds +beI type O, to ban, exempt, and invex
1090 # given oper type masks.
1091 # e.g, /mode #channel +iI O:* is equivilant to chmode +O, but you
1092 # may also, e.g. /mode #channel +iI O:AdminTypeOnly to only allow admins.
1093 # +be work in a similar fashion.
1094 # This module is oper-only.
1095 #
1096 #<module name="m_operinvex.so">
1097
1098 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1099 # Oper Join module: Auto-joins opers to a channel upon oper-up
1100 # This module is oper-only. For the user equivalent, see m_conn_join.
1101 #<module name="m_operjoin.so">
1102 #
1103 #-#-#-#-#-#-#-#-#-#-#   OPERJOIN CONFIGURATION   -#-#-#-#-#-#-#-#-#-#-#
1104 #                                                                     #
1105 # If you are using the m_operjoin.so module, specify options here:    #
1106 #                                                                     #
1107 # channel     -      The channel name to join, can also be a comma    #
1108 #                    seperated list eg. "#channel1,#channel2".        #
1109 #                                                                     #
1110 # override    -      Lets the oper join walking thru any modes that   #
1111 #                    might be set, even bans. Use "yes" or "no".      #
1112 #                                                                     #
1113 #<operjoin channel="#channel" override="no">
1114 #
1115 # Alternatively you can use the autojoin="channellist" in a <type>    #
1116 # tag to set specific autojoins for a type of oper, for example:      #
1117 #
1118 #<type name="Helper" autojoin="#help" classes="...">
1119
1120 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1121 # Oper log module: Logs all oper commands to the ircd log at default
1122 # loglevel.
1123 # This module is oper-only.
1124 #<module name="m_operlog.so">
1125
1126 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1127 # Oper prefixing module: Gives IRC operators a prefix status character
1128 # on all channels they are in.
1129 #
1130 #<module name="m_operprefix.so">
1131 #
1132 # You may additionally customise the prefix character.
1133 #<operprefix prefix="!">
1134
1135 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1136 # Oper MOTD module: Provides support for seperate message of the day
1137 # on oper-up
1138 # This module is oper-only.
1139 #<module name="m_opermotd.so">
1140 #
1141 #-#-#-#-#-#-#-#-#-#-#   OPERMOTD CONFIGURATION   -#-#-#-#-#-#-#-#-#-#-#
1142 #                                                                     #
1143 # If you are using the m_opermotd.so module, specify the motd here    #
1144 #                                                                     #
1145 # onoper      -      Should the message be sent on /OPER or only when #
1146 #                    /OPERMOTD is used. Use "yes" or "no".            #
1147 #                                                                     #
1148 #<opermotd file="oper.motd" onoper="yes">
1149
1150 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1151 # Override module: Adds support for oper override
1152 # This module is oper-only.
1153 #<module name="m_override.so">
1154 #
1155 #-#-#-#-#-#-#-#-#-#-#   OVERRIDE CONFIGURATION   -#-#-#-#-#-#-#-#-#-#-#
1156 #                                                                     #
1157 # m_override.so is too complex it describe here, see the wiki:        #
1158 # http://wiki.inspircd.org/Modules/override                           #
1159
1160 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1161 # Oper levels module: Gives each oper a level and prevents
1162 # actions being taken against higher level opers
1163 # Specify the level as the 'level' parameter of the <type> tag
1164 # # This module is oper-only.
1165 #<module name="m_operlevels.so">
1166
1167 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1168 # Oper modes module: Allows you to specify modes to add/remove on oper
1169 # Specify the modes as the 'modes' parameter of the <type> tag
1170 # and/or as the 'modes' parameter of the <oper> tag.
1171 # This module is oper-only. For the user equivalent, see m_conn_umodes
1172 #<module name="m_opermodes.so">
1173
1174 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1175 # Oper password hash module: Allows hashed oper passwords
1176 # Relies on the module m_md5.so and/or m_sha256.so being loaded before
1177 # m_password_hash.so in the configuration file.
1178 # This module is oper-only.
1179 #<module name="m_password_hash.so">
1180 #
1181 #-#-#-#-#-#-#-#-#-#-# OPER HASH CONFIGURATION #-#-#-#-#-#-#-#-#-#-#-#-#
1182 #
1183 # To use this module, you must define a hash type for each oper's
1184 # password you want to hash. For example:
1185 #
1186 #     <oper name="Brain"
1187 #           host="ident@dialup15.isp.com"
1188 #           hash="sha256"
1189 #           password="a41d730937a53b79f788c0ab13e9e1d5"
1190 #           type="NetAdmin">
1191
1192 # The types of hashing available vary depending on which hashing modules
1193 # you load, but usually if you load m_sha256.so and m_md5.so, both md5
1194 # and sha256 type hashing will be available (the most secure of which
1195 # is SHA256).
1196
1197 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1198 # Permanent Channels module: Channels with the permanent channels mode
1199 # will remain open even after everyone else has left the channel, and
1200 # therefore keep things like modes, ban lists and topic. Permanent
1201 # channels -may- need support from your Services package to function
1202 # properly with them. This adds channel mode +P.
1203 # This module is oper-only.
1204 #<module name="m_permchannels.so">
1205 #
1206 # You may also create channels on startup by using the <permchannels> block.
1207 #<permchannels channel="#opers" modes="is" topic="Opers only.">
1208
1209 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1210 # PostgreSQL module: Allows other SQL modules to access PgSQL databases
1211 # through a unified API. You must copy the source for this module
1212 # from the directory src/modules/extra, plus the file m_sqlv2.h
1213 # This modules is in extras. Re-run configure with: ./configure --enable-extras=m_pgsql.cpp
1214 # and run make install, then uncomment this module to enable it.
1215 #
1216 #<module name="m_pgsql.so">
1217 #
1218 #-#-#-#-#-#-#-#-#-#-#-#- SQL CONFIGURATION   -#-#-#-#-#-#-#-#-#-#-#-#-#
1219 #                                                                     #
1220 # m_pgsql.so is more complex than described here, see the wiki for    #
1221 # more: http://wiki.inspircd.org/Modules/pgsql                        #
1222 #
1223 #<database name="mydb" username="myuser" password="mypass" hostname="localhost" id="my_database" ssl="no">
1224
1225 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1226 # Muteban: Implements extended ban m:, which stops anyone matching
1227 # a mask like +b m:nick!user@host from speaking on channel.
1228 #<module name="m_muteban.so">
1229 #
1230
1231 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1232 # Random Quote module: provides a random quote on connect.
1233 # NOTE: Some of these may mimic fatal errors and confuse users and 
1234 # opers alike! - BEWARE!
1235 #<module name="m_randquote.so">
1236 #
1237 #-#-#-#-#-#-#-#-#-#-  RANDOMQUOTES CONFIGURATION -#-#-#-#-#-#-#-#-#-#-#
1238 #                                                                     #
1239 # Optional - If you specify to use the m_randquote.so module, then    #
1240 # specify below the path to the randquotes.conf file.                 #
1241 #                                                                     #
1242 #<randquote file="randquotes.conf">
1243
1244 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1245 # Redirect module: Adds channel redirection (mode +L)
1246 #<module name="m_redirect.so">
1247
1248 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1249 # Regular Expression Provider for Glob or wildcard (?/*) matching.
1250 # You must have at least 1 provider loaded to use m_filter or m_rline
1251 # modules. This module has no additional requirements, as it uses the
1252 # matching already present in InspIRCd core.
1253 #<module name="m_regex_glob.so">
1254
1255 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1256 # Regular Expression Provider for PCRE (Perl-Compatible Regular
1257 # Expressions). You need libpcre installed to compile and load this
1258 # module. You must have at least 1 provider loaded to use m_filter or
1259 # m_rline.
1260 #<module name="m_regex_pcre.so">
1261
1262 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1263 # Regular Expression Provider for POSIX Regular Expressions.
1264 # You shouldn't need any additional libraries on a POSIX-compatible
1265 # system (ie: any Linux, BSD, but not Windows). You must have at least
1266 # 1 provider loaded to use m_filter or m_rline.
1267 # On POSIX-compliant systems, regex syntax can be found by using the
1268 # command: 'man 7 regex'.
1269 #<module name="m_regex_posix.so">
1270
1271 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1272 # Regular Expression Provider for TRE Regular Expressions.
1273 # This is the same regular expression engine used by UnrealIRCd, so
1274 # if you are most familiar with the syntax of /spamfilter from there,
1275 # this is the provider you want. You need libtre installed in order
1276 # to compile and load this module.
1277 #<module name="m_regex_tre.so">
1278
1279 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1280 # Registered users only channel creation
1281 # Allows only registered users and opers to create new channels.
1282 #<module name="m_regonlycreate.so">
1283
1284 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1285 # Remove module: Adds the /REMOVE command which is a peaceful
1286 # alternative to /KICK
1287 #<module name="m_remove.so">
1288
1289 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1290 # Restricted channels module: Allows only opers to create channels
1291 #<module name="m_restrictchans.so">
1292
1293 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1294 # Restrict message module: Allows users to only message opers
1295 #<module name="m_restrictmsg.so">
1296
1297 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1298 # Ban users through regular expression patterns
1299 #<module name="m_rline.so">
1300 #
1301 #-#-#-#-#-#-#-#-#-#-#-#- RLINE CONFIGURATION -#-#-#-#-#-#-#-#-#-#-#-#-#
1302 #
1303 # If you wish to re-check a user when they change nickname (can be
1304 # useful under some situations, but *can* also use CPU with more users
1305 # on a server) then set the following configuration value:
1306 # Also, this is where you set what Regular Expression engine is to be
1307 # used. If you ever change it while running, all of your R-Lines will be
1308 # wiped. This is the regex engine used by all R-Lines set, and
1309 # m_regex_<engine>.so must be loaded, or rline will be nonfunctional
1310 # until you load it or change the engine to one that is loaded.
1311 #
1312 #<rline matchonnickchange="yes" engine="pcre">
1313 #
1314 # Generally, you will NOT want to use 'glob' here, as this turns
1315 # rline into just another gline. The exceptions are that rline will
1316 # always use the full nick!user@host realname string, rather than only
1317 # user@host, but beware that only the ? and * wildcards are available,
1318 # and are the only way to specify where the space can occur if you do
1319 # use glob. For this reason, is recommended to use a real regex engine
1320 # so that at least \s or [[:space:]] is available.
1321
1322 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1323 # JSON-RPC module: Encode and decode JSON-RPC requests for modules
1324 #<module name="m_rpc_json.so">
1325
1326 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1327 # RPC test module: A test of the RPC API
1328 #<module name="m_rpctest.so">
1329
1330 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1331 # Provide /LIST throttling (to prevent flooding) and /LIST safety to
1332 # prevent excess flood when the list is large.
1333 #<module name="m_safelist.so">
1334 #
1335 #-#-#-#-#-#-#-#-#-#-# SAFELIST CONFIGURATION -#-#-#-#-#-#-#-#-#-#-#-#-#
1336 #
1337 # When using Safelist, you may set the following values;
1338 #
1339 # The first value, 'throttle', sets the amount of time in seconds a user
1340 # must wait between LIST commands. For example, if this is set to 60
1341 # (the default) then the user may not /LIST more than once a minute.
1342 # If not defined, the default value is 60 seconds.
1343 #
1344 # The second value, 'maxlisters', indicates the maximum number of users
1345 # which may be retrieving a LIST at once. It is not recommended you raise
1346 # this value, as increasing it too high can make your network vulnerable
1347 # to floodbots which waste your bandwidth and CPU time with LIST requests.
1348 #
1349 #<safelist throttle="60" maxlisters="50">
1350
1351 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1352 # SAJOIN module: Adds the /SAJOIN command
1353 # This module is oper-only.
1354 # To use, SAJOIN must be in one of your oper class blocks.
1355 #<module name="m_sajoin.so">
1356
1357 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1358 # SAKICK module: Adds the /SAKICK command
1359 # This module is oper-only.
1360 # To use, SAKICK must be in one of your oper class blocks.
1361 #<module name="m_sakick.so">
1362
1363 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1364 # SAMODE module: Adds the oper /SAMODE command
1365 # This module is oper-only.
1366 # To use, SAMODE must be in one of your oper class blocks.
1367 #<module name="m_samode.so">
1368
1369 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1370 # SANICK module: Allows opers to change user's nicks
1371 # This module is oper-only.
1372 # To use, SANICK must be in one of your oper class blocks.
1373 #<module name="m_sanick.so">
1374
1375 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1376 # SAPART module: Adds the oper /SAPART command
1377 # This module is oper-only.
1378 # To use, SAPART must be in one of your oper class blocks.
1379 #<module name="m_sapart.so">
1380
1381 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1382 # SAQUIT module: Adds the oper /SAQUIT command (abusable!!!)
1383 # This module is oper-only.
1384 # To use, SAQUIT must be in one of your oper class blocks.
1385 #<module name="m_saquit.so">
1386
1387 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1388 # SATOPIC module: Adds the oper /SATOPIC command
1389 # This module is oper-only.
1390 # To use, SATOPIC must be in one of your oper class blocks.
1391 #<module name="m_satopic.so">
1392
1393 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1394 # SASL authentication module: Provides support for IRC Authentication 
1395 # Layer (aka: atheme SASL) via AUTHENTICATE.
1396 #<module name="m_sasl.so">
1397
1398 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1399 # Secure list module: Prevent /LIST in the first minute of connection,
1400 # crippling most spambots and trojan spreader bots.
1401 #<module name="m_securelist.so">
1402 #
1403 #-#-#-#-#-#-#-#-#-# SECURELIST CONFIGURATION -#-#-#-#-#-#-#-#-#-#-#-#-#
1404 #                                                                     #
1405 # Securelist can be harmful to some irc search engines such as        #
1406 # netsplit.de and searchirc.com. To prevent securelist blocking these #
1407 # sites from listing, define exception tags as shown below:           #
1408 <securehost exception="*@*.searchirc.org">
1409 <securehost exception="*@*.netsplit.de">
1410 <securehost exception="*@echo940.server4you.de">
1411 #                                                                     #
1412 # Define the following variable to change how long a user must wait   #
1413 # before issuing a LIST. If not defined, defaults to 60 seconds.      #
1414 #                                                                     #
1415 #<securelist waittime="60">                                           #
1416
1417 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1418 # Servprotect module: Provides support for Austhex style +k /
1419 # UnrealIRCD +S services mode
1420 #<module name="m_servprotect.so">
1421
1422 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1423 # See nicks module: Allow for SNOMASK +N which shows nick changes.
1424 # This module is oper-only.
1425 #<module name="m_seenicks.so">
1426
1427 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1428 # Set Idle module: Adds a command for opers to change their
1429 # idle time (mainly a toy)
1430 # This module is oper-only.
1431 # To use, SETIDLE must be in one of your oper class blocks.
1432 #<module name="m_setidle.so">
1433
1434 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1435 # Services support module: Adds several usermodes such as +R and +M
1436 # this module implements the 'identified' state via account names (AC)
1437 # and is similar in operation to the way asuka and ircu handle services.
1438 #
1439 # At the same time, this offers +r for users and channels to mark them
1440 # as identified seperately from the idea of a master account, which
1441 # can be useful for services which are heavily nick-as-account centric.
1442 #
1443 # This replaces m_services from 1.1 and earlier.
1444 #
1445 # Also of note is that this module implements two extbans:
1446 # +b R: (stop matching account names from joining)
1447 # +b M: (stop matching account names from speaking)
1448 #                                                                       
1449 #<module name="m_services_account.so">
1450
1451 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1452 # Sethost module: Adds the /SETHOST command
1453 # This module is oper-only.
1454 # To use, SETHOST must be in one of your oper class blocks.
1455 # See m_chghost for how to customise valid chars for hostnames
1456 #<module name="m_sethost.so">
1457
1458 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1459 # Setident module: Adds the /SETIDENT command
1460 # This module is oper-only.
1461 # To use, SETIDENT must be in one of your oper class blocks.
1462 #<module name="m_setident.so">
1463
1464 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1465 # SETNAME module: Adds the /SETNAME command
1466 # This module is oper-only.
1467 # To use, SETNAME must be in one of your oper class blocks.
1468 #<module name="m_setname.so">
1469
1470 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1471 # Serverban: Implements extended ban s:, which stops anyone connected
1472 # to a server matching a mask like +b s:server.mask.here from joining.
1473 #<module name="m_serverban.so">
1474
1475 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1476 # Show Whois module: Adds the +W usermode which allows opers
1477 # to see when they are whois'ed (can be annoying).
1478 # This module is oper-only.
1479 #<module name="m_showwhois.so">
1480 #
1481 # If you wish, you may also let users set this mode. Only opers with the
1482 # users/auspex priv will see real hosts of people, though. This setting
1483 # is not reloadable via /rehash, and will require /reloadmodule, as
1484 # it directly affects the mode object itself.
1485 #<showwhois opersonly="yes"
1486 #
1487 # You may also set whether or not users should recieve whois notices, should
1488 # they be /whois'd by an oper.
1489 # showfromopers="yes">
1490
1491 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1492 # Shun module: Provides the /shun command, which stops a user executing 
1493 # most commands.
1494 # This module is oper-only.
1495 # To use, SHUN must be in one of your oper class blocks.
1496 #<module name="m_shun.so">
1497 #
1498 # You may also configure which commands you wish a user to be able to
1499 # perform. It should be noted that if a shunned user issues QUIT or PART
1500 # then their message will be removed, as if they did not issue one.
1501 #
1502 # You can (optionally) let the user know that their command was blocked.
1503 #
1504 # You may also let SHUN affect opers (defaults to no).
1505 #<shun enabledcommands="PING PONG QUIT PART JOIN" notifyuser="yes" affectopers="no">
1506
1507 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1508 # Spy module: Provides the ability to see the complete names list of 
1509 # channels an oper is not a member of
1510 # This module is oper-only.
1511 #<module name="m_spy.so">
1512
1513 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1514 # SSL channel mode module: Adds support for SSL-only channels (+z).
1515 # does not do anything useful without a working SSL module (see below)
1516 #<module name="m_sslmodes.so">
1517
1518 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1519 # GnuTLS ssl module: Adds support for client-server SSL using GnuTLS,
1520 # if enabled. You must copy the source for this module from the directory
1521 # src/modules/extra, or answer 'yes' in ./configure when asked if you
1522 # want to enable this, or it will not load.
1523 #<module name="m_ssl_gnutls.so">
1524 #
1525 #-#-#-#-#-#-#-#-#-#-#-  GNUTLS CONFIGURATION   -#-#-#-#-#-#-#-#-#-#-#-#
1526 #                                                                     #
1527 # m_ssl_gnutls.so is too complex it describe here, see the wiki:      #
1528 # http://wiki.inspircd.org/Modules/ssl_gnutls                         #
1529 #                                                                     #
1530 # NOTE: If you want to use this module to encrypt and sign your       #
1531 # server to server traffic, you MUST load it before m_spanningtree in #
1532 # your configuration file!                                            #
1533
1534 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1535 # SSL Info module: Allows users to retrieve information about other
1536 # user's peer SSL certificates and keys. This can be used by client
1537 # scripts to validate users. For this to work, one of m_ssl_gnutls.so
1538 # or m_ssl_openssl.so must be loaded. This module also adds the 
1539 # "* <user> is using a secure connection" whois line, the ability for
1540 # opers to use SSL fingerprints to verify their identity and the ability
1541 # to force opers to use SSL connections in order to oper up.
1542 # It is highly recommended to load this module especially if
1543 # you use SSL on your network.
1544 # For how to use the oper features, please see the first example <oper> tag
1545 # in opers.conf.example.
1546 #
1547 #<module name="m_sslinfo.so">
1548
1549 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1550 # OpenSSL ssl module: Adds support for client-server SSL using OpenSSL,
1551 # if enabled. You must copy the source for this module from the directory
1552 # src/modules/extra, or answer 'yes' in ./configure when asked if you
1553 # want to enable this, or it will not load.
1554 #<module name="m_ssl_openssl.so">
1555 #
1556 #-#-#-#-#-#-#-#-#-#-#- OPENSSL CONFIGURATION   -#-#-#-#-#-#-#-#-#-#-#-#
1557 #                                                                     #
1558 # m_ssl_openssl.so is too complex it describe here, see the wiki:     #
1559 # http://wiki.inspircd.org/Modules/ssl_openssl                        #
1560 #                                                                     #
1561 # NOTE: If you want to use this module to encrypt and sign your       #
1562 # server to server traffic, you MUST load it before m_spanningtree in #
1563 # your configuration file!                                            #
1564
1565 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1566 # Strip colour module: Adds the channel mode +S
1567 #<module name="m_stripcolor.so">
1568
1569 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1570 # SILENCE module: Adds support for /SILENCE
1571 #<module name="m_silence.so">
1572 #
1573 # Configuration tags:
1574 #
1575 #<silence maxentries="32">
1576 #
1577 # Sets the maximum number of entries on a users silence list.
1578
1579 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1580 # SQLite3 module: Allows other SQL modules to access SQLite3          #
1581 # databases through a unified API. You must link the source for this  #
1582 # module from the directory src/modules/extra to src/modules, plus    #
1583 # the file m_sqlv2.h                                                  #
1584 # This modules is in extras. Re-run configure with: ./configure --enable-extras=m_aqlite.cpp
1585 # and run make install, then uncomment this module to enable it.      #
1586 #
1587 #<module name="m_sqlite3.so">
1588 #
1589 #-#-#-#-#-#-#-#-#-#-#-#- SQL CONFIGURATION   -#-#-#-#-#-#-#-#-#-#-#-#-#
1590 #                                                                     #
1591 # m_sqlite.so is more complex than described here, see the wiki for   #
1592 # more: http://wiki.inspircd.org/Modules/sqlite3                      #
1593 #
1594 #<database hostname="/full/path/to/database.db" id="anytext">
1595
1596 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1597 # SQLutils module: Provides some utilities to SQL client modules, such
1598 # as mapping queries to users and channels. You must copy the source
1599 # for this module from the directory src/modules/extra/m_sqlutils.cpp
1600 # and src/modules/extra/m_sqlutils.h into /src/modules
1601 # Needed for, and loaded before: SQLauth and SQLoper
1602 # This modules is in extras. Re-run configure with: ./configure --enable-extras=m_sqlutils.cpp
1603 # and run make install, then uncomment this module to enable it.
1604 #
1605 #<module name="m_sqlutils.so">
1606
1607 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1608 # SQL authentication module: Allows IRCd connections to be tied into
1609 # a database table (for example a forum). You must copy the source for
1610 # this module from the directory src/modules/extra
1611 # Depends on the SQLutils module being loaded first.
1612 # This modules is in extras. Re-run configure with: ./configure --enable-extras=m_sqlauth.cpp
1613 # and run make install, then uncomment this module to enable it.
1614 #
1615 #<module name="m_sqlauth.so">
1616 #
1617 #-#-#-#-#-#-#-#-#-#-#- SQLAUTH CONFIGURATION   -#-#-#-#-#-#-#-#-#-#-#-#
1618 #                                                                     #
1619 # m_sqlauth.so is too complex it describe here, see the wiki:         #
1620 # http://wiki.inspircd.org/Modules/sqlauth                            #
1621
1622 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1623 # SQL logging module: Allows you to log network-wide data for your
1624 # network in a fully normalised set of SQL tables. You must copy the
1625 # source for this module from the directory src/modules/extra
1626 # This modules is in extras. Re-run configure with: ./configure --enable-extras=m_sqllog.cpp
1627 # and run make install, then uncomment this module to enable it.
1628 #
1629 #<module name="m_sqllog.so">
1630 #
1631 #-#-#-#-#-#-#-#-#-#-#-  SQLLOG CONFIGURATION   -#-#-#-#-#-#-#-#-#-#-#-#
1632 #                                                                     #
1633 # dbid       - Database ID to use (see m_sql)                         #
1634 #                                                                     #
1635 # See also: http://wiki.inspircd.org/Modules/sqllog                   #
1636 #                                                                     #
1637 #<sqllog dbid="1">
1638
1639 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1640 # SQL oper module: Allows you to store oper credentials in an SQL table
1641 # You must copy the source for this module from the directory src/modules/extra
1642 # Depends on the SQLutils module being loaded first.
1643 # This modules is in extras. Re-run configure with: ./configure --enable-extras=m_sqloper.cpp
1644 # and run make install, then uncomment this module to enable it.
1645 #
1646 #<module name="m_sqloper.so">
1647 #
1648 #-#-#-#-#-#-#-#-#-#-#- SQLOPER CONFIGURATION   -#-#-#-#-#-#-#-#-#-#-#-#
1649 #                                                                     #
1650 # dbid       - Database ID to use (see m_sql)                         #
1651 # hash       - Hashing provider to use for password hashing           #
1652 #                                                                     #
1653 # See also: http://wiki.inspircd.org/Modules/sqloper                  #
1654 #                                                                     #
1655 #<sqloper dbid="1" hash="md5">
1656
1657 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1658 # SVSHold module: Implements SVSHOLD. Like Q:Lines, but can only be   #
1659 # added/removed by Services.                                          #
1660 #<module name="m_svshold.so">
1661
1662 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1663 # SWHOIS module: Allows you to add arbitary lines to user WHOIS.
1664 # This module is oper-only.
1665 # To use, SWHOIS must be in one of your oper class blocks.
1666 #<module name="m_swhois.so">
1667
1668 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1669 # Taxonomy module: Adds the /TAXONOMY command, used to view all
1670 #                  metadata attached to a user.
1671 # This module is oper-only.
1672 # To use, TAXONOMY must be in one of your oper class blocks.
1673 #<module name="m_taxonomy.so">
1674
1675 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1676 # Test command module: Does nothing significant. Read: pointless.
1677 #<module name="m_testcommand.so">
1678
1679 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1680 # Timed bans module: Adds timed channel bans and the /TBAN command
1681 #<module name="m_timedbans.so">
1682
1683 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1684 # Test line module: Adds the /TLINE command, used to test how many
1685 # users a /GLINE or /ZLINE etc would match.
1686 # This module is oper-only.
1687 # To use, TLINE must be in one of your oper class blocks.
1688 #<module name="m_tline.so">
1689
1690 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1691 # UHNAMES support module: Adds support for the IRCX style UHNAMES
1692 # extension, which displays ident and hostname in the names list for
1693 # each user, saving clients from doing a WHO on the channel. Note that
1694 # this module is not widely supported yet. If a client does not support
1695 # UHNAMES it will not enable it, this will not break incompatible
1696 # clients.
1697 #<module name="m_uhnames.so">
1698
1699 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1700 # Uninvite module: Adds the /UNINVITE command which lets users remove
1701 # pending invites from channels without waiting for the user to join.
1702 #<module name="m_uninvite.so">
1703
1704 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1705 # Userip module: Adds the /USERIP command
1706 # This module is oper-only.
1707 # To use, USERIP must be in one of your oper class blocks.
1708 #<module name="m_userip.so">
1709
1710 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1711 # Vhost module: Adds the VHOST command which allows for adding virtual
1712 # hosts which are accessible using a username and password in the config.
1713 #<module name="m_vhost.so">
1714 #
1715 #-#-#-#-#-#-#-#-#-#-#- VHOST CONFIGURATION   -#-#-#-#-#-#-#-#-#-#-#-#-#
1716 #                                                                     #
1717 # user       - Username for the vhost.                                #
1718 #                                                                     #
1719 # pass       - Password for the vhost.                                #
1720 #                                                                     #
1721 # hash       - The hash for the specific user (optional)
1722 #              m_password_hash.so and a hashing module must be loaded for this to work
1723 #                                                                     #
1724 # host       - Vhost to set.                                          #
1725 #
1726 #<vhost user="some_username" pass="some_password" host="some.host">
1727 #<vhost user="foo" password="fcde2b2edba56bf408601fb721fe9b5c338d10ee429ea04fae5511b68fbf8fb9" hash="sha256" host="some.other.host">
1728
1729 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1730 # Watch module: Adds the WATCH command, which is used by clients to 
1731 # maintain notify lists.
1732 #<module name="m_watch.so">
1733 #
1734 # Configuration tags:
1735 #
1736 #<watch maxentries="32">
1737 #
1738 # Sets the maximum number of entries on a user's watch list.
1739
1740 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1741 # XLine database: Stores all *Lines (G/Z/K/R/any added by other modules)
1742 # in a file "xline.db" which can be re-loaded on restart. This is useful
1743 # for two reasons: it keeps bans so users may not evade them, and on
1744 # bigger networks, server connections will take less time as there will
1745 # be a lot less bans to apply - as most of them will already be there.
1746 #<module name="m_xline_db.so">
1747
1748 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1749 # ZipLinks module: Adds support for zlib deflate on server to server
1750 # connections. Both ends of the connection must load this module.
1751 # This modules is in extras. Re-run configure with: ./configure --enable-extras=m_ziplink.cpp
1752 # and run make install, then uncomment this module to enable it.
1753 #
1754 #<module name="m_ziplink.so">
1755 #
1756 # To use this module, you must enable it as a transport type in your
1757 # <link> tags or <bind> tags using the transport name 'zip'.
1758 # See the documentation of <link> and <bind>, respectively.
1759 #
1760
1761
1762 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1763 #    ____                _   _____ _     _       ____  _ _   _        #
1764 #   |  _ \ ___  __ _  __| | |_   _| |__ (_)___  | __ )(_) |_| |       #
1765 #   | |_) / _ \/ _` |/ _` |   | | | '_ \| / __| |  _ \| | __| |       #
1766 #   |  _ <  __/ (_| | (_| |   | | | | | | \__ \ | |_) | | |_|_|       #
1767 #   |_| \_\___|\__,_|\__,_|   |_| |_| |_|_|___/ |____/|_|\__(_)       #
1768 #                                                                     #
1769 # To link servers to InspIRCd, you MUST load the m_spanningtree       #
1770 # module. Since several features (like SSL server links) rely on      #
1771 # other modules being loaded before m_spanningtree, the module itself #
1772 # is at the bottom of this file. DO NOT forget to load it. If you DO  #
1773 # NOT do this, server links will NOT work at all. ie. The ports will  #
1774 # NOT bind, and /connect will not work properly. This is by design,   #
1775 # to allow for the implementation of other linking protocols in       #
1776 # modules in the future.                                              #
1777 #                                                                     #
1778
1779 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1780 # Spanning Tree module - allows linking of servers using the spanning
1781 # tree protocol (see the READ THIS BIT section above).
1782 # You will almost always want to load this.
1783 #
1784 #<module name="m_spanningtree.so">
1785
1786