]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - docs/conf/modules.conf.example
Add support for the IRCv3 batch specification.
[user/henk/code/inspircd.git] / docs / 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 #  https://wiki.inspircd.org/3.0/Modules for a list of modules and    #
14 #  each modules link for any additional conf tags they require.       #
15 #                                                                     #
16 #    ____                _   _____ _     _       ____  _ _   _        #
17 #   |  _ \ ___  __ _  __| | |_   _| |__ (_)___  | __ )(_) |_| |       #
18 #   | |_) / _ \/ _` |/ _` |   | | | '_ \| / __| |  _ \| | __| |       #
19 #   |  _ <  __/ (_| | (_| |   | | | | | | \__ \ | |_) | | |_|_|       #
20 #   |_| \_\___|\__,_|\__,_|   |_| |_| |_|_|___/ |____/|_|\__(_)       #
21 #                                                                     #
22 # To link servers to InspIRCd, you MUST load the spanningtree module. #
23 # If you don't do this, server links will NOT work at all.            #
24 # This is by design, to allow for the implementation of other linking #
25 # protocols in modules in the future. This module is at the bottom of #
26 # this file.                                                          #
27 #                                                                     #
28
29 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
30 # MD5 module: Allows other modules to generate MD5 hashes, usually for
31 # cryptographic uses and security.
32 #
33 # IMPORTANT:
34 # Other modules such as cloaking and password_hash may rely on
35 # this module being loaded to function.
36 #
37 #<module name="md5">
38 #
39 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
40 # SHA256 module: Allows other modules to generate SHA256 hashes,
41 # usually for cryptographic uses and security.
42 #
43 # IMPORTANT:
44 # Other modules such as password_hash may rely on this module being
45 # loaded to function. Certain modules such as spanningtree will
46 # function without this module but when it is loaded their features will
47 # be enhanced (for example the addition of HMAC authentication).
48 #
49 #<module name="sha256">
50 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
51 # RIPEMD160 module: Allows other modules to generate RIPEMD160 hashes,
52 # usually for cryptographic uses and security.
53 #
54 # IMPORTANT:
55 # Other modules may rely on this module being loaded to function.
56 #<module name="ripemd160">
57
58 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
59 # Abbreviation module: Provides the ability to abbreviate commands a-la
60 # BBC BASIC keywords.
61 #<module name="abbreviation">
62
63 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
64 # Alias module: Allows you to define server-side command aliases.
65 #<module name="alias">
66 #
67 # Set the 'prefix' for in-channel aliases (fantasy commands) to the
68 # specified character. If not set, the default is "!".
69 # If 'allowbots' is disabled, +B clients will not be able to use
70 # fantasy commands. If not set, the default is no.
71 #<fantasy prefix="!" allowbots="no">
72 #
73 #-#-#-#-#-#-#-#-#-#-#-  ALIAS DEFINITIONS  -#-#-#-#-#-#-#-#-#-#-#-#-#-#
74 #                                                                     #
75 # If you have the alias module loaded, you may also define aliases as #
76 # shown below. They are commonly used to provide shortcut commands to #
77 # services, however they are not limited to just this use.            #
78 # An alias tag requires the following values to be defined in it:     #
79 #                                                                     #
80 # text        -      The text to detect as the actual command line.   #
81 #                    Can't contain spaces, but case insensitive.      #
82 #                    You may have multiple aliases with the same      #
83 #                    command name (text="" value), however the first  #
84 #                    found will be executed if its format value is    #
85 #                    matched, or it has no format value. Aliases are  #
86 #                    read from the top of the file to the bottom.     #
87 #                                                                     #
88 # usercommand -      If this is true, the alias can be run simply as  #
89 #                    /aliasname. Defaults to true.                    #
90 #                                                                     #
91 # channelcommand -   If this is true, the alias can be used as an     #
92 #                    in-channel alias or 'fantasy command', prefixed  #
93 #                    by the fantasy prefix character, !aliasname by   #
94 #                    default. Defaults to false.                      #
95 #                                                                     #
96 # format      -      If this is defined, the parameters of the alias  #
97 #                    must match this glob pattern. For example if you #
98 #                    want the first parameter to start with a # for   #
99 #                    the alias to be executed, set format="#*" in the #
100 #                    alias definition. Note that the :'s which are    #
101 #                    part of IRC formatted lines will be preserved    #
102 #                    for matching of this text. This value is         #
103 #                    optional.                                        #
104 #                                                                     #
105 # replace     -      The text to replace 'text' with. Usually this    #
106 #                    will be "PRIVMSG ServiceName :$2-" or similar.   #
107 #                    You may use the variables $1 through $9 in the   #
108 #                    replace string, which refer to the first through #
109 #                    ninth word in the original string typed by the   #
110 #                    user. You may also use $1- through $9- which     #
111 #                    refer to the first word onwards, through to the  #
112 #                    ninth word onwards, e.g. if the user types the   #
113 #                    command "foo bar baz qux quz" then $3- will hold #
114 #                    "baz qux quz" and $2 will contain "bar". You may #
115 #                    also use the special variables: $nick, $ident,   #
116 #                    $host and $vhost, and you may separate multiple  #
117 #                    commands with a newline (which can be written in #
118 #                    the file literally, or encoded as &nl; or \n     #
119 #                    depending on the config format setting).         #
120 #                                                                     #
121 # requires    -      If you provide a value for 'requires' this means #
122 #                    the given nickname MUST be online for the alias  #
123 #                    to successfully trigger. If they are not, then   #
124 #                    the user receives a 'no such nick' 401 numeric.  #
125 #                                                                     #
126 # uline       -      Setting this to true will ensure that the user   #
127 #                    given in 'requires' is also on a u-lined server, #
128 #                    as well as actually being on the network. If the #
129 #                    user is online, but not on a u-lined server,     #
130 #                    then an oper alert is sent out as this is        #
131 #                    possibly a sign of a user trying to impersonate  #
132 #                    a service.                                       #
133 #                                                                     #
134 # operonly    -      If true, this will make the alias oper only.     #
135 #                    If a non-oper attempts to use the alias, it will #
136 #                    appear to not exist.                             #
137 #                                                                     #
138 #
139 # An example of using the format value to create an alias with two
140 # different behaviours depending on the format of the parameters.
141 #
142 #<alias text="ID" format="#*" replace="PRIVMSG ChanServ :IDENTIFY $2 $3"
143 #  requires="ChanServ" uline="yes">
144 #
145 #<alias text="ID" replace="PRIVMSG NickServ :IDENTIFY $2"
146 #  requires="NickServ" uline="yes">
147 #
148 # This alias fixes a glitch in xchat 2.6.x and above and the way it
149 # assumes IDENTIFY must be prefixed by a colon (:) character. It should
150 # be placed ABOVE the default NICKSERV alias.
151 #
152 #<alias text="NICKSERV" format=":IDENTIFY *" replace="PRIVMSG NickServ :IDENTIFY $3-"
153 #  requires="NickServ" uline="yes">
154 #
155 # You may also add aliases to trigger based on something said in a
156 # channel, aka 'fantasy' commands, configured in the same manner as any
157 # other alias, with usercommand="no" and channelcommand="yes" The
158 # command must be preceded by the fantasy prefix when used.
159 #
160 #<alias text="CS" usercommand="no" channelcommand="yes"
161 #  replace="PRIVMSG ChanServ :$1 $chan $2-" requires="ChanServ" uline="yes">
162 #
163 # This would be used as "!cs <command> <options>", with the channel
164 # being automatically inserted after the command in the message to
165 # ChanServ, assuming the fantasy prefix is "!".
166
167 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
168 # Allowinvite module: Gives channel mode +A to allow all users to use
169 # /INVITE, and extban A to deny invite from specific masks.
170 #<module name="allowinvite">
171
172 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
173 # Alltime module: Shows time on all connected servers at once.
174 # This module is oper-only and provides /ALLTIME.
175 # To use, ALLTIME must be in one of your oper class blocks.
176 #<module name="alltime">
177
178 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
179 # Anticaps module: Adds channel mode +B which allows you to punish
180 # users that send overly capitalised messages to channels. Unlike the
181 # blockcaps module this module is more flexible as it has more options
182 # for punishment and allows channels to configure their own punishment
183 # policies.
184 #<module name="anticaps">
185 #
186 # You may also configure the characters which anticaps considers to be
187 # lower case and upper case. Any characters not listed here are assumed
188 # to be punctuation and will be ignored when counting:
189 # <anticaps lowercase="abcdefghijklmnopqrstuvwxyz"
190 #           uppercase="ABCDEFGHIJKLMNOPQRSTUVWXYZ">
191
192 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
193 # Auditorium module: Adds channel mode +u which makes everyone else
194 # except you in the channel invisible, used for large meetings etc.
195 #<module name="auditorium">
196 #
197 # Auditorium settings:
198 #
199 #<auditorium opvisible="no" opcansee="no" opercansee="yes">
200 #
201 # opvisible (auditorium-vis in exemptchanops):
202 #   Show channel ops to all users
203 # opcansee (auditorium-see in exemptchanops):
204 #   Allow ops to see all joins/parts/kicks in the channel
205 # opercansee:
206 #   Allow opers (channels/auspex) to see see all joins/parts/kicks in the channel
207 #
208 # Exemptchanops can be used to adjust the level at which users become visible or
209 # the level at which they can see the full member list of the channel.
210
211 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
212 # Autoop module: Adds basic channel access controls via the +w listmode.
213 # For example +w o:*!Attila@127.0.0.1 will op anyone matching that mask
214 # on join. This can be combined with extbans, for example +w o:R:Brain
215 # will op anyone identified to the account "Brain".
216 # Another useful combination is with SSL client certificate
217 # fingerprints: +w h:z:72db600734bb9546c1bdd02377bc21d2a9690d48 will
218 # give halfop to the user(s) having the given certificate.
219 #<module name="autoop">
220
221 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
222 # Ban except module: Adds support for channel ban exceptions (+e).
223 #<module name="banexception">
224
225 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
226 # Ban redirection module: Allows bans which redirect to a specified
227 # channel. e.g. +b nick!ident@host#channelbanneduserissentto
228 #<module name="banredirect">
229
230 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
231 # bcrypt module: Allows other modules to generate bcrypt hashes,
232 # usually for cryptographic uses and security.
233 #<module name="bcrypt">
234 #
235 # rounds: Defines how many rounds the bcrypt function will run when
236 # generating new hashes.
237 #<bcrypt rounds="10">
238
239 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
240 # Block amsg module: Attempt to block all usage of /amsg and /ame.
241 #<module name="blockamsg">
242 #
243 #-#-#-#-#-#-#-#-#-#-#-  BLOCKAMSG CONFIGURATION  -#-#-#-#-#-#-#-#-#-#-#
244 #                                                                     #
245 # If you have the blockamsg module loaded, you can configure it with  #
246 # the <blockamsg> tag:                                                #
247 #                                                                     #
248 # delay          -   How much time between two messages to force them #
249 #                    to be recognised as unrelated.                   #
250 # action         -   Any of 'notice', 'noticeopers', 'silent', 'kill' #
251 #                    or 'killopers'. Define how to take action when   #
252 #                    a user uses /amsg or /ame.                       #
253 #
254 #<blockamsg delay="3" action="killopers">
255
256 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
257 # Block CAPS module: Adds channel mode +B, blocks all-CAPS messages.
258 #
259 # NOTE: This module is deprecated and will be removed in a future version
260 # of InspIRCd. You should use the anticaps module shown above instead.
261 #<module name="blockcaps">
262 #
263 #-#-#-#-#-#-#-#-#-#-#-  BLOCKCAPS CONFIGURATION  -#-#-#-#-#-#-#-#-#-#-#
264 #                                                                     #
265 # percent        - The percentage of a message which must be upper    #
266 #                  case before it will be blocked.                    #
267 #                                                                     #
268 # minlen         - The minimum length a message must be before it     #
269 #                  will be blocked.                                   #
270 #                                                                     #
271 # lowercase      - The characters which will be considered lower      #
272 #                  case.                                              #
273 #                                                                     #
274 # uppercase      - The characters which will be considered upper      #
275 #                  case.                                              #
276 #
277 #<blockcaps percent="50"
278 #           minlen="5"
279 #           lowercase="abcdefghijklmnopqrstuvwxyz"
280 #           uppercase="ABCDEFGHIJKLMNOPQRSTUVWXYZ">
281
282 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
283 # Block color module: Blocking color-coded messages with chan mode +c.
284 #<module name="blockcolor">
285
286 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
287 # Botmode module: Adds the user mode +B. If set on a user, it will
288 # show that the user is a bot in /WHOIS.
289 #<module name="botmode">
290
291 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
292 # CallerID module: Adds usermode +g which activates hybrid-style
293 # callerid: block all private messages unless you /ACCEPT first.
294 #<module name="callerid">
295 #
296 #-#-#-#-#-#-#-#-#-#-#- CALLERID  CONFIGURATION -#-#-#-#-#-#-#-#-#-#-#-#
297 # maxaccepts     - Maximum number of entries a user can add to his    #
298 #                  /ACCEPT list. Default is 16 entries.               #
299 # tracknick      - Preserve /accept entries when a user changes nick? #
300 #                  If no (the default), the user is removed from      #
301 #                  everyone's accept list if he changes nickname.     #
302 # cooldown       - Amount of time that must pass since the last       #
303 #                  notification sent to a user before he can be sent  #
304 #                  another. Default is 1 minute.                      #
305 #<callerid maxaccepts="16"
306 #          tracknick="no"
307 #          cooldown="1m">
308
309 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
310 # CAP module: Provides the CAP negotiation mechanism required by the
311 # sasl, namesx, uhnames, and ircv3 modules.
312 # It is also recommended for STARTTLS support in the starttls module.
313 #<module name="cap">
314
315 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
316 # CBAN module: Lets you disallow channels from being used at runtime.
317 # This module is oper-only and provides /CBAN.
318 # To use, CBAN must be in one of your oper class blocks.
319 #<module name="cban">
320
321 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
322 # Censor module: Adds channel and user mode +G.
323 #<module name="censor">
324 #
325 #-#-#-#-#-#-#-#-#-#-#-  CENSOR  CONFIGURATION  -#-#-#-#-#-#-#-#-#-#-#-#
326 #                                                                     #
327 # Optional - If you specify to use the censor module, then you must   #
328 # specify some censor tags. See also:                                 #
329 # https://wiki.inspircd.org/Modules/3.0/censor                        #
330 #
331 #<include file="examples/censor.conf.example">
332
333 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
334 # CGI:IRC module: Enables forwarding the real IP address of a user from
335 # a gateway to the IRC server.
336 #<module name="cgiirc">
337 #
338 #-#-#-#-#-#-#-#-#-#-#-# CGIIRC  CONFIGURATION #-#-#-#-#-#-#-#-#-#-#-#-#
339 #
340 # If you use the cgiirc module then you must specify the gateways which
341 # are authorised to forward IP/host information to your server. There
342 # are currently two ways to do this:
343 #
344 # The webirc method is the recommended way to allow gateways to forward
345 # IP/host information. When using this method the gateway sends a WEBIRC
346 # message to the server on connection. For more details please read the
347 # IRCv3 WebIRC specification at http://ircv3.net/specs/extensions/webirc.html.
348 #
349 # When using this method you must specify a wildcard mask or CIDR range
350 # to allow gateway connections from and at least one of either a SSL
351 # client certificate fingerprint for the gateway or a password to be
352 # sent in the WEBIRC command.
353 #
354 # <cgihost type="webirc"
355 #          fingerprint="bd90547b59c1942b85f382bc059318f4c6ca54c5"
356 #          mask="192.0.2.0/24">
357 # <cgihost type="webirc"
358 #          password="$2a$10$WEUpX9GweJiEF1WxBDSkeODBstIBMlVPweQTG9cKM8/Vd58BeM5cW"
359 #          hash="bcrypt"
360 #          mask="*.webirc.gateway.example.com">
361 #
362 # Alternatively if your gateway does not support sending the WEBIRC
363 # message then you can configure InspIRCd to look for the client IP
364 # address in the ident sent by the user. This is not recommended as it
365 # only works with IPv4 connections.
366 #
367 # When using this method you must specify a wildcard mask or CIDR range to
368 # allow gateway connections from.
369 #
370 # <cgihost type="ident" mask="198.51.100.0/24">
371 # <cgihost type="ident" mask="*.ident.gateway.example.com">
372 #
373 # By default gateway connections are logged to the +w snomask. If you
374 # do not want this to happen then you can uncomment this to disable it.
375 # <cgiirc opernotice="no">
376
377 # IMPORTANT NOTE:
378 # ---------------
379 #
380 # When you connect gateway clients, there are two connect classes which
381 # apply to these clients. When the client initially connects, the connect
382 # class which matches the gateway site's host is checked. Therefore you
383 # must raise the maximum local/global clients for this IP as high as you
384 # want to allow gateway clients. After the client has connected and is
385 # determined to be a gateway client, the class which matches the client's
386 # real IP is then checked. You may set this class to a lower value, so that
387 # the real IP of the client can still be restricted to, for example, 3
388 # sessions maximum.
389
390 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
391 # Channel create module: Adds snomask +j, which will notify opers of
392 # any new channels that are created.
393 # This module is oper-only.
394 #<module name="chancreate">
395
396 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
397 # Channel filter module: Allows channel-op defined message filtering
398 # using simple string matches (channel mode +g).
399 #<module name="chanfilter">
400 #
401 # If hidemask is set to yes, the user will not be shown the mask when
402 # his/her message is blocked.
403 #
404 # If maxlen is set then it defines the maximum length of a filter entry.
405 #
406 # If notifyuser is set to no, the user will not be notified when
407 # his/her message is blocked.
408 #<chanfilter hidemask="yes" maxlen="50" notifyuser="yes">
409
410 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
411 # Channel history module: Displays the last 'X' lines of chat to a user
412 # joining a channel with +H 'X:T' set; 'T' is the maximum time to keep
413 # lines in the history buffer. Designed so that the new user knows what
414 # the current topic of conversation is when joining the channel.
415 #<module name="chanhistory">
416 #
417 # Set the maximum number of lines allowed to be stored per channel below.
418 # This is the hard limit for 'X'.
419 # If notice is set to yes, joining users will get a NOTICE before playback
420 # telling them about the following lines being the pre-join history.
421 # If bots is set to yes, it will also send to users marked with +B
422 #<chanhistory maxlines="50" notice="yes" bots="yes">
423
424 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
425 # Channel logging module: Used to send snotice output to channels, to
426 # allow staff to centrally monitor and discuss network activity.
427 #
428 # The "channel" field is where you want the messages to go, "snomasks"
429 # is what snomasks you want to be sent to that channel. Multiple tags
430 # are allowed.
431 #<module name="chanlog">
432 #<chanlog snomasks="AOcC" channel="#opers">
433
434 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
435 # Channel names module: Allows disabling channels which have certain
436 # characters in the channel name such as bold, colorcodes, etc. which
437 # can be quite annoying and allow users to on occasion have a channel
438 # that looks like the name of another channel on the network.
439 #<module name="channames">
440
441 #<channames
442         # denyrange: characters or range of characters to deny in channel
443         # names.
444         #denyrange="2,3"
445
446         # allowrange: characters or range of characters to specifically allow
447         # in channel names.
448         #allowrange="">
449
450 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
451 # Channelban: Implements extended ban j:, which stops anyone already
452 # in a channel matching a ban like +b j:#channel*mask from joining.
453 # Note that by default wildcard characters * and ? are allowed in
454 # channel names. To disallow them, load m_channames and add characters
455 # 42 and 63 to denyrange (see above).
456 #<module name="channelban">
457
458 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
459 # Check module: Adds the /CHECK command.
460 # Check is useful for looking up information on channels, users,
461 # IP addresses and hosts.
462 # This module is oper-only.
463 # To use, CHECK must be in one of your oper class blocks.
464 #<module name="check">
465
466 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
467 # CHGHOST module: Adds the /CHGHOST command.
468 # This module is oper-only.
469 # To use, CHGHOST must be in one of your oper class blocks.
470 # NOTE: Services will not be able to set vhosts on users if this module
471 # isn't loaded. If you're planning on running services, you probably
472 # want to load this.
473 #<module name="chghost">
474 #
475 #-#-#-#-#-#-#-#-# /CHGHOST - /SETHOST  CONFIGURATION #-#-#-#-#-#-#-#-#
476 # Optional - If you want to use special chars for hostnames you can  #
477 # specify your own custom list of chars with the <hostname> tag:     #
478 #                                                                    #
479 # charmap        - A list of chars accepted as valid by the /CHGHOST #
480 #                  and /SETHOST commands. Also note that the list is #
481 #                  case-sensitive.                                   #
482 #<hostname charmap="abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ.-_/0123456789">
483
484 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
485 # CHGIDENT module: Adds the /CHGIDENT command.
486 # This module is oper-only.
487 # To use, CHGIDENT must be in one of your oper class blocks.
488 #<module name="chgident">
489
490 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
491 # CHGNAME module: Adds the /CHGNAME command.
492 # This module is oper-only.
493 # To use, CHGNAME must be in one of your oper class blocks.
494 #<module name="chgname">
495 #
496 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
497 # Connection class ban module: Adds support for extban 'n' which 
498 # matches against the class name of the user's connection.
499 # This module assumes that connection classes are named in a uniform
500 # way on all servers of the network.
501 #<module name="classban">
502
503 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
504 # Clear chan module: Allows opers to masskick, masskill or mass-G/ZLine
505 # all users on a channel using /CLEARCHAN.
506 #<module name="clearchan">
507
508 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
509 # Cloaking module: Adds usermode +x and cloaking support.
510 # Relies on the md5 module being loaded.
511 # To cloak users when they connect, load the conn_umodes module and set
512 # <connect:modes> to include the +x mode. The example <connect> tag
513 # shows this. See the conn_umodes module for more information.
514 #<module name="cloaking">
515 #
516 #-#-#-#-#-#-#-#-#-#-#- CLOAKING  CONFIGURATION -#-#-#-#-#-#-#-#-#-#-#-#
517 #                                                                     #
518 # To use cloaking, you must define a cloak key, and optionally a      #
519 # cloak prefix as shown below. The cloak key must be shared across    #
520 # the network for correct cloaking.                                   #
521 #                                                                     #
522 # There are two methods of cloaking:                                  #
523 #                                                                     #
524 #   half           Cloak only the "unique" portion of a host; by      #
525 #                  default show the last 2 parts of the domain,       #
526 #                  /16 subnet of IPv4 or /48 subnet of the IPv6       #
527 #                  address.                                           #
528 #                  To change the number of shown parts, modify the    #
529 #                  domainparts option.                                #
530 #                                                                     #
531 #   full           Cloak the users completely, using three slices for #
532 #                  common CIDR bans (IPv4: /16, /24; IPv6: /48, /64). #
533 #                                                                     #
534 # The methods use a single key that can be any length of text.        #
535 # An optional prefix may be specified to mark cloaked hosts.          #
536 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
537 #
538 #<cloak mode="half"
539 #       key="secret"
540 #       domainparts="3"
541 #       prefix="net-">
542
543 #-#-#-#-#-#-#-#-#-#-#-#- CLOSE MODULE #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
544 # Close module: Allows an oper to close all unregistered connections.
545 # This module is oper-only and provides the /CLOSE command.
546 # To use, CLOSE must be in one of your oper class blocks.
547 #<module name="close">
548
549 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
550 # Clones module: Adds an oper command /CLONES for detecting cloned
551 # users. Warning: This command may be resource intensive when it is
552 # issued, use with care.
553 # This module is oper-only.
554 # To use, CLONES must be in one of your oper class blocks.
555 #<module name="clones">
556
557 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
558 # Common channels module: Adds user mode +c, which, when set, requires
559 # that users must share a common channel with you to PRIVMSG or NOTICE
560 # you.
561 #<module name="commonchans">
562
563 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
564 # Auto join on connect module: Allows you to force users to join one
565 # or more channels automatically upon connecting to the server, or
566 # join them in case they aren't on any channels after being online
567 # for X seconds.
568 #<module name="conn_join">
569 #
570 #-#-#-#-#-#-#-#-#-#-#-#- CONNJOIN CONFIGURATION  -#-#-#-#-#-#-#-#-#-#-#
571 #
572 # If you have the conn_join module loaded, you can configure it below
573 # or set autojoin="#chat,#help" in <connect> blocks.
574 #
575 # Join users immediately after connection to #one #two and #three.
576 #<autojoin channel="#one,#two,#three">
577 # Join users to #chat after 15 seconds if they aren't on any channels.
578 #<autojoin channel="#chat" delay="15">
579
580 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
581 # Set modes on connect module: When this module is loaded <connect>
582 # blocks may have an optional modes="" value, which contains modes to
583 # add or remove from users when they connect to the server.
584 #<module name="conn_umodes">
585
586 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
587 # Wait for PONG on connect module: Send a PING to all connecting users
588 # and don't let them connect until they reply with a PONG.
589 # This is useful to stop certain kinds of bots and proxies.
590 #<module name="conn_waitpong">
591 #
592 #-#-#-#-#-#-#-#-#-#-#-   WAITPONG CONFIGURATION  -#-#-#-#-#-#-#-#-#-#-#
593 #                                                                     #
594 # If you have the conn_waitpong module loaded, configure it with the  #
595 # <waitpong> tag:                                                     #
596 #                                                                     #
597 # sendsnotice    -   Whether to send a helpful notice to users on     #
598 #                    connect telling them how to connect, should      #
599 #                    their client not reply PONG automatically.       #
600 #                                                                     #
601 # killonbadreply -   Whether to kill the user if they send the wrong  #
602 #                    PONG reply.                                      #
603 #                                                                     #
604 #<waitpong sendsnotice="yes" killonbadreply="yes">
605
606 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
607 # Channel cycle module: Adds the /CYCLE command which is a server-side
608 # /HOP that bypasses restrictive modes.
609 #<module name="cycle">
610
611 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
612 # Connectban: Provides IP connection throttling. Any IP range that
613 # connects too many times (configurable) in an hour is Z-Lined for a
614 # (configurable) duration, and their count resets to 0.
615 #<module name="connectban">
616 #
617 # ipv4cidr and ipv6cidr allow you to turn the comparison from
618 # individual IP addresses (32 and 128 bits) into CIDR masks, to allow
619 # for throttling over whole ISPs/blocks of IPs, which may be needed to
620 # prevent attacks.
621 #
622 # This allows for 10 connections in an hour with a 10 minute ban if
623 # that is exceeded.
624 #<connectban threshold="10" duration="10m" ipv4cidr="32" ipv6cidr="128"
625 # A custom ban message may optionally be specified.
626 # banmessage="Your IP range has been attempting to connect too many times in too short a duration. Wait a while, and you will be able to connect.">
627
628 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
629 # Connection throttle module.
630 #<module name="connflood">
631 #
632 #-#-#-#-#-#-#-#-#-#-#- CONNTHROTTLE CONFIGURATION  -#-#-#-#-#-#-#-#-#-#
633 #  period, maxconns -  Amount of connections per <period>.
634 #
635 #  timeout           -  Time to wait after the throttle was activated
636 #                       before deactivating it. Be aware that the time
637 #                       is seconds + timeout.
638 #
639 #  quitmsg           -  The message that users get if they attempt to
640 #                       connect while the throttle is active.
641 #
642 #  bootwait          -  Amount of time in seconds to wait before enforcing
643 #                       the throttling when the server just booted.
644 #
645 #<connflood seconds="30" maxconns="3" timeout="30"
646 #   quitmsg="Throttled" bootwait="10">
647
648 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
649 # Custom prefixes: Allows for channel prefixes to be configured.
650 #<module name="customprefix">
651 #
652 # name       The name of the mode, must be unique from other modes.
653 # letter     The letter used for this mode. Required.
654 # prefix     The prefix used for nicks with this mode. Not required.
655 # rank       A numeric rank for this prefix, defining what permissions it gives.
656 #            The rank of voice, halfop and op is 10000, 20000, and 30000,
657 #            respectively.
658 # ranktoset  The numeric rank required to set this mode. Defaults to rank.
659 # ranktounset The numeric rank required to unset this mode. Defaults to ranktoset.
660 # depriv     Can you remove the mode from yourself? Defaults to yes.
661 #<customprefix name="founder" letter="q" prefix="~" rank="50000" ranktoset="50000">
662 #<customprefix name="admin" letter="a" prefix="&amp;" rank="40000" ranktoset="50000">
663 #<customprefix name="halfop" letter="h" prefix="%" rank="20000" ranktoset="30000">
664 #
665 # You can also override the configuration of prefix modes added by both the core
666 # and other modules by adding a customprefix tag with change="yes" specified.
667 # <customprefix name="op" change="yes" rank="30000" ranktoset="30000">
668 # <customprefix name="voice" change="yes" rank="10000" ranktoset="10000" depriv="no">
669 #
670 # Do /RELOADMODULE customprefix after changing the settings of this module.
671
672 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
673 # Custom title module: Adds the /TITLE command which allows for trusted
674 # users to gain a custom whois line and an optional vhost can be
675 # specified.
676 #<module name="customtitle">
677 #
678 #-#-#-#-#-#-#-#-#-#-  CUSTOM TITLE CONFIGURATION   -#-#-#-#-#-#-#-#-#-#
679 #  name     - The username used to identify.
680 #  password - The password used to identify.
681 #  hash     - The hash for the specific user's password (optional).
682 #             password_hash and a hashing module must be loaded
683 #             for this to work.
684 #  host     - Allowed hostmask (optional).
685 #  title    - Title shown in whois.
686 #  vhost    - Displayed host (optional).
687 #
688 #<title name="foo" password="bar" title="Official Chat Helper">
689 #<title name="bar" password="foo" host="ident@test.org" title="Official Chat Helper" vhost="helper.test.org">
690 #<title name="foo" password="$2a$10$UYZ4OcO8NNTCCGyCdY9SK.2GHiqGgxZfHFPOPmWuxEVWVQTtoDC7C" hash="bcrypt" title="Official Chat Helper">
691
692 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
693 # DCCALLOW module: Adds the /DCCALLOW command.
694 #<module name="dccallow">
695 #
696 #-#-#-#-#-#-#-#-#-#-#-  DCCALLOW CONFIGURATION   -#-#-#-#-#-#-#-#-#-#-#
697 #  blockchat         - Whether to block DCC CHAT as well as DCC SEND.
698 #  length            - Default duration of entries in DCCALLOW list.
699 #  action            - Default action to take if no action is
700 #                      specified, can be 'block' or 'allow'.
701 #  maxentries        - Max number of nicks to allow on a DCCALLOW list.
702 #
703 # File configuration:
704 #  pattern           - The glob pattern to match against.
705 #  action            - Action to take if a user attempts to send a file
706 #                      that matches this pattern, can be 'block' or
707 #                      'allow'.
708 #
709 #<dccallow blockchat="yes" length="5m" action="block" maxentries="20">
710 #<banfile pattern="*.exe" action="block">
711 #<banfile pattern="*.txt" action="allow">
712
713 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
714 # Deaf module: Adds support for the usermode +d - deaf to channel
715 # messages and channel notices.
716 #<module name="deaf">
717
718 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
719 # Delay join module: Adds the channel mode +D which delays all JOIN
720 # messages from users until they speak. If they quit or part before
721 # speaking, their quit or part message will not be shown to the channel
722 # which helps cut down noise on large channels in a more friendly way
723 # than the auditorium mode. Only channel ops may set the +D mode.
724 #<module name="delayjoin">
725
726 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
727 # Delay message module: Adds the channel mode +d which disallows a user
728 # from talking in the channel unless they've been joined for X seconds.
729 # Settable using /MODE #chan +d 30
730 #<module name="delaymsg">
731 # Set allownotice to no to disallow NOTICEs too. Defaults to yes.
732 #<delaymsg allownotice="no">
733
734 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
735 # Deny channels module: Deny channels from being used by users.
736 #<module name="denychans">
737 #
738 #-#-#-#-#-#-#-#-#-#-#-   DENYCHAN DEFINITIONS  -#-#-#-#-#-#-#-#-#-#-#-#
739 #                                                                     #
740 # If you have the denychans module loaded, you need to specify the    #
741 # channels to deny:                                                   #
742 #                                                                     #
743 # name        -      The channel name to deny (glob masks are ok).    #
744 # allowopers  -      If operators are allowed to override the deny.   #
745 # reason      -      Reason given for the deny.                       #
746 # redirect    -      Redirect the user to a different channel.        #
747 #                                                                     #
748 #<badchan name="#gods*" allowopers="yes" reason="Tortoises!">         #
749 #<badchan name="#chan1" redirect="#chan2" reason="Chan1 is closed">   #
750 #                                                                     #
751 # Redirects will not work if the target channel is set +L.            #
752 #                                                                     #
753 # Additionally, you may specify channels which are allowed, even if   #
754 # a badchan tag specifies it would be denied:                         #
755 #<goodchan name="#funtimes">                                          #
756 # Glob masks are accepted here also.                                  #
757
758 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
759 # DNS blacklist module: Provides support for looking up IPs on one or #
760 # more blacklists.                                                    #
761 #<module name="dnsbl">                                                #
762 #                                                                     #
763 # For configuration options please see the wiki page for dnsbl at     #
764 # https://wiki.inspircd.org/Modules/3.0/dnsbl                         #
765
766 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
767 # Exempt channel operators module: Provides support for allowing      #
768 # users of a specified channel status to be exempt from some channel  #
769 # restriction modes. Supported restrictions are                       #
770 # blockcaps, blockcolor, censor, filter, flood, nickflood, noctcp,    #
771 # nonick, nonotice, regmoderated, stripcolor, and topiclock.          #
772 # See <options:exemptchanops> in inspircd.conf.example for a more     #
773 # detailed list of the restriction modes that can be exempted.        #
774 # These are settable using /mode #chan +X <restriction>:<status>      #
775 #<module name="exemptchanops">                                        #
776
777 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
778 # Filter module: Provides message filtering, similar to SPAMFILTER.   #
779 #<module name="filter">
780 #                                                                     #
781 # This module depends upon a regex provider such as regex_pcre or     #
782 # regex_glob to function. You must specify which of these you want    #
783 # the filter module to use via the tag below.                         #
784 #                                                                     #
785 # Valid engines are:                                                  #
786 #                                                                     #
787 # glob   - Glob patterns, provided via regex_glob.                    #
788 # pcre   - PCRE regexps, provided via regex_pcre, needs libpcre.      #
789 # tre    - TRE regexps, provided via regex_tre, requires libtre.      #
790 # posix  - POSIX regexps, provided via regex_posix, not available     #
791 #          on Windows, no dependencies on other operating systems.    #
792 # stdlib - stdlib regexps, provided via regex_stdlib, see comment     #
793 #          at the <module> tag for info on availability.              #
794 #                                                                     #
795 # If notifyuser is set to no, the user will not be notified when      #
796 # his/her message is blocked.                                         #
797 #<filteropts engine="glob" notifyuser="yes">
798 #                                                                     #
799 # Your choice of regex engine must match on all servers network-wide. #
800 #                                                                     #
801 # To learn more about the configuration of this module, read          #
802 # examples/filter.conf.example, which covers the various types of     #
803 # filters and shows how to add exemptions.                            #
804 #                                                                     #
805 #-#-#-#-#-#-#-#-#-#-#-  FILTER  CONFIGURATION  -#-#-#-#-#-#-#-#-#-#-#-#
806 #                                                                     #
807 # Optional - If you specify to use the filter module, then            #
808 # specify below the path to the filter.conf file, or define some      #
809 # <filter> tags.                                                      #
810 #                                                                     #
811 #<include file="examples/filter.conf.example">
812
813 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
814 # Flash Policy Daemon module: Allows Flash IRC clients (e.g. LightIRC)#
815 # to connect. If no file is specified, it'll serve a default policy   #
816 # allowing all IPs to connect to all plaintext IRC ports              #
817 #<bind address="" port="8430" type="flashpolicyd">                    #
818 #<flashpolicyd timeout="5" file="">                                   #
819 #<module name="flashpolicyd">                                         #
820
821 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
822 # Real name ban: Implements extended ban 'r', which stops anyone
823 # matching a mask like +b r:*realname?here* from joining a channel.
824 #<module name="gecosban">
825
826 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
827 # GeoIP module: Allows the server admin to match users by country code.
828 # This module is in extras. Re-run configure with:
829 # ./configure --enable-extras=m_geoip.cpp
830 # and run make install, then uncomment this module to enable it.
831 # This module requires GeoIP to be installed on your system,
832 # use your package manager to find the appropriate packages
833 # or check the InspIRCd wiki page for this module.
834 #<module name="geoip">
835 #
836 # The actual allow/ban actions are done by connect classes, not by the
837 # GeoIP module. An example connect class to ban people from russia or
838 # turkey:
839 #
840 # <connect deny="*" geoip="TR,RU">
841 #
842 # If enabled you can also ban people from channnels by country code
843 # using the G: extban (e.g. /mode #channel +b G:US).
844 # <geoip extban="yes">
845 #
846 # The country code must be in capitals and should be an ISO country
847 # code such as TR, GB, or US. Unknown IPs (localhost, LAN IPs, etc)
848 # will be assigned the country code "UNK". Since connect classes are
849 # matched from top down, your deny classes must be above your allow
850 # classes for them to match.
851
852 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
853 # Globops module: Provides the /GLOBOPS command and snomask +g.
854 # This module is oper-only.
855 # To use, GLOBOPS must be in one of your oper class blocks.
856 #<module name="globops">
857
858 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
859 # Global load module: Allows loading and unloading of modules network-
860 # wide (USE WITH EXTREME CAUTION!)
861 # This module is oper-only and provides /GLOADMODULE, /GUNLOADMODULE
862 # and /GRELOADMODULE.
863 # To use, GLOADMODULE, GUNLOADMODULE and GRELOADMODULE
864 # must be in one of your oper class blocks.
865 #<module name="globalload">
866
867 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
868 # HAProxy module: Adds support for the HAProxy PROXY v2 protocol. To
869 # use this module specify hook="haproxy" in the <bind> tag that HAProxy
870 # has been configured to connect to.
871 #<module name="haproxy">
872
873 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
874 # HELPOP module: Provides the /HELPOP command
875 #<module name="helpop">
876 #
877 #-#-#-#-#-#-#-#-#-#-#-#-  HELPOP  CONFIGURATION  -#-#-#-#-#-#-#-#-#-#-#
878 #                                                                     #
879 # If you specify to use the helpop module, then specify below the     #
880 # path to the helpop.conf file.                                       #
881 #                                                                     #
882 #<include file="examples/helpop-full.conf.example">
883
884 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
885 # Hide chans module: Allows users to hide their channels list from non-
886 # opers by setting user mode +I on themselves.
887 #<module name="hidechans">
888 #
889 # This mode can optionally prevent opers from seeing channels on a +I
890 # user, for more privacy if set to true.
891 # This setting is not recommended for most mainstream networks.
892 #<hidechans affectsopers="false">
893
894 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
895 # Hide list module: Allows for hiding the list of listmodes from users
896 # who do not have sufficient channel rank.
897 #<module name="hidelist">
898 #
899 # Each <hidelist> tag configures one listmode to hide.
900 # mode: Name of the listmode to hide.
901 # rank: Minimum rank required to view the list. If set to 0, all
902 # members of the channel may view the list, but non-members may not.
903 # The rank of the built-in op and voice mode is 30000 and 10000,
904 # respectively; the rank of other prefix modes is configurable.
905 # Defaults to 20000.
906 #
907 # Hiding the ban list is not recommended because it may break some
908 # clients.
909 #
910 # Hide filter (+g) list:
911 #<hidelist mode="filter" rank="30000">
912 # Only show invite exceptions (+I) to channel members:
913 #<hidelist mode="invex" rank="0">
914
915 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
916 # Hide oper module: Allows opers to hide their oper status from non-
917 # opers by setting user mode +H on themselves.
918 # This module is oper-only.
919 #<module name="hideoper">
920
921 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
922 # Hostchange module: Allows a different style of cloaking.
923 #<module name="hostchange">
924 #
925 #-#-#-#-#-#-#-#-#-#-#-  HOSTCHANGE  CONFIGURATION  -#-#-#-#-#-#-#-#-#-#
926 #                                                                     #
927 # See https://wiki.inspircd.org/Modules/3.0/hostchange for help.      #
928 #                                                                     #
929 #<host suffix="invalid.org" separator="." prefix="">
930 #<hostchange mask="*@42.theanswer.example.org" action="addnick">
931 #<hostchange mask="*root@*" action="suffix">
932 #<hostchange mask="a@example.com" action="set" value="foo.bar.baz">
933 #<hostchange mask="localhost" ports="7000,7001,7005-7007" action="set" value="blahblah.foo">
934
935 # hostcycle: If loaded, when a user gets a host or ident set, it will
936 # cycle them in all their channels. If not loaded it will simply change
937 # their host/ident without cycling them.
938 # This module is compatible with the ircv3_chghost module. Clients
939 # supporting the chghost extension will get the chghost message instead
940 # of seeing a host cycle.
941 #<module name="hostcycle">
942
943 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
944 # httpd module: Provides HTTP server support for InspIRCd.
945 #<module name="httpd">
946 #
947 #-#-#-#-#-#-#-#-#-#-#-#-  HTTPD   CONFIGURATION  -#-#-#-#-#-#-#-#-#-#-#
948 #
949 # If you choose to use the httpd module, then you will need to add
950 # a <bind> tag with type "httpd", and load at least one of the other
951 # httpd_* modules to provide pages to display.
952 # <bind address="127.0.0.1" port="8067" type="httpd">
953 # <bind address="127.0.0.1" port="8097" type="httpd" ssl="gnutls">
954 #
955 # You can adjust the timeout for HTTP connections below. All HTTP
956 # connections will be closed after (roughly) this time period.
957 #<httpd timeout="20">
958
959 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
960 # HTTP ACL module: Provides access control lists for httpd dependent
961 # modules. Use this module to restrict pages by IP address and by
962 # password.
963 #<module name="httpd_acl">
964 #
965 #-#-#-#-#-#-#-#-#-#-#-#- HTTPD ACL CONFIGURATION -#-#-#-#-#-#-#-#-#-#-#
966 #
967 # Restrict access to the httpd_stats module to all but the local
968 # network and when the correct password is specified:
969 # <httpdacl path="/stats*" types="password,whitelist"
970 #    username="secrets" password="mypasshere" whitelist="127.0.0.*,10.*">
971 #
972 # Deny all connections to all but the main index page:
973 # <httpdacl path="/*" types="blacklist" blacklist="*">
974
975 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
976 # HTTP config module: Allows the server configuration to be viewed over
977 # HTTP via the /config path. Requires the httpd module to be loaded for
978 # it to function.
979 #
980 # IMPORTANT: This module exposes extremely sensitive information about
981 # your server and users so you *MUST* protect it using a local-only
982 # <bind> tag and/or the httpd_acl module. See above for details.
983 #<module name="httpd_config">
984
985 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
986 # HTTP stats module: Provides server statistics over HTTP via the /stats
987 # path. Requires the httpd module to be loaded for it to function.
988 #
989 # IMPORTANT: This module exposes extremely sensitive information about
990 # your server and users so you *MUST* protect it using a local-only
991 # <bind> tag and/or the httpd_acl module. See above for details.
992 #<module name="httpd_stats">
993
994 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
995 # Ident: Provides RFC 1413 ident lookup support.
996 # When this module is loaded <connect:allow> tags may have an optional
997 # useident="yes|no" boolean value, determining whether or not to lookup
998 # ident on users matching that connect tag.
999 #<module name="ident">
1000 #
1001 #-#-#-#-#-#-#-#-#-#-#-#-   IDENT CONFIGURATION   -#-#-#-#-#-#-#-#-#-#-#
1002 #                                                                     #
1003 # Optional - If you are using the ident module, then you can specify  #
1004 # the timeout for ident lookups here. If not defined, it will default #
1005 # to 5 seconds. This is a non-blocking timeout which holds the user   #
1006 # in a 'connecting' state until the lookup is complete.               #
1007 # The bind value indicates which IP to bind outbound requests to.     #
1008 # nolookupprefix: If on, the idents of users being in a connect class #
1009 # with ident lookups disabled (i.e. <connect useident="off">) will be #
1010 # prefixed with a "~". If off, the ident of those users will not be   #
1011 # prefixed. Default is off.                                           #
1012 #
1013 #<ident timeout="5" nolookupprefix="no">
1014
1015 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1016 # Invite exception module: Adds support for channel invite exceptions
1017 # (+I).
1018 #<module name="inviteexception">
1019 # bypasskey: If this is enabled, exceptions will bypass +k as well as +i
1020 #<inviteexception bypasskey="yes">
1021
1022 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1023 # IRCv3 module: Provides the following IRCv3 extensions:
1024 # extended-join, away-notify and account-notify. These are optional
1025 # enhancements to the client-to-server protocol. An extension is only
1026 # active for a client when the client specifically requests it, so this
1027 # module needs the cap module to work.
1028 #
1029 # Further information on these extensions can be found at the IRCv3
1030 # working group website:
1031 # http://ircv3.net/irc/
1032 #
1033 #<module name="ircv3">
1034 # The following block can be used to control which extensions are
1035 # enabled. Note that extended-join can be incompatible with delayjoin
1036 # and host cycling.
1037 #<ircv3 accountnotify="on" awaynotify="on" extendedjoin="on">
1038
1039 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1040 # IRCv3 cap-notify module: Provides the cap-notify IRCv3.2 extension.
1041 # Required for IRCv3.2 conformance.
1042 #<module name="ircv3_capnotify">
1043
1044 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1045 # IRCv3 account-tag module. Adds the 'account' tag which contains the
1046 # services account name of the message sender.
1047 #<module name="ircv3_accounttag">
1048
1049 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1050 # IRCv3 batch module: Provides the batch IRCv3 extension which allows
1051 # the server to inform a client that a group of messages are related to
1052 # each other.
1053 #<module name="ircv3_batch">
1054
1055 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1056 # IRCv3 cap-notify module: Provides the cap-notify IRCv3.2 extension.
1057 # Required for IRCv3.2 conformance.
1058 #<module name="ircv3_capnotify">
1059
1060 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1061 # IRCv3 chghost module: Provides the chghost IRCv3.2 extension which
1062 # allows capable clients to learn when the host/ident of another user
1063 # changes without cycling the user. This module is compatible with the
1064 # hostcycle module. If both are loaded, clients supporting the chghost
1065 # extension will get the chghost message and won't see host cycling.
1066 #<module name="ircv3_chghost">
1067
1068 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1069 # IRCv3 echo-message module: Provides the echo-message IRCv3.2
1070 # extension which allows capable clients to get an acknowledgement when
1071 # their messages are delivered and learn what modifications, if any,
1072 # were applied to them.
1073 #<module name="ircv3_echomessage">
1074
1075 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1076 # IRCv3 invite-notify module: Provides the invite-notify IRCv3.2
1077 # extension which notifies supporting clients when a user invites
1078 # another user into a channel. This respects <options:announceinvites>.
1079 #<module name="ircv3_invitenotify">
1080
1081 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1082 # IRCv3 server-time module. Adds the 'time' tag which adds a timestamp
1083 # to all messages received from the server.
1084 #<module name="ircv3_servertime">
1085
1086 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1087 # IRCv3 Strict Transport Security module: Provides the sts IRCv3.2
1088 # extension which allows clients connecting insecurely to upgrade their
1089 # connections to TLS.
1090 #<module name="ircv3_sts">
1091 #
1092 # If using the ircv3_sts module you MUST define a STS policy to send
1093 # to clients using the <sts> tag. This tag takes the following
1094 # attributes:
1095 #
1096 # host     - A glob match for the SNI hostname to apply this policy to.
1097 # duration - The amount of time that the policy lasts for. Defaults to
1098 #            approximately two months by default.
1099 # port     - The port on which TLS connections to the server are being
1100 #            accepted. You MUST have a CA-verified certificate on this
1101 #            port. Self signed certificates are not acceptable.
1102 # preload  - Whether client developers can include your certificate in
1103 #            preload lists.
1104 #
1105 # <sts host="*.example.com" duration="60d" port="6697" preload="yes">
1106
1107 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1108 # Join flood module: Adds support for join flood protection +j X:Y.
1109 # Closes the channel for N seconds if X users join in Y seconds.
1110 #<module name="joinflood">
1111 #
1112 # The number of seconds to close the channel for:
1113 #<joinflood duration="1m">
1114
1115 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1116 # Jump server module: Adds support for the RPL_REDIR numeric.
1117 # This module is oper-only.
1118 # To use, JUMPSERVER must be in one of your oper class blocks.
1119 # If your server is redirecting new clients and you get disconnected,
1120 # do a REHASH from shell to open up again.
1121 #<module name="jumpserver">
1122
1123 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1124 # Anti auto rejoin: Adds support for prevention of auto-rejoin (+J).
1125 #<module name="kicknorejoin">
1126
1127 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1128 # Knock module: Adds the /KNOCK command and channel mode +K.
1129 #<module name="knock">
1130 #
1131 # This setting specifies what to do when someone successfully /KNOCKs.
1132 # If set to "notice", then a NOTICE will be sent to the channel.
1133 # This is the default and the compatible setting, as it requires no
1134 # special support from the clients.
1135 # If set to "numeric" then a 710 numeric will be sent to the channel.
1136 # This allows easier scripting but not all clients support it.
1137 # If set to "both" then (surprise!) both will be sent.
1138 #<knock notify="notice">
1139
1140 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1141 # LDAP module: Allows other SQL modules to access a LDAP database
1142 # through a unified API.
1143 # This modules is in extras. Re-run configure with:
1144 # ./configure --enable-extras=m_ldap.cpp
1145 # and run make install, then uncomment this module to enable it.
1146 #
1147 #<module name="ldap">
1148 #<database module="ldap" id="ldapdb" server="ldap://localhost" binddn="cn=Manager,dc=inspircd,dc=org" bindauth="mysecretpass" searchscope="subtree">
1149 # The server parameter indicates the LDAP server to connect to. The   #
1150 # ldap:// style scheme before the hostname proper is MANDATORY.       #
1151 #                                                                     #
1152 # The binddn and bindauth indicate the DN to bind to for searching,   #
1153 # and the password for the distinguished name. Some LDAP servers will #
1154 # allow anonymous searching in which case these two values do not     #
1155 # need defining, otherwise they should be set similar to the examples #
1156 # above.                                                              #
1157 #                                                                     #
1158 # The searchscope value indicates the subtree to search under. On our #
1159 # test system this is 'subtree'. Your mileage may vary.               #
1160
1161 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1162 # LDAP authentication module: Adds the ability to authenticate users  #
1163 # via LDAP.                                                           #
1164 #<module name="ldapauth">
1165 #                                                                     #
1166 # Configuration:                                                      #
1167 #                                                                     #
1168 # <ldapauth dbid="ldapdb"                                             #
1169 #           baserdn="ou=People,dc=brainbox,dc=cc"                     #
1170 #           attribute="uid"                                           #
1171 #           allowpattern="Guest* Bot*"                                #
1172 #           killreason="Access denied"                                #
1173 #           verbose="yes"                                             #
1174 #           host="$uid.$ou.inspircd.org"                              #
1175 #           useusername="no">                                         #
1176 #                                                                     #
1177 # <ldapwhitelist cidr="10.42.0.0/16">                                 #
1178 #                                                                     #
1179 # <ldaprequire attribute="attr" value="val">                          #
1180 #                                                                     #
1181 # The baserdn indicates the base DN to search in for users. Usually   #
1182 # this is 'ou=People,dc=yourdomain,dc=yourtld'.                       #
1183 #                                                                     #
1184 # The attribute value indicates the attribute which is used to locate #
1185 # a user account by name. On POSIX systems this is usually 'uid'.     #
1186 #                                                                     #
1187 # The allowpattern value allows you to specify a space separated list #
1188 # of wildcard masks which will always be allowed to connect           #
1189 # regardless of if they have an account, for example guest and bot    #
1190 # users.                                                              #
1191 #                                                                     #
1192 # The useusername setting chooses whether the user's username or      #
1193 # nickname is used when locating a user account, if a username isn't  #
1194 # provided in PASS.                                                   #
1195 #                                                                     #
1196 # Killreason indicates the QUIT reason to give to users if they fail  #
1197 # to authenticate.                                                    #
1198 #                                                                     #
1199 # Setting the verbose value causes an oper notice to be sent out for  #
1200 # every failed authentication to the server, with an error string.    #
1201 #                                                                     #
1202 # ldapwhitelist indicates that clients connecting from an IP in the   #
1203 # provided CIDR do not need to authenticate against LDAP. It can be   #
1204 # repeated to whitelist multiple CIDRs.                               #
1205 #                                                                     #
1206 # ldaprequire allows further filtering on the LDAP user, by requiring #
1207 # certain LDAP attibutes to have a given value. It can be repeated,   #
1208 # in which case the list will act as an OR list, that is, the         #
1209 # authentication will succeed if any of the requirements in the list  #
1210 # is satisfied.                                                       #
1211 #                                                                     #
1212 # host allows you to change the displayed host of users connecting    #
1213 # from ldap. The string supplied takes formatters which are replaced  #
1214 # from the DN. For instance, if your DN looks like:                   #
1215 # uid=w00t,ou=people,dc=inspircd,dc=org, then the formatters uid, ou  #
1216 # and dc will be available to you. If a key is given multiple times   #
1217 # in the DN, the last appearance will take precedence.                #
1218
1219 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1220 # LDAP oper configuration module: Adds the ability to authenticate    #
1221 # opers via LDAP.                                                     #
1222 #<module name="ldapoper">
1223 #                                                                     #
1224 # Configuration:                                                      #
1225 #                                                                     #
1226 # <ldapoper dbid="ldapdb"
1227 #           baserdn="ou=People,dc=brainbox,dc=cc"
1228 #           attribute="uid">
1229 #                                                                     #
1230 # Available configuration items are identical to the same items in    #
1231 # ldapauth above (except for the verbose setting, that is only        #
1232 # supported in ldapauth).                                             #
1233 # Please always specify a password in your <oper> tags even if the    #
1234 # opers are to be authenticated via LDAP, so in case this module is   #
1235 # not loaded the oper accounts are still protected by a password.     #
1236
1237 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1238 # Lock server module: Adds /LOCKSERV and /UNLOCKSERV commands that    #
1239 # are used to temporarily close/open the server for new connections.  #
1240 # These commands require that the /LOCKSERV and /UNLOCKSERV commands  #
1241 # are specified in a <class> tag that the oper is part of. This is so #
1242 # you can control who has access to this possible dangerous command.  #
1243 # If your server is locked and you get disconnected, do a REHASH from #
1244 # shell to open up again.                                             #
1245 # This module is oper-only.
1246 #<module name="lockserv">
1247
1248 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1249 # Map hiding module: replaces /MAP and /LINKS output to users with a  #
1250 # message to see a website, set by maphide="http://test.org/map" in   #
1251 # the <security> tag, instead.                                        #
1252 #<module name="maphide">
1253
1254 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1255 # Message flood module: Adds message/notice flood protection via
1256 # channel mode +f.
1257 #<module name="messageflood">
1258
1259 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1260 # MLOCK module: Adds support for server-side enforcement of services
1261 # side MLOCKs. Basically, this module suppresses any mode change that
1262 # would likely be immediately bounced by services.
1263 #<module name="mlock">
1264
1265 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1266 # Modenotice module: Adds the /MODENOTICE command that allows opers to
1267 # send notices to all users having the given user mode(s) set.
1268 #<module name="modenotice">
1269
1270 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1271 # Monitor module: Adds support for MONITOR which is used by clients to
1272 # maintain notify lists.
1273 #<module name="monitor">
1274 #
1275 # Set the maximum number of entries on a user's monitor list below.
1276 #<monitor maxentries="30">
1277
1278 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1279 # MySQL module: Allows other SQL modules to access MySQL databases
1280 # through a unified API.
1281 # This module is in extras. Re-run configure with:
1282 # ./configure --enable-extras=m_mysql.cpp
1283 # and run make install, then uncomment this module to enable it.
1284 #<module name="mysql">
1285 #
1286 #-#-#-#-#-#-#-#-#-#-#-#- SQL CONFIGURATION   -#-#-#-#-#-#-#-#-#-#-#-#-#
1287 #                                                                     #
1288 # mysql is more complex than described here, see the wiki for more    #
1289 # info: https://wiki.inspircd.org/Modules/3.0/mysql                   #
1290 #
1291 #<database module="mysql" name="mydb" user="myuser" pass="mypass" host="localhost" id="my_database2">
1292
1293 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1294 # Named modes module: Allows for the display and set/unset of channel
1295 # modes via long-form mode names via +Z and the /PROP command.
1296 # For example, to set a ban, do /mode #channel +Z ban=foo!bar@baz or
1297 # /PROP #channel ban=foo!bar@baz
1298 #<module name="namedmodes">
1299
1300 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1301 # NAMESX module: Provides support for the NAMESX extension which allows
1302 # clients to see all the prefixes set on a user without getting confused.
1303 # This is supported by mIRC, x-chat, klient, and maybe more.
1304 #<module name="namesx">
1305
1306 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1307 # National characters module:
1308 # 1) Allows using national characters in nicknames.
1309 # 2) Allows using custom (national) casemapping over the network.
1310 #<module name="nationalchars">
1311 #
1312 # file - Location of the file which contains casemapping rules. If this
1313 #        is a relative path then it is relative to "<PWD>/../locales"
1314 #        on UNIX and "<PWD>/locales" on Windows.
1315 # casemapping - The name of the casemapping sent to clients in the 005
1316 #               numeric. If this is not set then it defaults to the name
1317 #               of the casemapping file unless the file name contains a
1318 #               space in which case you will have to specify it manually.
1319 #<nationalchars file="bynets/russian-w1251-charlink" casemapping="ru_RU.cp1251-charlink">
1320
1321 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1322 # Nickchange flood protection module: Provides channel mode +F X:Y
1323 # which allows up to X nick changes in Y seconds.
1324 #<module name="nickflood">
1325 #
1326 # The number of seconds to prevent nick changes for:
1327 #<nickflood duration="1m">
1328
1329 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1330 # Nicklock module: Let opers change a user's nick and then stop that
1331 # user from changing their nick again until unlocked.
1332 # This module is oper-only.
1333 # To use, NICKLOCK and NICKUNLOCK must be in one of your oper class blocks.
1334 #<module name="nicklock">
1335
1336 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1337 # No CTCP module: Adds the channel mode +C to block CTCPs and extban
1338 # 'C' to block CTCPs sent by specific users.
1339 #<module name="noctcp">
1340
1341 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1342 # No kicks module: Adds the +Q channel mode and the Q: extban to deny
1343 # certain users from kicking.
1344 #<module name="nokicks">
1345
1346 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1347 # No nicks module: Adds the +N channel mode, as well as the 'N' extban.
1348 # +N stops all users from changing their nick, the N extban stops
1349 # anyone from matching a +b N:nick!user@host mask from changing their
1350 # nick.
1351 #<module name="nonicks">
1352
1353 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1354 # No part message module: Adds extban 'p' to block part messages from #
1355 # matching users.                                                     #
1356 #<module name="nopartmsg">
1357
1358 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1359 # No notice module: Adds the channel mode +T and the extban 'T' to
1360 # block specific users from noticing the channel.
1361 #<module name="nonotice">
1362
1363 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1364 # Network business join module:
1365 # Allows an oper to join a channel using /OJOIN, giving them +Y on the
1366 # channel which makes them immune to kick/deop/etc.
1367 #<module name="ojoin">
1368 #
1369 # Specify the prefix that +Y will grant here.
1370 # Leave 'prefix' empty if you do not wish +Y to grant a prefix.
1371 # If 'notice' is set to on, upon /OJOIN, the server will notice the
1372 # channel saying that the oper is joining on network business.
1373 # If 'op' is set to on, it will give them +o along with +Y.
1374 #<ojoin prefix="!" notice="yes" op="yes">
1375
1376 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1377 # Oper channels mode: Adds the +O channel mode and extban O:<mask>
1378 # to ban, except, etc. specific oper types. For example
1379 # /mode #channel +iI O:* is equivalent to channel mode +O, but you
1380 # may also set +iI O:AdminTypeOnly to only allow admins.
1381 # Modes +I and +e work in a similar fashion.
1382 #<module name="operchans">
1383
1384 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1385 # Oper join module: Auto-joins opers to a channel upon oper-up.
1386 # This module is oper-only. For the user equivalent, see the conn_join
1387 # module.
1388 #<module name="operjoin">
1389 #
1390 #-#-#-#-#-#-#-#-#-#-#   OPERJOIN CONFIGURATION   -#-#-#-#-#-#-#-#-#-#-#
1391 #                                                                     #
1392 # If you are using the operjoin module, specify options here:         #
1393 #                                                                     #
1394 # channel     -      The channel name to join, can also be a comma    #
1395 #                    separated list e.g. "#channel1,#channel2".       #
1396 #                                                                     #
1397 # override    -      If on, lets the oper join walking thru any modes #
1398 #                    that might be set, even bans.                    #
1399 #                                                                     #
1400 #<operjoin channel="#channel" override="no">
1401 #
1402 # Alternatively you can use the autojoin="channellist" in a <type>    #
1403 # tag to set specific autojoins for a type of oper, for example:      #
1404 #
1405 #<type name="Helper" autojoin="#help" classes="...">
1406
1407 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1408 # Oper log module: Logs all oper commands to the server log (with log
1409 # type "m_operlog" at default loglevel), and optionally to the 'r'
1410 # snomask.
1411 # This module is oper-only.
1412 #<module name="operlog">
1413 #
1414 # If the following option is on then all oper commands will be sent to
1415 # the snomask 'r'. The default is off.
1416 #<operlog tosnomask="off">
1417
1418 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1419 # Oper prefixing module: Adds a channel prefix mode +y which is given
1420 # to all IRC operators automatically on all channels they are in.
1421 # This prefix mode is more powerful than channel op and other regular
1422 # prefix modes.
1423 #
1424 # Load this module if you want all your IRC operators to have channel
1425 # operator powers.
1426 #<module name="operprefix">
1427 #
1428 # You may additionally customise the prefix character.
1429 #<operprefix prefix="!">
1430
1431 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1432 # Oper MOTD module: Provides support for separate message of the day
1433 # on oper-up.
1434 # This module is oper-only.
1435 #<module name="opermotd">
1436 #
1437 #-#-#-#-#-#-#-#-#-#-#   OPERMOTD CONFIGURATION   -#-#-#-#-#-#-#-#-#-#-#
1438 #                                                                     #
1439 # If you are using the opermotd module, specify the motd here.   #
1440 #                                                                     #
1441 # onoper        - If on, the message is sent on /OPER, otherwise it's #
1442 #                 only sent when /OPERMOTD is used.                   #
1443 #                                                                     #
1444 #<opermotd file="examples/opermotd.txt.example" onoper="yes">
1445
1446 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1447 # Override module: Adds support for oper override.
1448 # This module is oper-only.
1449 #<module name="override">
1450 #
1451 #-#-#-#-#-#-#-#-#-#-#   OVERRIDE CONFIGURATION   -#-#-#-#-#-#-#-#-#-#-#
1452 #                                                                     #
1453 # Much of override's configuration relates to your oper blocks.       #
1454 # For more information on how to allow opers to override, see:        #
1455 # https://wiki.inspircd.org/Modules/3.0/override                      #
1456 #                                                                     #
1457 # noisy         - If enabled, all oper overrides will be announced    #
1458 #                 via channel notice.                                 #
1459 #                                                                     #
1460 # requirekey    - If enabled, overriding on join requires a channel   #
1461 #                 key of "override" to be specified                   #
1462 #                                                                     #
1463 # enableumode   - If enabled, usermode +O is required for override.   #
1464 #                                                                     #
1465 #<override noisy="yes" requirekey="no" enableumode="true">
1466
1467 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1468 # Oper levels module: Gives each oper a level and prevents actions
1469 # being taken by lower level opers against higher level opers.
1470 # Specify the level as the 'level' parameter of the <type> tag.
1471 # This module is oper-only.
1472 #<module name="operlevels">
1473
1474 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1475 # Oper modes module: Allows you to specify modes to add/remove on oper.
1476 # Specify the modes as the 'modes' parameter of the <type> tag
1477 # and/or as the 'modes' parameter of the <oper> tag.
1478 # This module is oper-only. For the user equivalent, see the 
1479 # conn_umodes module.
1480 #<module name="opermodes">
1481
1482 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1483 # Password forwarding module: Forwards a password users can send on
1484 # connect to the specified client below. The client is usually NickServ
1485 # and this module is usually used to authenticate users with NickServ
1486 # using their connect password.
1487 #<module name="passforward">
1488
1489 <passforward
1490                 # nick: nick to forward connect passwords to.
1491                 nick="NickServ"
1492
1493                 # forwardmsg: Message to send to users using a connect password.
1494                 # $nick will be the users' nick, $nickrequired will be the nick
1495                 # of where the password is going (the nick above).
1496                 # You can also use $user for the user ident string.
1497                 forwardmsg="NOTICE $nick :*** Forwarding PASS to $nickrequired"
1498
1499                 # cmd: Command for the user to run when it receives a connect
1500                 # password.
1501                 cmd="PRIVMSG $nickrequired :IDENTIFY $pass">
1502
1503 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1504 # Password hash module: Allows hashed passwords to be used.
1505 # To be useful, a hashing module like bcrypt also needs to be loaded.
1506 #<module name="password_hash">
1507 #
1508 #-#-#-#-#-#-#-#-#-# PASSWORD HASH CONFIGURATION #-#-#-#-#-#-#-#-#-#-#-#
1509 #
1510 # To use this module, you must define a hash type for each oper's
1511 # password you want to hash. For example:
1512 #
1513 #     <oper name="Brain"
1514 #           host="ident@dialup15.isp.test.com"
1515 #           hash="bcrypt"
1516 #           password="$2a$10$Mss9AtHHslZTLBrXqM0FB.JBwD.UTSu8A48SfrY9exrpxbsRiRTbO"
1517 #           type="NetAdmin">
1518 #
1519 # If you are using a hash algorithm which does not perform salting you can use
1520 # HMAC to salt your passwords in order to prevent them from being looked up in
1521 # a rainbow table.
1522 #
1523 #    hash="hmac-sha256" password="lkS1Nbtp$CyLd/WPQXizsbxFUTqFRoMvaC+zhOULEeZaQkUJj+Gg"
1524 #
1525 # Generate hashes using the /MKPASSWD command on the server.
1526 # Don't run it on a server you don't trust with your password.
1527
1528 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1529 # PBKDF2 module: Allows other modules to generate PBKDF2 hashes,
1530 # usually for cryptographic uses and security.
1531 # This module relies on other hash providers (e.g. SHA256).
1532 #<module name="pbkdf2">
1533 #
1534 # iterations: Iterations the hashing function runs when generating new
1535 # hashes.
1536 # length: Length in bytes of the derived key.
1537 #<pbkdf2 iterations="12288" length="32">
1538 # You can override these values with specific values
1539 # for specific providers if you want to. Example given for SHA256.
1540 #<pbkdf2prov hash="sha256" iterations="24576">
1541
1542 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1543 # Permanent channels module: Channels with the permanent channel mode
1544 # will remain open even after everyone else has left the channel, and
1545 # therefore keep things like modes, ban lists and topic. Permanent
1546 # channels -may- need support from your Services package to function
1547 # properly with them. This adds channel mode +P.
1548 # This module is oper-only.
1549 #<module name="permchannels">
1550 #
1551 # If you like, this module can write a config file of permanent channels
1552 # whenever +P is set, unset, or the topic/modes on a +P channel is changed.
1553 # If you want to do this, set the filename below, and uncomment the include.
1554 #
1555 # If 'listmodes' is true then all list modes (+b, +I, +e, +g...) will be
1556 # saved. Defaults to false.
1557 #<permchanneldb filename="permchannels.conf" listmodes="true">
1558 #<include file="permchannels.conf">
1559 #
1560 # You may also create channels on startup by using the <permchannels> block.
1561 #<permchannels channel="#opers" modes="isP" topic="Opers only.">
1562
1563 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1564 # PostgreSQL module: Allows other SQL modules to access PgSQL databases
1565 # through a unified API.
1566 # This module is in extras. Re-run configure with:
1567 # ./configure --enable-extras=m_pgsql.cpp
1568 # and run make install, then uncomment this module to enable it.
1569 #<module name="pgsql">
1570 #
1571 #-#-#-#-#-#-#-#-#-#-#-#- SQL CONFIGURATION   -#-#-#-#-#-#-#-#-#-#-#-#-#
1572 #                                                                     #
1573 # pgsql is more complex than described here, see the wiki for         #
1574 # more: https://wiki.inspircd.org/Modules/3.0/pgsql                   #
1575 #
1576 #<database module="pgsql" name="mydb" user="myuser" pass="mypass" host="localhost" id="my_database" ssl="no">
1577
1578 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1579 # Muteban: Implements extended ban 'm', which stops anyone matching
1580 # a mask like +b m:nick!user@host from speaking on channel.
1581 #<module name="muteban">
1582 #
1583 # If notifyuser is set to no, the user will not be notified when
1584 # his/her message is blocked.
1585 #<muteban notifyuser="yes">
1586
1587 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1588 # Random quote module: Provides a random quote on connect.
1589 # NOTE: Some of these may mimic fatal errors and confuse users and
1590 # opers alike - BEWARE!
1591 #<module name="randquote">
1592 #
1593 #-#-#-#-#-#-#-#-#-#-  RANDOMQUOTES CONFIGURATION -#-#-#-#-#-#-#-#-#-#-#
1594 #                                                                     #
1595 # Optional - If you specify to use the randquote module, then specify #
1596 # below the path to the quotes file.                                  #
1597 #                                                                     #
1598 #<randquote file="quotes.txt">
1599
1600 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1601 # Redirect module: Adds channel mode +L which redirects users to      #
1602 # another channel when the channel has reached its user limit and     #
1603 # user mode +L which stops redirection.                               #
1604 #<module name="redirect">
1605
1606 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1607 # Regular expression provider for glob or wildcard (?/*) matching.
1608 # You must have at least 1 provider loaded to use the filter or rline
1609 # modules. This module has no additional requirements, as it uses the
1610 # matching already present in InspIRCd core.
1611 #<module name="regex_glob">
1612
1613 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1614 # Regular expression provider for PCRE (Perl-Compatible Regular
1615 # Expressions). You need libpcre installed to compile and load this
1616 # module. You must have at least 1 provider loaded to use the filter or
1617 # rline modules.
1618 #<module name="regex_pcre">
1619
1620 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1621 # Regular Expression Provider for RE2 Regular Expressions.
1622 # You need libre2 installed and in your include/library paths in order
1623 # to compile and load this module.
1624 #<module name="regex_re2">
1625
1626 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1627 # Regular expression provider for POSIX regular expressions.
1628 # You shouldn't need any additional libraries on a POSIX-compatible
1629 # system (i.e.: any Linux, BSD, but not Windows). You must have at
1630 # least 1 provider loaded to use filter or rline.
1631 # On POSIX-compliant systems, regex syntax can be found by using the
1632 # command: 'man 7 regex'.
1633 #<module name="regex_posix">
1634
1635 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1636 # Regular expression provider for C++11 std::regex regular expressions.
1637 # This module works on any fully compliant implementation of the C++11
1638 # std::regex container. Examples for such are Visual C++ 2010 and newer
1639 # but not libstdc++ (which GCC uses).
1640 # You should verify that std::regex is supported by your setup before
1641 # using this module, as it may compile normally but won't do anything
1642 # on some implementations.
1643 #<module name="regex_stdlib">
1644 #
1645 # Specify the regular expression engine to use here. Valid settings are
1646 # bre, ere, awk, grep, egrep, ecmascript (default if not specified).
1647 #<stdregex type="ecmascript">
1648
1649 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1650 # Regular expression provider for TRE regular expressions.
1651 # This is the same regular expression engine used by UnrealIRCd, so
1652 # if you are most familiar with the syntax of /SPAMFILTER from there,
1653 # this is the provider you want. You need libtre installed in order
1654 # to compile and load this module.
1655 #<module name="regex_tre">
1656
1657 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1658 # Registered users only channel creation module. If enabled, only
1659 # registered users and opers can create new channels.
1660 #
1661 # You probably *DO NOT* want to load this module on a public network.
1662 #
1663 #<module name="regonlycreate">
1664
1665 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1666 # Remove module: Adds the /REMOVE command which is a peaceful
1667 # alternative to /KICK.
1668 #<module name="remove">
1669 #
1670 # supportnokicks: If true, /REMOVE is not allowed on channels where the
1671 # nokicks (+Q) mode is set. Defaults to false.
1672 # protectedrank: Members having this rank or above may not be /REMOVE'd
1673 # by anyone. Set to 0 to disable this feature. Defaults to 50000.
1674 #<remove supportnokicks="true" protectedrank="50000">
1675
1676 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1677 # A module to block, kick or ban upon similar messages being uttered several times.
1678 # Syntax [~*][lines]:[sec]{[:difference]}{[:matchlines]}
1679 # ~ is to block, * is to ban, default is kick.
1680 # lines - In mode 1 the amount of lines that has to match consecutively - In mode 2 the size of the backlog to keep for matching
1681 # seconds - How old the message has to be before it's invalidated.
1682 # distance - Edit distance, in percent, between two strings to trigger on.
1683 # matchlines - When set, the function goes into mode 2. In this mode the function will trigger if this many of the last <lines> matches.
1684 #
1685 # As this module can be rather CPU-intensive, it comes with some options.
1686 # maxbacklog - Maximum size that can be specified for backlog. 0 disables multiline matching.
1687 # maxdistance - Max percentage of difference between two lines we'll allow to match. Set to 0 to disable edit-distance matching.
1688 # maxlines - Max lines of backlog to match against.
1689 # maxtime - Maximum period of time a user can set. 0 to allow any.
1690 # size - Maximum number of characters to check for, can be used to truncate messages
1691 # before they are checked, resulting in less CPU usage. Increasing this beyond 512
1692 # doesn't have any effect, as the maximum length of a message on IRC cannot exceed that.
1693 #<repeat maxbacklog="20" maxlines="20" maxdistance="50" maxtime="0" size="512">
1694 #<module name="repeat">
1695
1696 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1697 # Restricted channels module: Allows only opers to create channels.
1698 #
1699 # You probably *DO NOT* want to load this module on a public network.
1700 #
1701 #<module name="restrictchans">
1702
1703 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1704 # Restrict message module: Allows users to only message opers.
1705 #
1706 # You probably *DO NOT* want to load this module on a public network.
1707 #
1708 #<module name="restrictmsg">
1709
1710 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1711 # R-Line module: Ban users through regular expression patterns.
1712 #<module name="rline">
1713 #
1714 #-#-#-#-#-#-#-#-#-#-#-#- RLINE CONFIGURATION -#-#-#-#-#-#-#-#-#-#-#-#-#
1715 #
1716 # If you wish to re-check a user when they change nickname (can be
1717 # useful under some situations, but *can* also use CPU with more users
1718 # on a server) then set 'matchonnickchange' to yes.
1719 # Also, this is where you set what Regular Expression engine is to be
1720 # used. If you ever change it while running, all of your R-Lines will
1721 # be wiped. This is the regex engine used by all R-Lines set, and
1722 # regex_<engine> must be loaded, or rline will be non-functional
1723 # until you load it or change the engine to one that is loaded.
1724 #
1725 #<rline matchonnickchange="yes" engine="pcre">
1726 #
1727 # Generally, you will NOT want to use 'glob' here, as this turns
1728 # rline into just another gline. The exceptions are that rline will
1729 # always use the full "nick!user@host realname" string, rather than only
1730 # user@host, but beware that only the ? and * wildcards are available,
1731 # and are the only way to specify where the space can occur if you do
1732 # use glob. For this reason, is recommended to use a real regex engine
1733 # so that at least \s or [[:space:]] is available.
1734
1735 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1736 # RMODE module: Adds the /RMODE command
1737 # Allows channel mods to remove list modes en masse.
1738 # Syntax: /rmode <channel> <mode> [pattern]
1739 # E.g. '/rmode #Channel b m:*' will remove all mute-extbans on the channel.
1740 #<module name="rmode">
1741
1742 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1743 # SAJOIN module: Adds the /SAJOIN command which forcibly joins a user
1744 # to the given channel.
1745 # This module is oper-only.
1746 # To use, SAJOIN must be in one of your oper class blocks.
1747 # Opers need the users/sajoin-others priv to be able to /SAJOIN users
1748 # other than themselves.
1749 #<module name="sajoin">
1750
1751 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1752 # SAKICK module: Adds the /SAKICK command which kicks a user from the
1753 # given channel.
1754 # This module is oper-only.
1755 # To use, SAKICK must be in one of your oper class blocks.
1756 #<module name="sakick">
1757
1758 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1759 # SAMODE module: Adds the /SAMODE command which allows server operators
1760 # to change modes on a channel without requiring them to have any
1761 # channel priviliges. Also allows changing user modes for any user.
1762 # This module is oper-only.
1763 # To use, SAMODE must be in one of your oper class blocks.
1764 #<module name="samode">
1765
1766 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1767 # SANICK module: Adds the /SANICK command which allows opers to change
1768 # users' nicks.
1769 # This module is oper-only.
1770 # To use, SANICK must be in one of your oper class blocks.
1771 #<module name="sanick">
1772
1773 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1774 # SAPART module: Adds the /SAPART command which forcibly parts a user
1775 # from a channel.
1776 # This module is oper-only.
1777 # To use, SAPART must be in one of your oper class blocks.
1778 #<module name="sapart">
1779
1780 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1781 # SAQUIT module: Adds the /SAQUIT command which forcibly quits a user.
1782 # This module is oper-only.
1783 # To use, SAQUIT must be in one of your oper class blocks.
1784 #<module name="saquit">
1785
1786 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1787 # SATOPIC module: Adds the /SATOPIC command which allows changing the
1788 # topic on a channel without requiring any channel priviliges.
1789 # This module is oper-only.
1790 # To use, SATOPIC must be in one of your oper class blocks.
1791 #<module name="satopic">
1792
1793 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1794 # SASL authentication module: Provides support for IRC Authentication
1795 # Layer via AUTHENTICATE. Note: You also need to have cap loaded
1796 # for SASL to work.
1797 #<module name="sasl">
1798 # Define the following to your services server name to improve security
1799 # by ensuring the SASL messages are only sent to the services server
1800 # and not to all connected servers. This prevents a rogue server from
1801 # capturing SASL messages and disables the SASL cap when services is
1802 # down.
1803 #<sasl target="services.mynetwork.com">
1804
1805 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1806 # Secure list module: Prevent /LIST in the first minute of connection,
1807 # crippling most spambots and trojan spreader bots.
1808 #<module name="securelist">
1809 #
1810 #-#-#-#-#-#-#-#-#-# SECURELIST CONFIGURATION -#-#-#-#-#-#-#-#-#-#-#-#-#
1811 #                                                                     #
1812 # Securelist can be harmful to some IRC search engines. To prevent    #
1813 # securelist blocking these sites from listing, define exception tags #
1814 # as shown below:                                                     #
1815 #<securehost exception="*@*.netsplit.de">
1816 #<securehost exception="*@*.ircdriven.com">
1817 #<securehost exception="*@*.ircs.me">
1818 #                                                                     #
1819 # Define the following variable to change how long a user must wait   #
1820 # before issuing a LIST. If not defined, defaults to 60 seconds.      #
1821 #                                                                     #
1822 #<securelist waittime="1m">                                           #
1823
1824 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1825 # Servprotect module: Provides support for Austhex style +k /
1826 # UnrealIRCD +S services mode.
1827 #<module name="servprotect">
1828
1829 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1830 # See nicks module: Adds snomask +n and +N which show local and remote
1831 # nick changes.
1832 # This module is oper-only.
1833 #<module name="seenicks">
1834
1835 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1836 # Set idle module: Adds a command for opers to change their idle time.
1837 # This module is oper-only.
1838 # To use, SETIDLE must be in one of your oper class blocks.
1839 #<module name="setidle">
1840
1841 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1842 # Services support module: Adds several usermodes such as +R and +M.
1843 # This module implements the 'identified' state via account names,
1844 # and is similar in operation to the way asuka and ircu handle services.
1845 #
1846 # At the same time, this offers +r for users and channels to mark them
1847 # as identified separately from the idea of a master account, which
1848 # can be useful for services which are heavily nick-as-account centric.
1849 #
1850 # Also of note is that this module implements two extbans:
1851 # +b R: (stop matching account names from joining)
1852 # +b U:n!u@h (blocks matching unregistered users)
1853 #
1854 #<module name="services_account">
1855
1856 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1857 # Sethost module: Adds the /SETHOST command.
1858 # This module is oper-only.
1859 # To use, SETHOST must be in one of your oper class blocks.
1860 # See the chghost module for how to customise valid chars for hostnames.
1861 #<module name="sethost">
1862
1863 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1864 # Setident module: Adds the /SETIDENT command.
1865 # This module is oper-only.
1866 # To use, SETIDENT must be in one of your oper class blocks.
1867 #<module name="setident">
1868
1869 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1870 # SETNAME module: Adds the /SETNAME command.
1871 #<module name="setname">
1872
1873 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1874 # Serverban: Implements extended ban 's', which stops anyone connected
1875 # to a server matching a mask like +b s:server.mask.here from joining.
1876 #<module name="serverban">
1877
1878 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1879 # SHA1 module: Allows other modules to generate SHA1 hashes.
1880 # Required by the WebSocket module.
1881 #<module name="sha1">
1882
1883 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1884 # Showfile: Provides support for showing a text file to users when    #
1885 # they enter a command.                                               #
1886 # This module adds one command for each <showfile> tag that shows the #
1887 # given file to the user as a series of messages or numerics.         #
1888 #<module name="showfile">                                             #
1889 #                                                                     #
1890 #-#-#-#-#-#-#-#-#-#-# SHOWFILE CONFIGURATION -#-#-#-#-#-#-#-#-#-#-#-#-#
1891 #                                                                     #
1892 # name    - The name of the command which displays this file. This is #
1893 #           the only mandatory setting, all others are optional.      #
1894 # file    - The text file to be shown to the user.                    #
1895 #           By default same as the command name.                      #
1896 # method  - How should the file be shown?                             #
1897 #           * numeric: Send contents using a numeric                  #
1898 #             (similar to /MOTD; the default).                        #
1899 #           * notice:  Send contents as a series of notices.          #
1900 #           * msg:     Send contents as a series of private messages. #
1901 #                                                                     #
1902 # When using the method "numeric", the following extra settings are   #
1903 # available:                                                          #
1904 #                                                                     #
1905 # introtext    - Introductory line, "Showing <name>" by default.      #
1906 # intronumeric - Numeric used for the introductory line.              #
1907 # numeric      - Numeric used for sending the text itself.            #
1908 # endtext      - Ending line, "End of <name>" by default.             #
1909 # endnumeric   - Numeric used for the ending line.                    #
1910 #                                                                     #
1911 #<showfile name="RULES"
1912 #          file="rules.txt"
1913 #          introtext="Server rules:"
1914 #          endtext="End of server rules.">
1915
1916 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1917 # Show whois module: Adds the +W usermode which allows opers to see
1918 # when they are /WHOIS'd.
1919 # This module is oper-only by default.
1920 #<module name="showwhois">
1921 #
1922 # If you wish, you may also let users set this mode. Only opers with the
1923 # users/auspex priv will see real hosts of people, though.
1924 #<showwhois opersonly="yes"
1925 #
1926 # You may also set whether or not users should receive whois notices,
1927 # should they be /WHOIS'd by an oper.
1928 #showfromopers="yes">
1929
1930 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1931 # Shun module: Provides the /SHUN command, which stops a user from
1932 # executing all except configured commands.
1933 # This module is oper-only.
1934 # To use, SHUN must be in one of your oper class blocks.
1935 #<module name="shun">
1936 #
1937 # You may also configure which commands you wish a user to be able to
1938 # perform when shunned. It should be noted that if a shunned user
1939 # issues QUIT or PART then their message will be removed, as if they
1940 # did not issue one.
1941 #
1942 # You can optionally let the user know that their command was blocked.
1943 #
1944 # You may also let SHUN affect opers (defaults to no).
1945 #<shun enabledcommands="ADMIN PING PONG QUIT PART JOIN" notifyuser="yes" affectopers="no">
1946
1947 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1948 # SSL mode module: Adds support for SSL-only channels via the '+z'
1949 # channel mode, SSL-only private messages via the '+z' user mode and
1950 # the 'z:' extban which matches SSL client certificate fingerprints.
1951 #
1952 # Does not do anything useful without a working SSL module and the
1953 # sslinfo module (see below).
1954 #<module name="sslmodes">
1955 #
1956 # The +z user mode is not enabled by default to enable link compatibility
1957 # with 2.0 servers. You can enable it by uncommenting this:
1958 #<sslmodes enableumode="yes">
1959
1960 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1961 # SSL rehash signal module: Allows the SSL modules to be rehashed by
1962 # sending SIGUSR1 to a running InspIRCd process.
1963 # This modules is in extras. Re-run configure with:
1964 # ./configure --enable-extras=m_sslrehashsignal.cpp
1965 # and run make install, then uncomment this module to enable it.
1966 #<module name="sslrehashsignal">
1967
1968 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1969 # GnuTLS SSL module: Adds support for SSL connections using GnuTLS,
1970 # if enabled. You must answer 'yes' in ./configure when asked or
1971 # manually symlink the source for this module from the directory
1972 # src/modules/extra, if you want to enable this, or it will not load.
1973 #<module name="ssl_gnutls">
1974 #
1975 #-#-#-#-#-#-#-#-#-#-#-  GNUTLS CONFIGURATION   -#-#-#-#-#-#-#-#-#-#-#-#
1976 #                                                                     #
1977 # ssl_gnutls is too complex to describe here, see the wiki:           #
1978 # https://wiki.inspircd.org/Modules/3.0/ssl_gnutls                    #
1979
1980 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1981 # SSL info module: Allows users to retrieve information about other
1982 # users' peer SSL certificates and keys. This can be used by client
1983 # scripts to validate users. For this to work, one of ssl_gnutls
1984 # or ssl_openssl must be loaded. This module also adds the
1985 # "* <user> is using a secure connection" whois line, the ability for
1986 # opers to use SSL cert fingerprints to verify their identity and the
1987 # ability to force opers to use SSL connections in order to oper up.
1988 # It is highly recommended to load this module if you use SSL on your
1989 # network.
1990 # For how to use the oper features, please see the first example <oper> tag
1991 # in opers.conf.example.
1992 #
1993 #<module name="sslinfo">
1994
1995 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1996 # mbedTLS SSL module: Adds support for SSL/TLS connections using mbedTLS.
1997 #<module name="ssl_mbedtls">
1998
1999 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
2000 # OpenSSL SSL module: Adds support for SSL connections using OpenSSL,
2001 # if enabled. You must answer 'yes' in ./configure when asked or symlink
2002 # the source for this module from the directory src/modules/extra, if
2003 # you want to enable this, or it will not load.
2004 #<module name="ssl_openssl">
2005 #
2006 #-#-#-#-#-#-#-#-#-#-#- OPENSSL CONFIGURATION   -#-#-#-#-#-#-#-#-#-#-#-#
2007 #                                                                     #
2008 # ssl_openssl is too complex to describe here, see the wiki:          #
2009 # https://wiki.inspircd.org/Modules/3.0/ssl_openssl                   #
2010
2011 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
2012 # Strip color module: Adds channel mode +S that strips color codes and
2013 # all control codes except CTCP from all messages sent to the channel.
2014 #<module name="stripcolor">
2015
2016 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
2017 # Silence module: Adds support for the /SILENCE command, which allows
2018 # users to have a server-side ignore list for their client.
2019 #<module name="silence">
2020 #
2021 # Set the maximum number of entries allowed on a user's silence list.
2022 #<silence maxentries="32"
2023 #
2024 # Whether messages from U-lined servers will bypass silence masks.
2025 #exemptuline="yes">
2026
2027 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
2028 # SQLite3 module: Allows other SQL modules to access SQLite3          #
2029 # databases through a unified API.                                    #
2030 # This module is in extras. Re-run configure with:                    #
2031 # ./configure --enable-extras=m_sqlite3.cpp
2032 # and run make install, then uncomment this module to enable it.      #
2033 #
2034 #<module name="sqlite3">
2035 #
2036 #-#-#-#-#-#-#-#-#-#-#-#- SQL CONFIGURATION   -#-#-#-#-#-#-#-#-#-#-#-#-#
2037 #                                                                     #
2038 # sqlite is more complex than described here, see the wiki for more   #
2039 # info: https://wiki.inspircd.org/Modules/3.0/sqlite3                 #
2040 #
2041 #<database module="sqlite" hostname="/full/path/to/database.db" id="anytext">
2042
2043 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
2044 # SQL authentication module: Allows IRCd connections to be tied into
2045 # a database table (for example a forum).
2046 #
2047 #<module name="sqlauth">
2048 #
2049 #-#-#-#-#-#-#-#-#-#-#- SQLAUTH CONFIGURATION   -#-#-#-#-#-#-#-#-#-#-#-#
2050 #                                                                     #
2051 # sqlauth is too complex to describe here, see the wiki:              #
2052 # https://wiki.inspircd.org/Modules/3.0/sqlauth                       #
2053
2054 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
2055 # SQL oper module: Allows you to store oper credentials in an SQL
2056 # table. You can add additional table columns like you would config
2057 # tags in opers.conf. Opers in opers.conf will override opers from
2058 # this module.
2059 #
2060 #<module name="sqloper">
2061 #
2062 #-#-#-#-#-#-#-#-#-#-#- SQLOPER CONFIGURATION   -#-#-#-#-#-#-#-#-#-#-#-#
2063 #                                                                     #
2064 # dbid       - Database ID to use (see SQL modules).                  #
2065 #                                                                     #
2066 # See also: https://wiki.inspircd.org/Modules/3.0/sqloper             #
2067 #                                                                     #
2068 #<sqloper dbid="1">
2069
2070 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
2071 # StartTLS module: Implements STARTTLS, which allows clients          #
2072 # connected to non SSL enabled ports to enable SSL, if a proper SSL   #
2073 # module is loaded (either ssl_gnutls or ssl_openssl).                #
2074 #<module name="starttls">
2075
2076 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
2077 # SVSHold module: Implements SVSHOLD. Like Q:Lines, but can only be   #
2078 # added/removed by Services.                                          #
2079 #<module name="svshold">
2080 # SVSHOLD does not generate server notices by default, you can turn
2081 # notices on by uncommenting the next line.
2082 #<svshold silent="false">
2083
2084 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
2085 # SWHOIS module: Allows you to add arbitrary lines to user WHOIS.
2086 # This module is oper-only.
2087 # To use, SWHOIS must be in one of your oper class blocks.
2088 #<module name="swhois">
2089
2090 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
2091 # Timed bans module: Adds timed channel bans with the /TBAN command.
2092 #<module name="timedbans">
2093
2094 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
2095 # Test line module: Adds the /TLINE command, used to test how many
2096 # users a /GLINE or /ZLINE etc. would match.
2097 # This module is oper-only.
2098 # To use, TLINE must be in one of your oper class blocks.
2099 #<module name="tline">
2100
2101 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
2102 # Topiclock module: implements server-side topic locking to achieve deeper
2103 # integration with services packages.
2104 #<module name="topiclock">
2105
2106 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
2107 # UHNAMES support module: Adds support for the IRCX style UHNAMES
2108 # extension, which displays ident and hostname in the names list for
2109 # each user, saving clients from doing a WHO on the channel.
2110 # If a client does not support UHNAMES it will not enable it, this will
2111 # not break incompatible clients.
2112 #<module name="uhnames">
2113
2114 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
2115 # Uninvite module: Adds the /UNINVITE command which lets users remove
2116 # pending invites from channels without waiting for the user to join.
2117 #<module name="uninvite">
2118
2119 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
2120 # Userip module: Adds the /USERIP command.
2121 # Allows users to query their own IP, also allows opers to query the IP
2122 # of anyone else.
2123 #<module name="userip">
2124
2125 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
2126 # Vhost module: Adds the VHOST command which allows for adding virtual
2127 # hosts which are accessible using a username and password in the config.
2128 #<module name="vhost">
2129 #
2130 #-#-#-#-#-#-#-#-#-#-#- VHOST CONFIGURATION   -#-#-#-#-#-#-#-#-#-#-#-#-#
2131 #                                                                     #
2132 # user       - Username for the vhost.                                #
2133 #                                                                     #
2134 # pass       - Password for the vhost.                                #
2135 #                                                                     #
2136 # hash       - The hash for the specific user (optional)              #
2137 #              password_hash and a hashing module must be loaded for  #
2138 #              this to work.                                          #
2139 #                                                                     #
2140 # host       - Vhost to set.                                          #
2141 #
2142 #<vhost user="some_username" pass="some_password" host="some.host.test.cc">
2143 #<vhost user="foo" password="$2a$10$iTuYLT6BRhRlOgzfsW9oPe62etW.oXwSpyKw5rJit64SGZanLXghO" hash="bcrypt" host="some.other.host.example.com">
2144
2145 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
2146 # Watch module: Adds the WATCH command, which is used by clients to
2147 # maintain notify lists.
2148 #<module name="watch">
2149 #
2150 # Set the maximum number of entries on a user's watch list below.
2151 #<watch maxentries="32">
2152
2153 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
2154 # WebSocket module: Adds HTML5 WebSocket support.
2155 # Specify hook="websocket" in a <bind> tag to make that port accept
2156 # WebSocket connections. Compatible with SSL/TLS.
2157 # Requires SHA-1 hash support available in the sha1 module.
2158 #<module name="websocket">
2159
2160 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
2161 # XLine database: Stores all *Lines (G/Z/K/R/any added by other modules)
2162 # in a file which is re-loaded on restart. This is useful
2163 # for two reasons: it keeps bans so users may not evade them, and on
2164 # bigger networks, server connections will take less time as there will
2165 # be a lot less bans to apply - as most of them will already be there.
2166 #<module name="xline_db">
2167
2168 # Specify the filename for the xline database here.
2169 #<xlinedb filename="xline.db">
2170
2171 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
2172 #    ____                _   _____ _     _       ____  _ _   _        #
2173 #   |  _ \ ___  __ _  __| | |_   _| |__ (_)___  | __ )(_) |_| |       #
2174 #   | |_) / _ \/ _` |/ _` |   | | | '_ \| / __| |  _ \| | __| |       #
2175 #   |  _ <  __/ (_| | (_| |   | | | | | | \__ \ | |_) | | |_|_|       #
2176 #   |_| \_\___|\__,_|\__,_|   |_| |_| |_|_|___/ |____/|_|\__(_)       #
2177 #                                                                     #
2178 # To link servers to InspIRCd, you MUST load the spanningtree module. #
2179 # If you don't do this, server links will NOT work at all.            #
2180 # This is by design, to allow for the implementation of other linking #
2181 # protocols in modules in the future.                                 #
2182
2183 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
2184 # Spanning tree module: Allows linking of servers using the spanning
2185 # tree protocol (see the READ THIS BIT section above).
2186 # You will almost always want to load this.
2187 #
2188 #<module name="spanningtree">