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