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