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