]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - conf/modules.conf.example
Add .example suffix to name
[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="abcdefghijklmnopqrstuvwxyz.-_/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 per-IP connection throttling. Any IP that disconnects
467 # too many times (configurable) in an hour is zlined for a (configurable)
468 # duration, and their count resets to 0.
469 #
470 # NOTE: This module may change name/behaviour later in 1.2. Please make sure
471 # you read release announcements!
472 #
473 #<connectban threshold="10" duration="10m">
474 # This allows for 10 quits in an hour with a 10 minute ban if that is exceeded.
475 #
476 #<module name="m_connectban.so">
477
478 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
479 # Connection throttle module. Configuration:
480 #<module name="m_connflood.so">
481 #
482 #-#-#-#-#-#-#-#-#-#-#- CONTHROTTLE CONFIGURATION -#-#-#-#-#-#-#-#-#-#-#
483 #  seconds, maxconns -  Amount of connections per <seconds>.
484 #
485 #  timeout           -  Time to wait after the throttle was activated
486 #                       before deactivating it. Be aware that the time
487 #                       is seconds + timeout.
488 #
489 #  quitmsg           -  The message that users get if they attempt to
490 #                       connect while the throttle is active.
491 #
492 #  bootwait          -  Amount of time to wait before enforcing the
493 #                       throttling when the server just booted.
494 #
495 #<connflood seconds="30" maxconns="3" timeout="30"
496 #   quitmsg="Throttled" bootwait="10">
497
498 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
499 # Custom title module: Adds the /TITLE command which allows for trusted
500 #                      users to gain a custom whois line and a optional
501 #                      vhost can be specified.
502 #<module name="m_customtitle.so">
503 #
504 #-#-#-#-#-#-#-#-#-#-  CUSTOM TITLE CONFIGURATION   -#-#-#-#-#-#-#-#-#-#
505 #  name              - The username used to identify 
506 #  password          - The password used to identify
507 #  host              - Allowed hostmask [optional]
508 #  title             - Title shown in whois
509 #  vhost             - Displayed host [optional]
510 #
511 #<title name="foo" password="bar" title="Official Chat Helper">
512 #<title name="bar" password="foo" host="ident@host.name" title="Official Chat Helper" vhost="helper.network.chat">
513
514 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
515 # DCCALLOW module: Adds the /DCCALLOW command
516 #<module name="m_dccallow.so">
517 #
518 #-#-#-#-#-#-#-#-#-#-#-  DCCALLOW CONFIGURATION   -#-#-#-#-#-#-#-#-#-#-#
519 #  blockchat         - Whether to block DCC CHAT as well as DCC SEND
520 #  length            - Default duration of entries in DCCALLOW list
521 #  action            - Default action to take if no action is specified
522 #                      can be 'block' or 'allow'
523 #
524 # File configuration:
525 #  pattern           - The glob pattern to match against
526 #  action            - Action to take if a user attempts to send a file
527 #                      that matches this pattern, can be 'block' or 'allow'
528 #
529 #<dccallow blockchat="yes" length="5m" action="block">
530 #<banfile pattern="*.exe" action="block">
531 #<banfile pattern="*.txt" action="allow">
532 #
533 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
534
535 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
536 # Deaf module: adds support for ircu style usermode +d - deaf to
537 # channel messages and channel notices.
538 #<module name="m_deaf.so">
539
540 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
541 # Delay join module: Adds the channel mode +D which delays all JOIN
542 # messages from users until they speak. If they quit or part before
543 # speaking, their quit or part message will not be shown to the channel
544 # which helps cut down noise on large channels in a more friendly way
545 # than the auditorium mode. Only channel ops may set the +D mode.
546 #<module name="m_delayjoin.so">
547
548 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
549 # Deny Channels: Deny Channels from being used by users
550 #<module name="m_denychans.so"> 
551 #
552 #-#-#-#-#-#-#-#-#-#-#-   DENYCHAN DEFINITIONS  -#-#-#-#-#-#-#-#-#-#-#-#
553 #                                                                     #
554 # If you have the m_denychans.so module loaded, you need to specify   #
555 # the channels to deny:                                               #
556 #                                                                     #
557 # name        -      The channel name to deny. (glob masks are ok)    #
558 #                                                                     #
559 # allowopers  -      If operators are allowed to override the deny.   #
560 #                                                                     #
561 # reason      -      Reason given for the deny.                       #
562 #                                                                     #
563 # redirect    -      Redirect the user to a different channel         #
564 #                                                                     #
565 #<badchan name="#gods*" allowopers="yes" reason="Tortoises!">         #
566 #<badchan name="#heaven" redirect="#hell" reason="Nice try!">         #
567 #                                                                     #
568 # Redirects will not work if the target channel is set +L.            #
569 #                                                                     #
570 # Additionally, you may specify channels which are allowed, even if   #
571 # a badchan tag specifies it would be denied:                         #
572 #<goodchan name="#godsleeps">                                         #
573 # Glob masks are accepted here also.
574
575 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
576 # Devoice Module: Let users devoice themselves.
577 #<module name="m_devoice.so">
578
579 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
580 # DNS Blacklist Module: Provides support for looking up IPs on one or #
581 # more blacklists.                                                    #
582 #<module name="m_dnsbl.so">                                           #
583 #                                                                     #
584 # For configuration options please see the wiki page for m_dnsbl at   #
585 # http://inspircd.org/wiki/DNS_Blacklist_Module                       #
586
587 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
588 # Filter module: Provides glob-based message filtering
589 #<module name="m_filter.so">
590 # OR
591 # PCRE filter module: Filters messages using regular expressions
592 #<module name="m_filter_pcre.so">
593 #
594 # You may only use one or the other with these modules, network-wide.
595 #
596 #-#-#-#-#-#-#-#-#-#-#-  FILTER  CONFIGURATION  -#-#-#-#-#-#-#-#-#-#-#-#
597 #                                                                     #
598 # Optional - If you specify to use the m_filter or m_filter_pcre      #
599 # modules, then specfiy below the path to the filter.conf file,       #
600 # or define some <filter> tags.                                       #
601 #                                                                     #
602 #<include file="filter.conf">
603
604 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
605 # Foobar module: does nothing - historical relic
606 #<module name="m_foobar.so">
607
608 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
609 # GeoIP module: Allows the server admin to ban users by country code.
610 #<module name="m_geoip.so">
611 #
612 #-#-#-#-#-#-#-#-#-#-#-#  GEOIP CONFIGURATION  #-#-#-#-#-#-#-#-#-#-#-#-#
613 #                                                                     #
614 # <geoip banunknown="false">                                          #
615 #                                                                     #
616 # Set this value to true or yes to block unknown IP ranges which are  #
617 # not in the database (usually LAN addresses, localhost, etc)         #
618 #                                                                     #
619 # <geoban country="TR" reason="This country not permitted">           #
620 #                                                                     #
621 # Use one or more of these tags to ban countries by country code.     #
622 # The country code must be in capitals and should be an ISO country   #
623 # code such as TR, GB, or US.                                         #
624
625 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
626 # Globops module: gives /GLOBOPS and usermode +g
627 #<module name="m_globops.so">
628
629 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
630 # Global load module: Allows loading and unloading of modules network-
631 # wide (USE WITH EXTREME CAUTION!)
632 #<module name="m_globalload.so">
633
634 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
635 # HELPOP module: Provides the /HELPOP command
636 #<module name="m_helpop.so">
637 #
638 #-#-#-#-#-#-#-#-#-#-#-#-  HELPOP  CONFIGURATION  -#-#-#-#-#-#-#-#-#-#-#
639 #                                                                     #
640 # Optional - If you specify to use the m_helpop.so module, then       #
641 # specify below the path to the helpop.conf file, or if you like to   #
642 # make a mess, define your helpop tags in this conf.                  #
643 #                                                                     #
644 #<include file="helpop.conf">
645
646 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
647 # HIDECHANS module: Allows opers to hide their channels list from non-
648 # opers by setting user mode +I on themselves.
649 # <module name="m_hidechans.so">
650
651 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
652 # HIDEOPER module: Allows opers to hide their oper status from non-
653 # opers by setting user mode +H on themselves.
654 # <module name="m_hideoper.so">
655
656 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
657 # Hostchange module: Allows a different style of cloaking
658 #<module name="m_hostchange.so">
659 #
660 #-#-#-#-#-#-#-#-#-#-#-  HOSTCHANGE  CONFIGURATION  -#-#-#-#-#-#-#-#-#-#
661 #                                                                     #
662 # Optional - If you choose to use the m_hostchange.so module.         #
663 # Config Help -  See http://www.inspircd.org/wiki/Host_Changer_Module #
664 #                                                                     #
665 #<host suffix="polarbears.org" separator="." prefix="">
666 #<hostchange mask="*@fbi.gov" action="addnick">
667 #<hostchange mask="*r00t@*" action="suffix">
668 #<hostchange mask="a@b.com" action="set" value="blah.blah.blah">
669 #<hostchange mask="localhost" ports="7000,7001,7005-7007" action="set" value="blahblah.foo">
670
671 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
672 # httpd module: Provides http server support for InspIRCd
673 #<module name="m_httpd.so">
674 #
675 #-#-#-#-#-#-#-#-#-#-#-#-  HTTPD   CONFIGURATION  -#-#-#-#-#-#-#-#-#-#-#
676 #
677 # Optional - If you choose to use the m_httpd.so module,  then you must
678 # specify the port number and other details of your http server:
679 #
680 #<http ip="192.168.1.10" host="brainwave" port="32006"
681 #      index="/home/brain/inspircd/http/index.html">
682 #
683 # You may have as many of these tags as you wish, each with a different
684 # IP, port, host or index file. Each one will act as an independent
685 # HTTP server.
686 #
687
688 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
689 # http ACL module: Provides access control lists for m_httpd dependent
690 # modules. Use this module to restrict pages by IP address and by
691 # password.
692 #
693 #<module name="m_httpd_acl.so">
694 #
695 #-#-#-#-#-#-#-#-#-#-#-#- HTTPD ACL CONFIGURATION -#-#-#-#-#-#-#-#-#-#-#
696 #
697 # Restrict access to the m_httpd_stats module to all but the local
698 # network and when the correct password is specified:
699 #
700 # <httpdacl path="/stats*" types="password,whitelist"
701 #    username="secretstuff" password="mypasshere" whitelist="127.0.0.*,10.*">
702
703 # Deny all connections to all but the main index page:
704 #
705 # <httpdacl path="/*" types="blacklist" blacklist="*">
706 #
707
708 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
709 # http config module: Allows the server's configuration to be viewed
710 # over HTTP. Requires m_httpd.so to be loaded for it to function.
711 #<module name="m_httpd_config.so">
712
713 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
714 # http stats module: Provides basic stats pages over HTTP
715 # Requires m_httpd.so to be loaded for it to function.
716 #<module name="m_httpd_stats.so">
717 #
718 #-#-#-#-#-#-#-#-#-#-#-#- HTTPD STATS CONFIGURATION -#-#-#-#-#-#-#-#-#-#
719 #
720 #<httpstats stylesheet="http://remote.style/sheet.css">
721 #
722
723 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
724 # Ident: Provides RFC 1413 ident lookup support
725 #<module name="m_ident.so">
726 #
727 #-#-#-#-#-#-#-#-#-#-#-#-   IDENT CONFIGURATION   -#-#-#-#-#-#-#-#-#-#-#
728 #                                                                     #
729 # Optional - If you are using the m_ident.so module, then you can     #
730 # specify the timeout for ident lookups here. If not defined, it will #
731 # default to one second. This is a non-blocking timeout which holds   #
732 # the user in a 'connecting' state until the lookup is complete.      #
733 # The bind value indicates which IP to bind outbound requests to.     #
734 #                                                                     #
735 #<ident timeout="5" bind="">
736
737 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
738 # Invite except module: Adds support for channel invite exceptions (+I)
739 #<module name="m_inviteexception.so">
740
741 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
742 # Invisible module - Adds support for usermode +Q (quiet) which lets an
743 # oper go 'invisible' similar to unrealircd 3.1's +I mode. Note that
744 # opers are still able to see invisible users, and if an oper with +Q
745 # deopers, they will become visible. 
746
747 # IMPORTANT NOTE: To allow this mode to be used by a type of oper, you
748 # must first add the value canquiet="yes" to that oper's type tag.
749 #
750 #<module name="m_invisible.so">
751
752 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
753 # Join flood module: Adds support for join flood protection (+j)
754 #<module name="m_joinflood.so">
755
756 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
757 # Jump Server module: Adds support for the RPL_REDIR numeric
758 #<module name="m_jumpserver.so">
759
760 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
761 # Anti-Auto-Rejoin: Adds support for prevention of auto-rejoin (+J)
762 #<module name="m_kicknorejoin.so">
763
764 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
765 # Knock module: adds the /KNOCK command and +K channel mode
766 #<module name="m_knock.so">
767
768 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
769 # LDAP authentication module: Adds the ability to authenticate users  #
770 # via LDAP. This is an extra module which must be enabled explicitly  #
771 # by symlinking it from modules/extra, and requires the OpenLDAP libs #
772 #                                                                     #
773 #<module name="m_ldapauth.so">                                        #
774 #                                                                     #
775 # Configuration:                                                      #
776 #                                                                     #
777 # <ldapauth baserdn="ou=People,dc=brainbox,dc=cc"                     #
778 #           attribute="uid"                                           #
779 #           server="ldap://brainwave.brainbox.cc"                     #
780 #           allowpattern="Guest*"                                     #
781 #           killreason="Access denied"                                #
782 #           searchscope="subtree"                                     #
783 #           binddn="cn=Manager,dc=brainbox,dc=cc"                     #
784 #           bindauth="mysecretpass"                                   #
785 #           verbose="yes">                                            #
786 #                                                                     #
787 # The baserdn indicates the base DN to search in for users. Usually   #
788 # this is 'ou=People,dc=yourdomain,dc=yourtld'.                       #
789 #                                                                     #
790 # The attribute value indicates the attribute which is used to locate #
791 # a user account by name. On POSIX systems this is usually 'uid'.     #
792 #                                                                     #
793 # The server parameter indicates the LDAP server to connect to. The   #
794 # ldap:// style scheme before the hostname proper is MANDITORY.       #
795 #                                                                     #
796 # The allowpattern value allows you to specify a wildcard mask which  #
797 # will always be allowed to connect regardless of if they have an     #
798 # account, for example guest users.                                   #
799 #                                                                     #
800 # Killreason indicates the QUIT reason to give to users if they fail  #
801 # to authenticate.                                                    #
802 #                                                                     #
803 # The searchscope value indicates the subtree to search under. On our #
804 # test system this is 'subtree'. Your mileage may vary.               #
805 #                                                                     #
806 # Setting the verbose value causes an oper notice to be sent out for  #
807 # every failed authentication to the server, with an error string.    #
808 #                                                                     #
809 # The binddn and bindauth indicate the DN to bind to for searching,   #
810 # and the password for the distinguished name. Some LDAP servers will #
811 # allow anonymous searching in which case these two values do not     #
812 # need defining, otherwise they should be set similar to the examples #
813 # above.                                                              #
814
815 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
816 # Lock server module: Adds /LOCKSERV and /UNLOCKSERV commands that is #
817 # used to temporarily close/open for new connections to the server.   #
818 # These commands require OPER status and that the LOCKSERV UNLOCKSERV #
819 # are specified in a <class> tag that the oper is part of. This is so #
820 # you can control who has access to this possible dangerous command.  #
821 # If your server is locked and you got disconnected, do a REHASH from #
822 # shell to open up again.
823 #<module name="m_lockserv.so">
824
825 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
826 # Msg flood module: Adds message/notice flood protection (+f)
827 #<module name="m_messageflood.so">
828
829 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
830 # MsSQL module: Allows other SQL modules to access MS SQL Server 
831 # through a unified API. You must copy the source for this module
832 # from the directory src/modules/extra, plus the file m_sqlv2.h
833 #<module name="m_mssql.so">
834 #
835 #-#-#-#-#-#-#-#-#-#-#-#- SQL CONFIGURATION   -#-#-#-#-#-#-#-#-#-#-#-#-#
836 #                                                                     #
837 # m_mssql.so is more complex than described here, see wiki for more   #
838 # info http://www.inspircd.org/wiki/SQLServer_Service_Provider_Module #
839 #
840 #<database name="db" username="user" password="pass" hostname="localhost" id="db1">
841
842 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
843 # MySQL module: Allows other SQL modules to access MySQL databases
844 # through a unified API. You must copy the source for this module
845 # from the directory src/modules/extra, plus the file m_sqlv2.h
846 #<module name="m_mysql.so">
847 #
848 #-#-#-#-#-#-#-#-#-#-#-#- SQL CONFIGURATION   -#-#-#-#-#-#-#-#-#-#-#-#-#
849 #                                                                     #
850 # m_mysql.so is more complex than described here, see the wiki for    #
851 # more: http://www.inspircd.org/wiki/SQL_Service_Provider_Module      #
852 #
853 #<database name="mydb" username="myuser" password="mypass" hostname="localhost" id="my_database2">
854
855 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
856 # NAMESX module: Provides support for the NAMESX extension which allows
857 # clients to see all the prefixes set on a user without getting confused.
858 # This is supported by mIRC, x-chat, klient, and maybe more.
859 #<module name="m_namesx.so">
860
861 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
862 # Nickban: Implements extended ban n:, which stops anyone matching
863 # a mask like +b n:nick!user@host from changing their nick on channel.
864 #<module name="m_nickban.so">
865 #
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
891 #<module name="m_nonicks.so">
892
893 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
894 # No Notice module: adds the channel mode +T
895 #<module name="m_nonotice.so">
896
897 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
898 # Oper channels mode: Adds the +O channel mode
899 #<module name="m_operchans.so">
900
901 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
902 # Oper flood module: Removes flood limits from users upon opering up
903 #<module name="m_operflood.so">
904
905 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
906 # Oper Join module: Auto-joins opers to a channel upon oper-up
907 #<module name="m_operjoin.so">
908 #
909 #-#-#-#-#-#-#-#-#-#-#   OPERJOIN CONFIGURATION   -#-#-#-#-#-#-#-#-#-#-#
910 #                                                                     #
911 # If you are using the m_operjoin.so module, specify options here:    #
912 #                                                                     #
913 # channel     -      The channel name to join, can also be a comma    #
914 #                    seperated list eg. "#channel1,#channel2".        #
915 #                                                                     #
916 # override    -      Lets the oper join walking thru any modes that   #
917 #                    might be set, even bans. Use "yes" or "no".      #
918 #                                                                     #
919 #<operjoin channel="#channel" override="no">
920 #
921 # Alternatively you can use the autojoin="channellist" in a <type>    #
922 # tag to set specific autojoins for a type of oper, for example:      #
923 #
924 #<type name="Helper" autojoin="#help" classes="...">
925
926 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
927 # Oper log module: Logs all oper commands to the ircd log at default
928 # loglevel.
929 #<module name="m_operlog.so">
930
931 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
932 # Oper MOTD module: Provides support for seperate message of the day
933 # on oper-up
934 #<module name="m_opermotd.so">
935 #
936 #-#-#-#-#-#-#-#-#-#-#   OPERMOTD CONFIGURATION   -#-#-#-#-#-#-#-#-#-#-#
937 #                                                                     #
938 # If you are using the m_opermotd.so module, specify the motd here    #
939 #                                                                     #
940 #<opermotd file="oper.motd">
941
942 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
943 # Override module: Adds support for oper override
944 #<module name="m_override.so">
945 #
946 #-#-#-#-#-#-#-#-#-#-#   OVERRIDE CONFIGURATION   -#-#-#-#-#-#-#-#-#-#-#
947 #                                                                     #
948 # m_override.so is too complex it describe here, see the wiki:        #
949 # http://www.inspircd.org/wiki/Oper_Override_Module                   #
950
951 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
952 # Oper levels module: Gives each oper a level and prevents
953 # actions being taken against higher level opers
954 # Specify the level as the 'level' parameter of the <type> tag
955 #<module name="m_operlevels.so">
956
957 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
958 # Oper modes module: Allows you to specify modes to add/remove on oper
959 # Specify the modes as the 'modes' parameter of the <type> tag
960 # and/or as the 'modes' parameter of the <oper> tag.
961 #<module name="m_opermodes.so">
962
963 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
964 # Oper password hash module: Allows hashed oper passwords
965 # Relies on the module m_md5.so and/or m_sha256.so being loaded before
966 # m_password_hash.so in the configuration file.
967 #<module name="m_password_hash.so">
968 #
969 #-#-#-#-#-#-#-#-#-#-# OPER HASH CONFIGURATION #-#-#-#-#-#-#-#-#-#-#-#-#
970 #
971 # To use this module, you must define a hash type for each oper's
972 # password you want to hash. For example:
973 #
974 #     <oper name="Brain"
975 #           host="ident@dialup15.isp.com"
976 #           hash="sha256"
977 #           password="a41d730937a53b79f788c0ab13e9e1d5"
978 #           type="NetAdmin">
979
980 # The types of hashing available vary depending on which hashing modules
981 # you load, but usually if you load m_sha256.so and m_md5.so, both md5
982 # and sha256 type hashing will be available (the most secure of which
983 # is SHA256).
984
985 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
986 # Permanent Channels module: Channels with the permanent channels mode
987 # will remain open even after everyone else has left the channel, and
988 # therefore keep things like modes, ban lists and topic. Permanent
989 # channels -may- need support from your Services package to function
990 # properly with them. This adds channel mode +P.
991 #<module name="m_permchannels.so">
992
993 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
994 # PostgreSQL module: Allows other SQL modules to access PgSQL databases
995 # through a unified API. You must copy the source for this module
996 # from the directory src/modules/extra, plus the file m_sqlv2.h
997 #<module name="m_pgsql.so">
998 #
999 #-#-#-#-#-#-#-#-#-#-#-#- SQL CONFIGURATION   -#-#-#-#-#-#-#-#-#-#-#-#-#
1000 #                                                                     #
1001 # m_pgsql.so is more complex than described here, see the wiki for    #
1002 # more: http://www.inspircd.org/wiki/SQL_Service_Provider_Module      #
1003 #
1004 #<database name="mydb" username="myuser" password="mypass" hostname="localhost" id="my_database" ssl="no">
1005
1006 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1007 # Proxy scan module: Scans locally connecting clients for proxies.
1008 #<module name="m_proxyscan.so">
1009
1010 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1011 # Quietban: Implements extended ban q:, which stops anyone matching
1012 # a mask like +b q:nick!user@host from speaking on channel.
1013 #<module name="m_quietban.so">
1014 #
1015
1016 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1017 # Random Quote module: provides a random quote on connect.
1018 # NOTE: Some of these may mimic fatal errors and confuse users and 
1019 # opers alike! - BEWARE!
1020 #<module name="m_randquote.so">
1021 #
1022 #-#-#-#-#-#-#-#-#-#-  RANDOMQUOTES CONFIGURATION -#-#-#-#-#-#-#-#-#-#-#
1023 #                                                                     #
1024 # Optional - If you specify to use the m_randquote.so module, then    #
1025 # specify below the path to the randquotes.conf file.                 #
1026 #                                                                     #
1027 #<randquote file="randquotes.conf">
1028
1029 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1030 # Redirect module: Adds channel redirection (mode +L)
1031 #<module name="m_redirect.so">
1032
1033 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1034 # Registered users only channel creation
1035 # Allows only registered users and opers to create new channels.
1036 #<module name="m_regonlycreate.so">
1037
1038 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1039 # Remove module: Adds the /REMOVE command which is a peaceful
1040 # alternative to /KICK
1041 #<module name="m_remove.so">
1042
1043 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1044 # Restrict banned users module:
1045 # Disallows banned users on a channel from messaging the channel,
1046 # changing nick, or changing the topic, if loaded.
1047 #<module name="m_restrictbanned.so">
1048
1049 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1050 # Restricted channels module: Allows only opers to create channels
1051 #<module name="m_restrictchans.so">
1052
1053 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1054 # Restrict message module: Allows users to only message opers
1055 #<module name="m_restrictmsg.so">
1056
1057 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1058 # Ban users through regular expression patterns
1059 #<module name="m_rline.so">
1060 #
1061 #-#-#-#-#-#-#-#-#-#-#-#- RLINE CONFIGURATION -#-#-#-#-#-#-#-#-#-#-#-#-#
1062 # If you wish to re-check a user when they change nickname (can be
1063 # useful under some situations, but *can* also use CPU with more users
1064 # on a server) then set the following configuration value:
1065 #<rline matchonnickchange="yes">
1066
1067 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1068 # JSON-RPC module: Encode and decode JSON-RPC requests for modules
1069 #<module name="m_rpc_json.so">
1070
1071 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1072 # RPC test module: A test of the RPC API
1073 #<module name="m_rpctest.so">
1074
1075 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1076 # Provide /LIST throttling (to prevent flooding) and /LIST safety to
1077 # prevent excess flood when the list is large.
1078 #<module name="m_safelist.so">
1079 #
1080 #-#-#-#-#-#-#-#-#-#-# SAFELIST CONFIGURATION -#-#-#-#-#-#-#-#-#-#-#-#-#
1081 #
1082 # When using Safelist, you may set the following values;
1083 #
1084 # The first value, 'throttle', sets the amount of time in seconds a user
1085 # must wait between LIST commands. For example, if this is set to 60
1086 # (the default) then the user may not /LIST more than once a minute.
1087 # If not defined, the default value is 60 seconds.
1088 #
1089 # The second value, 'maxlisters', indicates the maximum number of users
1090 # which may be retrieving a LIST at once. It is not recommended you raise
1091 # this value, as increasing it too high can make your network vulnerable
1092 # to floodbots which waste your bandwidth and CPU time with LIST requests.
1093 #
1094 #<safelist throttle="60" maxlisters="50">
1095
1096 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1097 # SAJOIN module: Adds the /SAJOIN command
1098 #<module name="m_sajoin.so">
1099
1100 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1101 # SAMODE module: Adds the oper /SAMODE command
1102 #<module name="m_samode.so">
1103
1104 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1105 # SANICK module: Allows opers to change user's nicks
1106 #<module name="m_sanick.so">
1107
1108 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1109 # SAPART module: Adds the oper /SAPART command
1110 #<module name="m_sapart.so">
1111
1112 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1113 # SAQUIT module: Adds the oper /SAQUIT command (abusable!!!)
1114 #<module name="m_saquit.so">
1115
1116 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1117 # SASL authentication module: Provides support for IRC Authentication 
1118 # Layer (aka: atheme SASL) via AUTHENTICATE.
1119 #<module name="m_sasl.so">
1120
1121 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1122 # Secure list module: Prevent /LIST in the first minute of connection,
1123 # crippling most spambots and trojan spreader bots.
1124 #<module name="m_securelist.so">
1125 #
1126 #-#-#-#-#-#-#-#-#-# SECURELIST CONFIGURATION -#-#-#-#-#-#-#-#-#-#-#-#-#
1127 #                                                                     #
1128 # Securelist can be harmful to some irc search engines such as        #
1129 # netsplit.de and searchirc.com. To prevent securelist blocking these #
1130 # sites from listing, define exception tags as shown below:           #
1131 <securehost exception="*@*.searchirc.org">
1132 <securehost exception="*@*.netsplit.de">
1133 <securehost exception="*@echo940.server4you.de">
1134 #                                                                     #
1135 # Define the following variable to change how long a user must wait   #
1136 # before issuing a LIST. If not defined, defaults to 60 seconds.      #
1137 #                                                                     #
1138 #<securelist waittime="60">                                           #
1139
1140 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1141 # Servprotect module: Provides support for Austhex style +k /
1142 # UnrealIRCD +S services mode
1143 #<module name="m_servprotect.so">
1144
1145 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1146 # See nicks module: Allow for SNOMASK +N which shows nick changes.
1147 #<module name="m_seenicks.so">
1148
1149 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1150 # Set Idle module: Adds a command for opers to change their
1151 # idle time (mainly a toy)
1152 #<module name="m_setidle.so">
1153
1154 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1155 # Services support module: Adds several usermodes such as +R and +M
1156 # this module implements the 'identified' state via user mode +r, which
1157 # is similar to the DALnet and dreamforge systems.
1158 #     
1159 # N O T E!!
1160 #  >>  This CAN NOT be used at the same time as m_services_account <<
1161 # N O T E!!
1162 #<module name="m_services.so">
1163
1164 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1165 # Services support module: Adds several usermodes such as +R and +M
1166 # this module implements the 'identified' state via account names (AC)
1167 # and is similar in operation to the way asuka and ircu handle services.
1168 #                                                                       
1169 # N O T E!!
1170 #  >>  This CAN NOT be used at the same time as m_services <<
1171 # N O T E!!
1172 #<module name="m_services_account.so">
1173
1174 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1175 # Sethost module: Adds the /SETHOST command
1176 # See m_chghost for how to customise valid chars for hostnames
1177 #<module name="m_sethost.so">
1178
1179 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1180 # Setident module: Adds the /SETIDENT command
1181 #<module name="m_setident.so">
1182
1183 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1184 # SETNAME module: Adds the /SETNAME command
1185 #<module name="m_setname.so">
1186
1187 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1188 # Show Whois module: Adds the +W usermode which allows opers
1189 # to see when they are whois'ed (can be annoying).
1190 #<module name="m_showwhois.so">
1191
1192 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1193 # Shun module: Provides the /shun command, which stops a user executing 
1194 # all commands except PING and PONG.
1195 #<module name="m_shun.so">
1196
1197 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1198 # Spy module: Provides the ability to see the complete names list of 
1199 # channels an oper is not a member of
1200 #<module name="m_spy.so">
1201
1202 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1203 # SSL channel mode module: Adds support for SSL-only channels (+z).
1204 # does not do anything useful without a working SSL module (see below)
1205 #<module name="m_sslmodes.so">
1206
1207 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1208 # Dummy ssl module: If you have other servers on your network which
1209 # have SSL, but your server does not have ssl enabled, you should load
1210 # this module, which will handle SSL metadata (e.g. the "Is using ssl"
1211 # field in the WHOIS information).
1212 #<module name="m_ssl_dummy.so">
1213
1214 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1215 # GnuTLS ssl module: Adds support for client-server SSL using GnuTLS,
1216 # if enabled. You must copy the source for this module from the directory
1217 # src/modules/extra, or answer 'yes' in ./configure when asked if you
1218 # want to enable this, or it will not load.
1219 #<module name="m_ssl_gnutls.so">
1220 #
1221 #-#-#-#-#-#-#-#-#-#-#-  GNUTLS CONFIGURATION   -#-#-#-#-#-#-#-#-#-#-#-#
1222 #                                                                     #
1223 # m_ssl_gnutls.so is too complex it describe here, see the wiki:      #
1224 # http://www.inspircd.org/wiki/GnuTLS_SSL_Module                      #
1225 #                                                                     #
1226 # NOTE: If you want to use this module to encrypt and sign your       #
1227 # server to server traffic, you MUST load it before m_spanningtree in #
1228 # your configuration file!                                            #
1229
1230 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1231 # SSL Info module: Allows users to retrieve information about other
1232 # user's peer SSL certificates and keys. This can be used by client
1233 # scripts to validate users. For this to work, one of m_ssl_gnutls.so
1234 # or m_ssl_openssl.so must be loaded. You must symlink the source for
1235 # this module from the directory src/modules/extra.
1236 #<module name="m_sslinfo.so">
1237
1238 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1239 # OpenSSL ssl module: Adds support for client-server SSL using OpenSSL,
1240 # if enabled. You must copy the source for this module from the directory
1241 # src/modules/extra, or answer 'yes' in ./configure when asked if you
1242 # want to enable this, or it will not load.
1243 #<module name="m_ssl_openssl.so">
1244 #
1245 #-#-#-#-#-#-#-#-#-#-#- OPENSSL CONFIGURATION   -#-#-#-#-#-#-#-#-#-#-#-#
1246 #                                                                     #
1247 # m_ssl_openssl.so is too complex it describe here, see the wiki:     #
1248 # http://www.inspircd.org/wiki/OpenSSL_SSL_Module                     #
1249 #                                                                     #
1250 # NOTE: If you want to use this module to encrypt and sign your       #
1251 # server to server traffic, you MUST load it before m_spanningtree in #
1252 # your configuration file!                                            #
1253
1254 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1255 # SSL Cert Oper module: Allows opers to oper up using the key fingerprint
1256 # stored within their SSL certificate and key pair.
1257 # When using this module, one of m_ssl_gnutls.so or m_ssl_openssl.so must
1258 # be loaded. An extra value should be added to enabled opers, which
1259 # is in the following format: fingerprint="<hash>". For more information,
1260 # see the example in the oper blocks.
1261 #<module name="m_ssl_oper_cert.so">
1262
1263 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1264 # Strip colour module: Adds the channel mode +S
1265 #<module name="m_stripcolor.so">
1266
1267 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1268 # SILENCE module: Adds support for /SILENCE
1269 #<module name="m_silence.so">
1270 #
1271 # Configuration tags:
1272 #
1273 #<silence maxentries="32">
1274 #
1275 # Sets the maximum number of entries on a users silence list.
1276
1277 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1278 # SQLite3 module: Allows other SQL modules to access SQLite3          #
1279 # databases through a unified API. You must link the source for this  #
1280 # module from the directory src/modules/extra to src/modules, plus    #
1281 # the file m_sqlv2.h                                                  #
1282 #<module name="m_sqlite3.so">
1283 #
1284 #-#-#-#-#-#-#-#-#-#-#-#- SQL CONFIGURATION   -#-#-#-#-#-#-#-#-#-#-#-#-#
1285 #                                                                     #
1286 # m_sqlite.so is more complex than described here, see the wiki for   #
1287 # more: http://www.inspircd.org/wiki/SQLite3_Service_Provider_Module  #
1288 #
1289 #<database hostname="/full/path/to/database.db" id="anytext">
1290
1291 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1292 # SQLutils module: Provides some utilities to SQL client modules, such
1293 # as mapping queries to users and channels. You must copy the source
1294 # for this module from the directory src/modules/extra/m_sqlutils.cpp
1295 # and src/modules/extra/m_sqlutils.h into /src/modules
1296 # Needed for, and loaded before: SQLauth and SQLoper
1297 #<module name="m_sqlutils.so">
1298
1299 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1300 # SQL authentication module: Allows IRCd connections to be tied into
1301 # a database table (for example a forum). You must copy the source for
1302 # this module from the directory src/modules/extra
1303 # Depends on the SQLutils module being loaded first.
1304 #<module name="m_sqlauth.so">
1305 #
1306 #-#-#-#-#-#-#-#-#-#-#- SQLAUTH CONFIGURATION   -#-#-#-#-#-#-#-#-#-#-#-#
1307 #                                                                     #
1308 # m_sqlauth.so is too complex it describe here, see the wiki:         #
1309 # http://www.inspircd.org/wiki/SQL_Authentication_Module              #
1310
1311 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1312 # SQL logging module: Allows you to log network-wide data for your
1313 # network in a fully normalised set of SQL tables. You must copy the
1314 # source for this module from the directory src/modules/extra
1315 #<module name="m_sqllog.so">
1316 #
1317 #-#-#-#-#-#-#-#-#-#-#-  SQLLOG CONFIGURATION   -#-#-#-#-#-#-#-#-#-#-#-#
1318 #                                                                     #
1319 # dbid       - Database ID to use (see m_sql)                         #
1320 #                                                                     #
1321 # See also: http://www.inspircd.org/wiki/SQL_Logging_Module           #
1322 #                                                                     #
1323 #<sqllog dbid="1">
1324
1325 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1326 # SQL oper module: Allows you to store oper credentials in an SQL table
1327 # You must copy the source for this module from the directory src/modules/extra
1328 # Depends on the SQLutils module being loaded first.
1329 #<module name="m_sqloper.so">
1330 #
1331 #-#-#-#-#-#-#-#-#-#-#- SQLOPER CONFIGURATION   -#-#-#-#-#-#-#-#-#-#-#-#
1332 #                                                                     #
1333 # dbid       - Database ID to use (see m_sql)                         #
1334 # hash       - Hashing provider to use for password hashing           #
1335 #                                                                     #
1336 # See also: http://www.inspircd.org/wiki/SQL_Oper_Storage_Module      #
1337 #                                                                     #
1338 #<sqloper dbid="1" hash="md5">
1339
1340 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1341 # SVSHold module: Implements SVSHOLD. Like Q:Lines, but can only be   #
1342 # added/removed by Services.                                          #
1343 #<module name="m_svshold.so">
1344
1345 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1346 # SWHOIS module: Allows you to add arbitary lines to user WHOIS.
1347 #<module name="m_swhois.so">
1348
1349 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1350 # Taxonomy module: Adds the /TAXONOMY command, used to view all
1351 #                  metadata attached to a user.
1352 #<module name="m_taxonomy.so">
1353
1354 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1355 # Test command module: Does nothing significant. Read: pointless.
1356 #<module name="m_testcommand.so">
1357
1358 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1359 # Timed bans module: Adds timed bans and the /TBAN command
1360 #<module name="m_timedbans.so">
1361
1362 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1363 # Test line module: Adds the /TLINE command, used to test how many
1364 # users a /GLINE or /ZLINE etc would match.
1365 #<module name="m_tline.so">
1366
1367 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1368 # UHNAMES support module: Adds support for the IRCX style UHNAMES
1369 # extension, which displays ident and hostname in the names list for
1370 # each user, saving clients from doing a WHO on the channel. Note that
1371 # this module is not widely supported yet. If a client does not support
1372 # UHNAMES it will not enable it, this will not break incompatible
1373 # clients.
1374 #<module name="m_uhnames.so">
1375
1376 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1377 # Uninvite module: Adds the /UNINVITE command which lets users remove
1378 # pending invites from channels without waiting for the user to join.
1379 #<module name="m_uninvite.so">
1380
1381 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1382 # Userip module: Adds the /USERIP command
1383 #<module name="m_userip.so">
1384
1385 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1386 # Vhost module: Adds the VHOST command which allows for adding virtual
1387 # hosts which are accessible using a username and password in the config.
1388 #<module name="m_vhost.so">
1389 #
1390 #-#-#-#-#-#-#-#-#-#-#- VHOST CONFIGURATION   -#-#-#-#-#-#-#-#-#-#-#-#-#
1391 #                                                                     #
1392 # user       - Username for the vhost.                                #
1393 #                                                                     #
1394 # pass       - Password for the vhost.                                #
1395 #                                                                     #
1396 # host       - Vhost to set.                                          #
1397 #
1398 #<vhost user="some_username" pass="some_password" host="some.host">
1399
1400 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1401 # Watch module: Adds the WATCH command, which is used by clients to 
1402 # maintain notify lists.
1403 #<module name="m_watch.so">
1404 #
1405 # Configuration tags:
1406 #
1407 #<watch maxentries="32">
1408 #
1409 # Sets the maximum number of entries on a user's watch list.
1410
1411 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1412 # XLine database: Stores all *Lines (G/Z/K/R/any added by other modules)
1413 # in a file "xline.db" which can be re-loaded on restart. This is useful
1414 # for two reasons: it keeps bans so users may not evade them, and on
1415 # bigger networks, server connections will take less time as there will
1416 # be a lot less bans to apply - as most of them will already be there.
1417 #<module name="m_xline_db.so">
1418
1419 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1420 # XMLSocket module: Adds support for connections using the shockwave
1421 # flash XMLSocket. Note that this does not work if the client you are
1422 # using has retarded ideas of the IRC protocol. Your client must still
1423 # send RFC-correct lines to the server, this module only changes the
1424 # line ending from newlines to null terminators.
1425 #
1426 #<module name="m_xmlsocket.so">
1427
1428 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1429 # ZipLinks module: Adds support for zlib deflate on server to server
1430 # connections. Both ends of the connection must load this module.
1431 #
1432 #<module name="m_ziplink.so">
1433 #
1434 # To use this module, you must enable it as a transport type in your
1435 # <link> tags or <bind> tags using the transport name 'zip'.
1436 # See the documentation of <link> and <bind>, respectively.
1437 #