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