]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - docs/conf/modules.conf.example
m_bcrypt: Add module
[user/henk/code/inspircd.git] / docs / conf / modules.conf.example
1 #-#-#-#-#-#-#-#-#-#-#-#-#-  MODULE OPTIONS   -#-#-#-#-#-#-#-#-#-#-#-#-#
2 #                                                                     #
3 #  These tags define which modules will be loaded on startup by your  #
4 #  server. Add modules without any paths. When you make your ircd     #
5 #  using the 'make' command, all compiled modules will be moved into  #
6 #  the folder you specified when you ran ./configure. The module tag  #
7 #  automatically looks for modules in this location.                  #
8 #  If you attempt to load a module outside of this location, either   #
9 #  in the config, or via /LOADMODULE, you will receive an error.      #
10 #                                                                     #
11 #  By default, ALL modules are commented out. You must uncomment them #
12 #  or add lines to your config to load modules. Please refer to       #
13 #  http://wiki.inspircd.org/Modules for a list of modules and         #
14 #  each modules link for any additional conf tags they require.       #
15 #                                                                     #
16 #    ____                _   _____ _     _       ____  _ _   _        #
17 #   |  _ \ ___  __ _  __| | |_   _| |__ (_)___  | __ )(_) |_| |       #
18 #   | |_) / _ \/ _` |/ _` |   | | | '_ \| / __| |  _ \| | __| |       #
19 #   |  _ <  __/ (_| | (_| |   | | | | | | \__ \ | |_) | | |_|_|       #
20 #   |_| \_\___|\__,_|\__,_|   |_| |_| |_|_|___/ |____/|_|\__(_)       #
21 #                                                                     #
22 # To link servers to InspIRCd, you MUST load the m_spanningtree       #
23 # module. If you don't do this, server links will NOT work at all.    #
24 # This is by design, to allow for the implementation of other linking #
25 # protocols in modules in the future.                                 #
26 #                                                                     #
27
28 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
29 # MD5 module: Allows other modules to generate MD5 hashes, usually for
30 # cryptographic uses and security.
31 #
32 # IMPORTANT:
33 # Other modules such as m_cloaking.so and m_password_hash.so may rely on
34 # this module being loaded to function.
35 #
36 #<module name="m_md5.so">
37 #
38 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
39 # SHA256 module: Allows other modules to generate SHA256 hashes,
40 # usually for cryptographic uses and security.
41 #
42 # IMPORTANT:
43 # Other modules such as m_password_hash.so may rely on this module being
44 # loaded to function. Certain modules such as m_spanningtree.so will
45 # function without this module but when it is loaded their features will
46 # be enhanced (for example the addition of HMAC authentication).
47 #
48 #<module name="m_sha256.so">
49 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
50 # RIPEMD160 module: Allows other modules to generate RIPEMD160 hashes,
51 # usually for cryptographic uses and security.
52 #
53 # IMPORTANT:
54 # Other modules may rely on this module being loaded to function.
55 #<module name="m_ripemd160.so">
56
57 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
58 # Abbreviation module: Provides the ability to abbreviate commands a-la
59 # BBC BASIC keywords.
60 #<module name="m_abbreviation.so">
61
62 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
63 # Alias module: Allows you to define server-side command aliases.
64 #<module name="m_alias.so">
65 #
66 # Set the 'prefix' for in-channel aliases (fantasy commands) to the
67 # specified character. If not set, the default is "!".
68 # If 'allowbots' is disabled, +B clients will not be able to use
69 # fantasy commands. If not set, the default is no.
70 #<fantasy prefix="!" allowbots="no">
71 #
72 #-#-#-#-#-#-#-#-#-#-#-  ALIAS DEFINITIONS  -#-#-#-#-#-#-#-#-#-#-#-#-#-#
73 #                                                                     #
74 # If you have the m_alias.so module loaded, you may also define       #
75 # aliases as shown below. They are commonly used to provide shortcut  #
76 # commands to services, however they are not limited to just this use.#
77 # An alias tag requires the following values to be defined in it:     #
78 #                                                                     #
79 # text        -      The text to detect as the actual command line.   #
80 #                    Can't contain spaces, but case insensitive.      #
81 #                    You may have multiple aliases with the same      #
82 #                    command name (text="" value), however the first  #
83 #                    found will be executed if its format value is    #
84 #                    matched, or it has no format value. Aliases are  #
85 #                    read from the top of the file to the bottom.     #
86 #                                                                     #
87 # usercommand -      If this is true, the alias can be run simply as  #
88 #                    /aliasname. Defaults to true.                    #
89 #                                                                     #
90 # channelcommand -   If this is true, the alias can be used as an     #
91 #                    in-channel alias or 'fantasy command', prefixed  #
92 #                    by the fantasy prefix character, !aliasname by   #
93 #                    default. Defaults to false.                      #
94 #                                                                     #
95 # format      -      If this is defined, the parameters of the alias  #
96 #                    must match this glob pattern. For example if you #
97 #                    want the first parameter to start with a # for   #
98 #                    the alias to be executed, set format="#*" in the #
99 #                    alias definition. Note that the :'s which are    #
100 #                    part of IRC formatted lines will be preserved    #
101 #                    for matching of this text. This value is         #
102 #                    optional.                                        #
103 #                                                                     #
104 # replace     -      The text to replace 'text' with. Usually this    #
105 #                    will be "PRIVMSG ServiceName :$2-" or similar.   #
106 #                    You may use the variables $1 through $9 in the   #
107 #                    replace string, which refer to the first through #
108 #                    ninth word in the original string typed by the   #
109 #                    user. You may also use $1- through $9- which     #
110 #                    refer to the first word onwards, through to the  #
111 #                    ninth word onwards, e.g. if the user types the   #
112 #                    command "foo bar baz qux quz" then $3- will hold #
113 #                    "baz qux quz" and $2 will contain "bar". You may #
114 #                    also use the special variables: $nick, $ident,   #
115 #                    $host and $vhost, and you may separate multiple  #
116 #                    commands with a newline (which can be written in #
117 #                    the file literally, or encoded as &nl; or \n     #
118 #                    depending on the config format setting).         #
119 #                                                                     #
120 # requires    -      If you provide a value for 'requires' this means #
121 #                    the given nickname MUST be online for the alias  #
122 #                    to successfully trigger. If they are not, then   #
123 #                    the user receives a 'no such nick' 401 numeric.  #
124 #                                                                     #
125 # uline       -      Setting this to true will ensure that the user   #
126 #                    given in 'requires' is also on a u-lined server, #
127 #                    as well as actually being on the network. If the #
128 #                    user is online, but not on a u-lined server,     #
129 #                    then an oper alert is sent out as this is        #
130 #                    possibly a sign of a user trying to impersonate  #
131 #                    a service.                                       #
132 #                                                                     #
133 # operonly    -      If true, this will make the alias oper only.     #
134 #                    If a non-oper attempts to use the alias, it will #
135 #                    appear to not exist.                             #
136 #                                                                     #
137 #<alias text="NICKSERV" replace="PRIVMSG NickServ :$2-" requires="NickServ" uline="yes">
138 #<alias text="CHANSERV" replace="PRIVMSG ChanServ :$2-" requires="ChanServ" uline="yes">
139 #<alias text="OPERSERV" replace="PRIVMSG OperServ :$2-" requires="OperServ" uline="yes" operonly="yes">
140 #<alias text="BOTSERV" replace="PRIVMSG BotServ :$2-" requires="BotServ" uline="yes">
141 #<alias text="HOSTSERV" replace="PRIVMSG HostServ :$2-" requires="HostServ" uline="yes">
142 #<alias text="MEMOSERV" replace="PRIVMSG MemoServ :$2-" requires="MemoServ" uline="yes">
143 #<alias text="NS" replace="PRIVMSG NickServ :$2-" requires="NickServ" uline="yes">
144 #<alias text="CS" replace="PRIVMSG ChanServ :$2-" requires="ChanServ" uline="yes">
145 #<alias text="OS" replace="PRIVMSG OperServ :$2-" requires="OperServ" uline="yes" operonly="yes">
146 #<alias text="BS" replace="PRIVMSG BotServ :$2-" requires="BotServ" uline="yes">
147 #<alias text="HS" replace="PRIVMSG HostServ :$2-" requires="HostServ" uline="yes">
148 #<alias text="MS" replace="PRIVMSG MemoServ :$2-" requires="MemoServ" uline="yes">
149 #
150 # An example of using the format value to create an alias with two
151 # different behaviours depending on the format of the parameters.
152 #
153 #<alias text="ID" format="#*" replace="PRIVMSG ChanServ :IDENTIFY $2 $3"
154 #  requires="ChanServ" uline="yes">
155 #
156 #<alias text="ID" replace="PRIVMSG NickServ :IDENTIFY $2"
157 #  requires="NickServ" uline="yes">
158 #
159 # This alias fixes a glitch in xchat 2.6.x and above and the way it
160 # assumes IDENTIFY must be prefixed by a colon (:) character. It should
161 # be placed ABOVE the default NICKSERV alias (the first example) listed
162 # above.
163 #
164 #<alias text="NICKSERV" format=":IDENTIFY *" replace="PRIVMSG NickServ :IDENTIFY $3-"
165 #  requires="NickServ" uline="yes">
166 #
167 # You may also add aliases to trigger based on something said in a
168 # channel, aka 'fantasy' commands, configured in the same manner as any
169 # other alias, with usercommand="no" and channelcommand="yes" The
170 # command must be preceded by the fantasy prefix when used.
171 #
172 #<alias text="CS" usercommand="no" channelcommand="yes"
173 #  replace="PRIVMSG ChanServ :$1 $chan $2-" requires="ChanServ" uline="yes">
174 #
175 # This would be used as "!cs <command> <options>", with the channel
176 # being automatically inserted after the command in the message to
177 # ChanServ, assuming the fantasy prefix is "!".
178
179 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
180 # Allowinvite module: Gives channel mode +A to allow all users to use
181 # /INVITE, and extban A to deny invite from specific masks.
182 #<module name="m_allowinvite.so">
183
184 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
185 # Alltime module: Shows time on all connected servers at once.
186 # This module is oper-only and provides /ALLTIME.
187 # To use, ALLTIME must be in one of your oper class blocks.
188 #<module name="m_alltime.so">
189
190 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
191 # Auditorium module: Adds channel mode +u which makes everyone else
192 # except you in the channel invisible, used for large meetings etc.
193 #<module name="m_auditorium.so">
194 #
195 # Auditorium settings:
196 #
197 #<auditorium opvisible="no" opcansee="no" opercansee="yes">
198 #
199 # opvisible (auditorium-vis in exemptchanops):
200 #   Show channel ops to all users
201 # opcansee (auditorium-see in exemptchanops):
202 #   Allow ops to see all joins/parts/kicks in the channel
203 # opercansee:
204 #   Allow opers (channels/auspex) to see see all joins/parts/kicks in the channel
205 #
206 # Exemptchanops can be used to adjust the level at which users become visible or
207 # the level at which they can see the full member list of the channel.
208
209 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
210 # Autoop module: Adds basic channel access controls via the +w listmode.
211 # For example +w o:*!Attila@127.0.0.1 will op anyone matching that mask
212 # on join. This can be combined with extbans, for example +w o:R:Brain
213 # will op anyone identified to the account "Brain".
214 # Another useful combination is with SSL client certificate
215 # fingerprints: +w h:z:72db600734bb9546c1bdd02377bc21d2a9690d48 will
216 # give halfop to the user(s) having the given certificate.
217 #<module name="m_autoop.so">
218
219 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
220 # Ban except module: Adds support for channel ban exceptions (+e).
221 #<module name="m_banexception.so">
222
223 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
224 # Ban redirection module: Allows bans which redirect to a specified
225 # channel. e.g. +b nick!ident@host#channelbanneduserissentto
226 #<module name="m_banredirect.so">
227
228 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
229 # bcrypt module: Allows other modules to generate bcrypt hashes,
230 # usually for cryptographic uses and security.
231 #<module name="m_bcrypt.so">
232 #
233 # rounds: Defines how many rounds the bcrypt function will run when
234 # generating new hashes.
235 #<bcrypt rounds="10">
236
237 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
238 # Block amsg module: Attempt to block all usage of /amsg and /ame.
239 #<module name="m_blockamsg.so">
240 #
241 #-#-#-#-#-#-#-#-#-#-#-  BLOCKAMSG CONFIGURATION  -#-#-#-#-#-#-#-#-#-#-#
242 #                                                                     #
243 # If you have the m_blockamsg.so module loaded, you can configure it  #
244 # with the <blockamsg> tag:                                           #
245 #                                                                     #
246 # delay          -   How many seconds between two messages to force   #
247 #                    them to be recognised as unrelated.              #
248 # action         -   Any of 'notice', 'noticeopers', 'silent', 'kill' #
249 #                    or 'killopers'. Define how to take action when   #
250 #                    a user uses /amsg or /ame.                       #
251 #
252 #<blockamsg delay="3" action="killopers">
253
254 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
255 # Block CAPS module: Adds channel mode +B, blocks all-CAPS messages.
256 #<module name="m_blockcaps.so">
257 #
258 #-#-#-#-#-#-#-#-#-#-#-  BLOCKCAPS CONFIGURATION  -#-#-#-#-#-#-#-#-#-#-#
259 #                                                                     #
260 # percent        - How many percent of text must be caps before text  #
261 #                  will be blocked.                                   #
262 #                                                                     #
263 # minlen         - The minimum length a line must be for the block    #
264 #                  percent to have any effect.                        #
265 #                                                                     #
266 # capsmap        - A list of chars to be considered CAPS. Can be used #
267 #                  to add CAPS characters for your language. Also you #
268 #                  can add things like ! and space to further lock    #
269 #                  down on caps usage.                                #
270 #<blockcaps percent="50"
271 #           minlen="5"
272 #           capsmap="ABCDEFGHIJKLMNOPQRSTUVWXYZ! ">
273
274 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
275 # Block color module: Blocking color-coded messages with chan mode +c.
276 #<module name="m_blockcolor.so">
277
278 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
279 # Botmode module: Adds the user mode +B. If set on a user, it will
280 # show that the user is a bot in /WHOIS.
281 #<module name="m_botmode.so">
282
283 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
284 # CallerID module: Adds usermode +g which activates hybrid-style
285 # callerid: block all private messages unless you /ACCEPT first.
286 #<module name="m_callerid.so">
287 #
288 #-#-#-#-#-#-#-#-#-#-#- CALLERID  CONFIGURATION -#-#-#-#-#-#-#-#-#-#-#-#
289 # maxaccepts     - Maximum number of entries a user can add to his    #
290 #                  /ACCEPT list. Default is 16 entries.               #
291 # operoverride   - Can opers (note: ALL opers) override callerid?     #
292 #                  Default is no.                                     #
293 # tracknick      - Preserve /accept entries when a user changes nick? #
294 #                  If no (the default), the user is removed from      #
295 #                  everyone's accept list if he changes nickname.     #
296 # cooldown       - Amount of time (in seconds) that must pass since   #
297 #                  the last notification sent to a user before he can #
298 #                  be sent another. Default is 60 (1 minute).         #
299 #<callerid maxaccepts="16"
300 #          operoverride="no"
301 #          tracknick="no"
302 #          cooldown="60">
303
304 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
305 # CAP module: Provides the CAP negotiation mechanism seen in
306 # ratbox-derived ircds.
307 #<module name="m_cap.so">
308
309 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
310 # CBAN module: Lets you disallow channels from being used at runtime.
311 # This module is oper-only and provides /CBAN.
312 # To use, CBAN must be in one of your oper class blocks.
313 #<module name="m_cban.so">
314
315 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
316 # Censor module: Adds channel and user mode +G.
317 #<module name="m_censor.so">
318 #
319 #-#-#-#-#-#-#-#-#-#-#-  CENSOR  CONFIGURATION  -#-#-#-#-#-#-#-#-#-#-#-#
320 #                                                                     #
321 # Optional - If you specify to use the m_censor module, then you must #
322 # specify some censor tags. See also:                                 #
323 # http://wiki.inspircd.org/Modules/censor                             #
324 #
325 #<include file="examples/censor.conf.example">
326
327 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
328 # CGI:IRC module: Adds support for automatic host changing in CGI:IRC
329 # (http://cgiirc.sourceforge.net).
330 # Adds snomask +w for monitoring CGI:IRC connections.
331 #<module name="m_cgiirc.so">
332 #
333 #-#-#-#-#-#-#-#-#-#-#-# CGIIRC  CONFIGURATION #-#-#-#-#-#-#-#-#-#-#-#-#
334 #
335 # Optional - If you specify to use m_cgiirc, then you must specify one
336 # or more cgihost tags which indicate authorised CGI:IRC servers which
337 # will be connecting to your network, and an optional cgiirc tag.
338 # For more information see: http://wiki.inspircd.org/Modules/cgiirc
339 #
340 # Set to yes if you want to notice opers when CGI:IRC clients connect.
341 # <cgiirc opernotice="no">
342 #
343 # The type field indicates where the module should get the real
344 # client's IP address from, for further information, please see the
345 # CGI:IRC documentation.
346 #
347 # Old style:
348 # <cgihost type="pass" mask="www.mysite.com">       # Get IP from PASS
349 # <cgihost type="ident" mask="otherbox.mysite.com"> # Get IP from ident
350 # <cgihost type="passfirst" mask="www.mysite.com">  # See the docs
351 # New style:
352 # <cgihost type="webirc" password="foobar"
353 #   mask="somebox.mysite.com">                      # Get IP from WEBIRC
354 #
355 # IMPORTANT NOTE:
356 # ---------------
357 #
358 # When you connect CGI:IRC clients, there are two connect classes which
359 # apply to these clients. When the client initially connects, the connect
360 # class which matches the CGI:IRC site's host is checked. Therefore you
361 # must raise the maximum local/global clients for this ip as high as you
362 # want to allow cgi clients. After the client has connected and is
363 # determined to be a cgi:irc client, the class which matches the client's
364 # real IP is then checked. You may set this class to a lower value, so that
365 # the real IP of the client can still be restricted to, for example, 3
366 # sessions maximum.
367
368 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
369 # Channel create module: Adds snomask +j, which will notify opers of
370 # any new channels that are created.
371 # This module is oper-only.
372 #<module name="m_chancreate.so">
373
374 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
375 # Channel filter module: Allows channel-op defined message filtering
376 # using simple string matches (channel mode +g).
377 #<module name="m_chanfilter.so">
378 #
379 # If hidemask is set to yes, the user will not be shown the mask when
380 # his/her message is blocked.
381 #<chanfilter hidemask="yes">
382
383 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
384 # Channel history module: Displays the last 'X' lines of chat to a user
385 # joining a channel with +H 'X:T' set; 'T' is the maximum time to keep
386 # lines in the history buffer. Designed so that the new user knows what
387 # the current topic of conversation is when joining the channel.
388 #<module name="m_chanhistory.so">
389 #
390 # Set the maximum number of lines allowed to be stored per channel below.
391 # This is the hard limit for 'X'.
392 # If notice is set to yes, joining users will get a NOTICE before playback
393 # telling them about the following lines being the pre-join history.
394 # If bots is set to yes, it will also send to users marked with +B
395 #<chanhistory maxlines="20" notice="yes" bots="yes">
396
397 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
398 # Channel logging module: Used to send snotice output to channels, to
399 # allow staff to centrally monitor and discuss network activity.
400 #
401 # The "channel" field is where you want the messages to go, "snomasks"
402 # is what snomasks you want to be sent to that channel. Multiple tags
403 # are allowed.
404 #<module name="m_chanlog.so">
405 #<chanlog snomasks="AOcC" channel="#opers">
406
407 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
408 # Channel names module: Allows disabling channels which have certain
409 # characters in the channel name such as bold, colorcodes, etc. which
410 # can be quite annoying and allow users to on occasion have a channel
411 # that looks like the name of another channel on the network.
412 #<module name="m_channames.so">
413
414 <channames
415         # denyrange: characters or range of characters to deny in channel
416         # names.
417         denyrange="2,3"
418
419         # allowrange: characters or range of characters to specifically allow
420         # in channel names.
421         allowrange="">
422
423 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
424 # Channelban: Implements extended ban j:, which stops anyone already
425 # in a channel matching a ban like +b j:#channel*mask from joining.
426 #<module name="m_channelban.so">
427
428 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
429 # Check module: Adds the /CHECK command.
430 # Check is useful for looking up information on channels, users,
431 # IP addresses and hosts.
432 # This module is oper-only.
433 # To use, CHECK must be in one of your oper class blocks.
434 #<module name="m_check.so">
435
436 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
437 # CHGHOST module: Adds the /CHGHOST command.
438 # This module is oper-only.
439 # To use, CHGHOST must be in one of your oper class blocks.
440 # NOTE: Services will not be able to set vhosts on users if this module
441 # isn't loaded. If you're planning on running services, you probably
442 # want to load this.
443 #<module name="m_chghost.so">
444 #
445 #-#-#-#-#-#-#-#-# /CHGHOST - /SETHOST  CONFIGURATION #-#-#-#-#-#-#-#-#
446 # Optional - If you want to use special chars for hostnames you can  #
447 # specify your own custom list of chars with the <hostname> tag:     #
448 #                                                                    #
449 # charmap        - A list of chars accepted as valid by the /CHGHOST #
450 #                  and /SETHOST commands. Also note that the list is #
451 #                  case-sensitive.                                   #
452 #<hostname charmap="abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ.-_/0123456789">
453
454 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
455 # CHGIDENT module: Adds the /CHGIDENT command.
456 # This module is oper-only.
457 # To use, CHGIDENT must be in one of your oper class blocks.
458 #<module name="m_chgident.so">
459
460 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
461 # CHGNAME module: Adds the /CHGNAME command.
462 # This module is oper-only.
463 # To use, CHGNAME must be in one of your oper class blocks.
464 #<module name="m_chgname.so">
465
466 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
467 # Clear chan module: Allows opers to masskick, masskill or mass-G/ZLine
468 # all users on a channel using /CLEARCHAN.
469 #<module name="m_clearchan.so">
470
471 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
472 # Cloaking module: Adds usermode +x and cloaking support.
473 # Relies on the module m_md5.so being loaded.
474 # To cloak users when they connect, load m_conn_umodes and set
475 # <connect:modes> to include the +x mode. The example <connect> tag
476 # shows this. See the m_conn_umodes module for more information.
477 #<module name="m_cloaking.so">
478 #
479 #-#-#-#-#-#-#-#-#-#-#- CLOAKING  CONFIGURATION -#-#-#-#-#-#-#-#-#-#-#-#
480 #                                                                     #
481 # To use m_cloaking, you must define a cloak key, and optionally a    #
482 # cloak prefix as shown below. The cloak key must be shared across    #
483 # the network for correct cloaking.                                   #
484 #                                                                     #
485 # There are two methods of cloaking:                                  #
486 #                                                                     #
487 #   half           Cloak only the "unique" portion of a host; show    #
488 #                  the last 2 parts of the domain, /16 subnet of IPv4 #
489 #                  or /48 subnet of the IPv6 address.                 #
490 #                                                                     #
491 #   full           Cloak the users completely, using three slices for #
492 #                  common CIDR bans (IPv4: /16, /24; IPv6: /48, /64). #
493 #                                                                     #
494 # The methods use a single key that can be any length of text.        #
495 # An optional prefix may be specified to mark cloaked hosts.          #
496 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
497 #
498 #<cloak mode="half"
499 #       key="secret"
500 #       prefix="net-">
501
502 #-#-#-#-#-#-#-#-#-#-#-#- CLOSE MODULE #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
503 # Close module: Allows an oper to close all unregistered connections.
504 # This module is oper-only and provides the /CLOSE command.
505 # To use, CLOSE must be in one of your oper class blocks.
506 #<module name="m_close.so">
507
508 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
509 # Clones module: Adds an oper command /CLONES for detecting cloned
510 # users. Warning: This command may be resource intensive when it is
511 # issued, use with care.
512 # This module is oper-only.
513 # To use, CLONES must be in one of your oper class blocks.
514 #<module name="m_clones.so">
515
516 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
517 # Common channels module: Adds user mode +c, which, when set, requires
518 # that users must share a common channel with you to PRIVMSG or NOTICE
519 # you.
520 #<module name="m_commonchans.so">
521
522 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
523 # Auto join on connect module: Allows you to force users to join one
524 # or more channels automatically upon connecting to the server, or
525 # join them in case they aren't on any channels after being online
526 # for X seconds.
527 #<module name="m_conn_join.so">
528 #
529 #-#-#-#-#-#-#-#-#-#-#-#- CONNJOIN CONFIGURATION  -#-#-#-#-#-#-#-#-#-#-#
530 #
531 # If you have m_conn_join.so loaded, you can configure it using the
532 # following values, or set autojoin="#chat,#help" in <connect> blocks.
533 #
534 # Join users immediately after connection to #one #two and #three.
535 #<autojoin channel="#one,#two,#three">
536 # Join users to #chat after 15 seconds if they aren't on any channels.
537 #<autojoin channel="#chat" delay="15">
538
539 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
540 # Set modes on connect module: When this module is loaded <connect>
541 # blocks may have an optional modes="" value, which contains modes to
542 # add or remove from users when they connect to the server.
543 #<module name="m_conn_umodes.so">
544
545 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
546 # Wait for PONG on connect module: Send a PING to all connecting users
547 # and don't let them connect until they reply with a PONG.
548 # This is useful to stop certain kinds of bots and proxies.
549 #<module name="m_conn_waitpong.so">
550 #
551 #-#-#-#-#-#-#-#-#-#-#-   WAITPONG CONFIGURATION  -#-#-#-#-#-#-#-#-#-#-#
552 #                                                                     #
553 # If you have the m_conn_waitpong.so module loaded, configure it with #
554 # the <waitpong> tag:                                                 #
555 #                                                                     #
556 # sendsnotice    -   Whether to send a helpful notice to users on     #
557 #                    connect telling them how to connect, should      #
558 #                    their client not reply PONG automatically.       #
559 #                                                                     #
560 # killonbadreply -   Whether to kill the user if they send the wrong  #
561 #                    PONG reply.                                      #
562 #                                                                     #
563 #<waitpong sendsnotice="yes" killonbadreply="yes">
564
565 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
566 # Channel cycle module: Adds the /CYCLE command which is a server-side
567 # /HOP that bypasses restrictive modes.
568 #<module name="m_cycle.so">
569
570 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
571 # Connectban: Provides IP connection throttling. Any IP range that
572 # connects too many times (configurable) in an hour is Z-Lined for a
573 # (configurable) duration, and their count resets to 0.
574 #<module name="m_connectban.so">
575 #
576 # ipv4cidr and ipv6cidr allow you to turn the comparison from
577 # individual IP addresses (32 and 128 bits) into CIDR masks, to allow
578 # for throttling over whole ISPs/blocks of IPs, which may be needed to
579 # prevent attacks.
580 #
581 # This allows for 10 connections in an hour with a 10 minute ban if
582 # that is exceeded.
583 #<connectban threshold="10" duration="10m" ipv4cidr="32" ipv6cidr="128"
584 # A custom ban message may optionally be specified.
585 # banmessage="Your IP range has been attempting to connect too many times in too short a duration. Wait a while, and you will be able to connect.">
586
587 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
588 # Connection throttle module.
589 #<module name="m_connflood.so">
590 #
591 #-#-#-#-#-#-#-#-#-#-#- CONNTHROTTLE CONFIGURATION  -#-#-#-#-#-#-#-#-#-#
592 #  seconds, maxconns -  Amount of connections per <seconds>.
593 #
594 #  timeout           -  Time to wait after the throttle was activated
595 #                       before deactivating it. Be aware that the time
596 #                       is seconds + timeout.
597 #
598 #  quitmsg           -  The message that users get if they attempt to
599 #                       connect while the throttle is active.
600 #
601 #  bootwait          -  Amount of time in seconds to wait before enforcing
602 #                       the throttling when the server just booted.
603 #
604 #<connflood seconds="30" maxconns="3" timeout="30"
605 #   quitmsg="Throttled" bootwait="10">
606
607 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
608 # Custom prefixes: Allows for channel prefixes to be added.
609 #<module name="m_customprefix.so">
610 #
611 # name       The name of the mode, must be unique from other modes.
612 # letter     The letter used for this mode. Required.
613 # prefix     The prefix used for nicks with this mode. Not required.
614 # rank       A numeric rank for this prefix, defining what permissions it gives.
615 #            The rank of voice, halfop and op is 10000, 20000, and 30000,
616 #            respectively.
617 # ranktoset  The numeric rank required to set/unset this mode. Defaults to rank.
618 # depriv     Can you remove the mode from yourself? Defaults to yes.
619 #<customprefix name="founder" letter="q" prefix="~" rank="50000" ranktoset="50000">
620 #<customprefix name="admin" letter="a" prefix="&amp;" rank="40000" ranktoset="50000">
621 #<customprefix name="halfop" letter="h" prefix="%" rank="20000" ranktoset="30000">
622 #<customprefix name="halfvoice" letter="V" prefix="-" rank="1" ranktoset="20000">
623 #
624 # Do /RELOADMODULE m_customprefix.so after changing the settings of this module.
625
626 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
627 # Custom title module: Adds the /TITLE command which allows for trusted
628 # users to gain a custom whois line and an optional vhost can be
629 # specified.
630 #<module name="m_customtitle.so">
631 #
632 #-#-#-#-#-#-#-#-#-#-  CUSTOM TITLE CONFIGURATION   -#-#-#-#-#-#-#-#-#-#
633 #  name     - The username used to identify.
634 #  password - The password used to identify.
635 #  hash     - The hash for the specific user's password (optional).
636 #             m_password_hash.so and a hashing module must be loaded
637 #             for this to work.
638 #  host     - Allowed hostmask (optional).
639 #  title    - Title shown in whois.
640 #  vhost    - Displayed host (optional).
641 #
642 #<title name="foo" password="bar" title="Official Chat Helper">
643 #<title name="bar" password="foo" host="ident@host.name" title="Official Chat Helper" vhost="helper.network.chat">
644 #<title name="foo" password="fcde2b2edba56bf408601fb721fe9b5c338d10ee429ea04fae5511b68fbf8fb9" hash="sha256" title="Official Chat Helper">
645
646 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
647 # DCCALLOW module: Adds the /DCCALLOW command.
648 #<module name="m_dccallow.so">
649 #
650 #-#-#-#-#-#-#-#-#-#-#-  DCCALLOW CONFIGURATION   -#-#-#-#-#-#-#-#-#-#-#
651 #  blockchat         - Whether to block DCC CHAT as well as DCC SEND.
652 #  length            - Default duration of entries in DCCALLOW list.
653 #  action            - Default action to take if no action is
654 #                      specified, can be 'block' or 'allow'.
655 #
656 # File configuration:
657 #  pattern           - The glob pattern to match against.
658 #  action            - Action to take if a user attempts to send a file
659 #                      that matches this pattern, can be 'block' or
660 #                      'allow'.
661 #
662 #<dccallow blockchat="yes" length="5m" action="block">
663 #<banfile pattern="*.exe" action="block">
664 #<banfile pattern="*.txt" action="allow">
665
666 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
667 # Deaf module: Adds support for the usermode +d - deaf to channel
668 # messages and channel notices.
669 #<module name="m_deaf.so">
670
671 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
672 # Delay join module: Adds the channel mode +D which delays all JOIN
673 # messages from users until they speak. If they quit or part before
674 # speaking, their quit or part message will not be shown to the channel
675 # which helps cut down noise on large channels in a more friendly way
676 # than the auditorium mode. Only channel ops may set the +D mode.
677 #<module name="m_delayjoin.so">
678
679 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
680 # Delay message module: Adds the channel mode +d which disallows a user
681 # from talking in the channel unless they've been joined for X seconds.
682 # Settable using /MODE #chan +d 30
683 #<module name="m_delaymsg.so">
684
685 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
686 # Deny channels module: Deny channels from being used by users.
687 #<module name="m_denychans.so">
688 #
689 #-#-#-#-#-#-#-#-#-#-#-   DENYCHAN DEFINITIONS  -#-#-#-#-#-#-#-#-#-#-#-#
690 #                                                                     #
691 # If you have the m_denychans.so module loaded, you need to specify   #
692 # the channels to deny:                                               #
693 #                                                                     #
694 # name        -      The channel name to deny (glob masks are ok).    #
695 # allowopers  -      If operators are allowed to override the deny.   #
696 # reason      -      Reason given for the deny.                       #
697 # redirect    -      Redirect the user to a different channel.        #
698 #                                                                     #
699 #<badchan name="#gods*" allowopers="yes" reason="Tortoises!">         #
700 #<badchan name="#heaven" redirect="#hell" reason="Nice try!">         #
701 #                                                                     #
702 # Redirects will not work if the target channel is set +L.            #
703 #                                                                     #
704 # Additionally, you may specify channels which are allowed, even if   #
705 # a badchan tag specifies it would be denied:                         #
706 #<goodchan name="#godsleeps">                                         #
707 # Glob masks are accepted here also.                                  #
708
709 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
710 # Devoice module: Let users devoice themselves using /DEVOICE #chan.
711 #<module name="m_devoice.so">
712
713 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
714 # DNS blacklist module: Provides support for looking up IPs on one or #
715 # more blacklists.                                                    #
716 #<module name="m_dnsbl.so">                                           #
717 #                                                                     #
718 # For configuration options please see the wiki page for m_dnsbl at   #
719 # http://wiki.inspircd.org/Modules/dnsbl                              #
720
721 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
722 # Exempt channel operators module: Provides support for allowing      #
723 # channel operators to be exempt from some channel modes.  Supported  #
724 # modes are blockcaps, noctcp, blockcolor, nickflood, flood, censor,  #
725 # filter, regmoderated, nonick, nonotice, and stripcolor.             #
726 #<module name="m_exemptchanops.so">                                   #
727
728 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
729 # Filter module: Provides message filtering, similar to SPAMFILTER.   #
730 #<module name="m_filter.so">
731 #                                                                     #
732 # This module depends upon a regex provider such as m_regex_pcre or   #
733 # m_regex_glob to function. You must specify which of these you want  #
734 # m_filter to use via the tag below.                                  #
735 #                                                                     #
736 # Valid engines are:                                                  #
737 #                                                                     #
738 # glob   - Glob patterns, provided via m_regex_glob.                  #
739 # pcre   - PCRE regexps, provided via m_regex_pcre, needs libpcre.    #
740 # tre    - TRE regexps, provided via m_regex_tre, requires libtre.    #
741 # posix  - POSIX regexps, provided via m_regex_posix, not available   #
742 #          on Windows, no dependencies on other operating systems.    #
743 # stdlib - stdlib regexps, provided via m_regex_stdlib, see comment   #
744 #          at the <module> tag for info on availability.              #
745 #                                                                     #
746 #<filteropts engine="glob">                                           #
747 #                                                                     #
748 # Your choice of regex engine must match on all servers network-wide.
749 #
750 # To learn more about the configuration of this module, read          #
751 # examples/filter.conf.example, which covers the various types of     #
752 # filters and shows how to add exemptions.                            #
753 #
754 #-#-#-#-#-#-#-#-#-#-#-  FILTER  CONFIGURATION  -#-#-#-#-#-#-#-#-#-#-#-#
755 #                                                                     #
756 # Optional - If you specify to use the m_filter module, then          #
757 # specify below the path to the filter.conf file, or define some      #
758 # <filter> tags.                                                      #
759 #                                                                     #
760 #<include file="examples/filter.conf.example">
761
762 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
763 # Flash Policy Daemon module: Allows Flash IRC clients (e.g. LightIRC)#
764 # to connect. If no file is specified, it'll serve a default policy   #
765 # allowing all IPs to connect to all plaintext IRC ports              #
766 #<bind address="" port="8430" type="flashpolicyd">                    #
767 #<flashpolicyd timeout="5" file="">                                   #
768 #<module name="m_flashpolicyd.so">                                    #
769
770 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
771 # Gecos ban: Implements extended ban 'r', which stops anyone matching
772 # a mask like +b r:*realname?here* from joining a channel.
773 #<module name="m_gecosban.so">
774
775 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
776 # GeoIP module: Allows the server admin to match users by country code.
777 # This module is in extras. Re-run configure with:
778 # ./configure --enable-extras=m_geoip.cpp
779 # and run make install, then uncomment this module to enable it.
780 # This module requires GeoIP to be installed on your system,
781 # use your package manager to find the appropriate packages
782 # or check the InspIRCd wiki page for this module.
783 #<module name="m_geoip.so">
784 #
785 # The actual allow/ban actions are done by connect classes, not by the
786 # GeoIP module. An example connect class to ban people from russia or
787 # turkey:
788 #
789 # <connect deny="*" geoip="TR,RU">
790 #
791 # The country code must be in capitals and should be an ISO country
792 # code such as TR, GB, or US. Unknown IPs (localhost, LAN IPs, etc)
793 # will be assigned the country code "UNK". Since connect classes are
794 # matched from top down, your deny classes must be above your allow
795 # classes for them to match.
796
797 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
798 # Globops module: Provides the /GLOBOPS command and snomask +g.
799 # This module is oper-only.
800 # To use, GLOBOPS must be in one of your oper class blocks.
801 #<module name="m_globops.so">
802
803 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
804 # Global load module: Allows loading and unloading of modules network-
805 # wide (USE WITH EXTREME CAUTION!)
806 # This module is oper-only and provides /GLOADMODULE, /GUNLOADMODULE
807 # and /GRELOADMODULE.
808 # To use, GLOADMODULE, GUNLOADMODULE and GRELOADMODULE
809 # must be in one of your oper class blocks.
810 #<module name="m_globalload.so">
811
812 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
813 # HELPOP module: Provides the /HELPOP command
814 #<module name="m_helpop.so">
815 #
816 #-#-#-#-#-#-#-#-#-#-#-#-  HELPOP  CONFIGURATION  -#-#-#-#-#-#-#-#-#-#-#
817 #                                                                     #
818 # If you specify to use the m_helpop.so module, then specify below    #
819 # the path to the helpop.conf file.                                   #
820 #                                                                     #
821 #<include file="examples/inspircd.helpop-full.example">
822
823 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
824 # Hide chans module: Allows users to hide their channels list from non-
825 # opers by setting user mode +I on themselves.
826 #<module name="m_hidechans.so">
827 #
828 # This mode can optionally prevent opers from seeing channels on a +I
829 # user, for more privacy if set to true.
830 # This setting is not recommended for most mainstream networks.
831 #<hidechans affectsopers="false">
832
833 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
834 # Hide oper module: Allows opers to hide their oper status from non-
835 # opers by setting user mode +H on themselves.
836 # This module is oper-only.
837 #<module name="m_hideoper.so">
838
839 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
840 # Hostchange module: Allows a different style of cloaking.
841 #<module name="m_hostchange.so">
842 #
843 #-#-#-#-#-#-#-#-#-#-#-  HOSTCHANGE  CONFIGURATION  -#-#-#-#-#-#-#-#-#-#
844 #                                                                     #
845 # See http://wiki.inspircd.org/Modules/hostchange for help.           #
846 #                                                                     #
847 #<host suffix="polarbears.org" separator="." prefix="">
848 #<hostchange mask="*@fbi.gov" action="addnick">
849 #<hostchange mask="*r00t@*" action="suffix">
850 #<hostchange mask="a@b.com" action="set" value="blah.blah.blah">
851 #<hostchange mask="localhost" ports="7000,7001,7005-7007" action="set" value="blahblah.foo">
852
853 # hostcycle: If loaded, when a user gets a host or ident set, it will
854 # cycle them in all their channels. If not loaded it will simply change
855 # their host/ident without cycling them.
856 #<module name="m_hostcycle.so">
857
858 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
859 # httpd module: Provides HTTP server support for InspIRCd.
860 #<module name="m_httpd.so">
861 #
862 #-#-#-#-#-#-#-#-#-#-#-#-  HTTPD   CONFIGURATION  -#-#-#-#-#-#-#-#-#-#-#
863 #
864 # If you choose to use the m_httpd.so module, then you will need to add
865 # a <bind> tag with type "httpd", and load at least one of the other
866 # m_httpd_* modules to provide pages to display.
867 #
868 # You can adjust the timeout for HTTP connections below. All HTTP
869 # connections will be closed after (roughly) this many seconds.
870 #<httpd timeout="20">
871
872 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
873 # HTTP ACL module: Provides access control lists for m_httpd dependent
874 # modules. Use this module to restrict pages by IP address and by
875 # password.
876 #<module name="m_httpd_acl.so">
877 #
878 #-#-#-#-#-#-#-#-#-#-#-#- HTTPD ACL CONFIGURATION -#-#-#-#-#-#-#-#-#-#-#
879 #
880 # Restrict access to the m_httpd_stats module to all but the local
881 # network and when the correct password is specified:
882 # <httpdacl path="/stats*" types="password,whitelist"
883 #    username="secretstuff" password="mypasshere" whitelist="127.0.0.*,10.*">
884 #
885 # Deny all connections to all but the main index page:
886 # <httpdacl path="/*" types="blacklist" blacklist="*">
887
888 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
889 # HTTP config module: Allows the configuration of the server to be
890 # viewed over HTTP. Requires m_httpd.so to be loaded for it to function.
891 #<module name="m_httpd_config.so">
892
893 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
894 # HTTP stats module: Provides basic stats pages over HTTP.
895 # Requires m_httpd.so to be loaded for it to function.
896 #<module name="m_httpd_stats.so">
897
898 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
899 # Ident: Provides RFC 1413 ident lookup support.
900 # When this module is loaded <connect:allow> tags may have an optional
901 # useident="yes|no" boolean value, determining whether or not to lookup
902 # ident on users matching that connect tag.
903 #<module name="m_ident.so">
904 #
905 #-#-#-#-#-#-#-#-#-#-#-#-   IDENT CONFIGURATION   -#-#-#-#-#-#-#-#-#-#-#
906 #                                                                     #
907 # Optional - If you are using the m_ident.so module, then you can     #
908 # specify the timeout for ident lookups here. If not defined, it will #
909 # default to 5 seconds. This is a non-blocking timeout which holds    #
910 # the user in a 'connecting' state until the lookup is complete.      #
911 # The bind value indicates which IP to bind outbound requests to.     #
912 # nolookupprefix: If on, the idents of users being in a connect class #
913 # with ident lookups disabled (i.e. <connect useident="off">) will be #
914 # prefixed with a "~". If off, the ident of those users will not be   #
915 # prefixed. Default is off.                                           #
916 #
917 #<ident timeout="5" nolookupprefix="no">
918
919 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
920 # Invite exception module: Adds support for channel invite exceptions
921 # (+I).
922 #<module name="m_inviteexception.so">
923 # Does a +I bypass channel +k in addition to +i?
924 #<inviteexception bypasskey="yes">
925
926 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
927 # IRCv3 module: Provides the following IRCv3.1 extensions:
928 # extended-join, away-notify and account-notify. These are optional
929 # enhancements to the client-to-server protocol. An extension is only
930 # active for a client when the client specifically requests it, so this
931 # module needs m_cap to work.
932 #
933 # Further information on these extensions can be found at the IRCv3
934 # working group website:
935 # http://ircv3.org/extensions/
936 #
937 #<module name="m_ircv3.so">
938 # The following block can be used to control which extensions are
939 # enabled. Note that extended-join can be incompatible with m_delayjoin
940 # and host cycling.
941 #<ircv3 accountnotify="on" awaynotify="on" extendedjoin="on">
942
943 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
944 # Join flood module: Adds support for join flood protection +j X:Y.
945 # Closes the channel for 60 seconds if X users join in Y seconds.
946 #<module name="m_joinflood.so">
947
948 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
949 # Jump server module: Adds support for the RPL_REDIR numeric.
950 # This module is oper-only.
951 # To use, JUMPSERVER must be in one of your oper class blocks.
952 # If your server is redirecting new clients and you get disconnected,
953 # do a REHASH from shell to open up again.
954 #<module name="m_jumpserver.so">
955
956 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
957 # Anti auto rejoin: Adds support for prevention of auto-rejoin (+J).
958 #<module name="m_kicknorejoin.so">
959
960 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
961 # Knock module: Adds the /KNOCK command and channel mode +K.
962 #<module name="m_knock.so">
963 #
964 # This setting specifies what to do when someone successfully /KNOCKs.
965 # If set to "notice", then a NOTICE will be sent to the channel.
966 # This is the default and the compatible setting, as it requires no
967 # special support from the clients.
968 # If set to "numeric" then a 710 numeric will be sent to the channel.
969 # This allows easier scripting but not all clients support it.
970 # If set to "both" then (surprise!) both will be sent.
971 #<knock notify="notice">
972
973 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
974 # LDAP module: Allows other SQL modules to access a LDAP database
975 # through a unified API.
976 # This modules is in extras. Re-run configure with:
977 # ./configure --enable-extras=m_ldap.cpp
978 # and run make install, then uncomment this module to enable it.
979 #
980 #<module name="m_ldap.so">
981 #<database module="ldap" id="ldapdb" server="ldap://localhost" binddn="cn=Manager,dc=inspircd,dc=org" bindauth="mysecretpass" searchscope="subtree">
982 # The server parameter indicates the LDAP server to connect to. The   #
983 # ldap:// style scheme before the hostname proper is MANDATORY.       #
984 #                                                                     #
985 # The binddn and bindauth indicate the DN to bind to for searching,   #
986 # and the password for the distinguished name. Some LDAP servers will #
987 # allow anonymous searching in which case these two values do not     #
988 # need defining, otherwise they should be set similar to the examples #
989 # above.                                                              #
990 #                                                                     #
991 # The searchscope value indicates the subtree to search under. On our #
992 # test system this is 'subtree'. Your mileage may vary.               #
993
994 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
995 # LDAP authentication module: Adds the ability to authenticate users  #
996 # via LDAP.                                                           #
997 #<module name="m_ldapauth.so">
998 #                                                                     #
999 # Configuration:                                                      #
1000 #                                                                     #
1001 # <ldapauth dbid="ldapdb"                                             #
1002 #           baserdn="ou=People,dc=brainbox,dc=cc"                     #
1003 #           attribute="uid"                                           #
1004 #           allowpattern="Guest* Bot*"                                #
1005 #           killreason="Access denied"                                #
1006 #           verbose="yes"                                             #
1007 #           host="$uid.$ou.inspircd.org">                             #
1008 #                                                                     #
1009 # <ldapwhitelist cidr="10.42.0.0/16">                                 #
1010 #                                                                     #
1011 # <ldaprequire attribute="attr" value="val">                          #
1012 #                                                                     #
1013 # The baserdn indicates the base DN to search in for users. Usually   #
1014 # this is 'ou=People,dc=yourdomain,dc=yourtld'.                       #
1015 #                                                                     #
1016 # The attribute value indicates the attribute which is used to locate #
1017 # a user account by name. On POSIX systems this is usually 'uid'.     #
1018 #                                                                     #
1019 # The allowpattern value allows you to specify a space separated list #
1020 # of wildcard masks which will always be allowed to connect           #
1021 # regardless of if they have an account, for example guest and bot    #
1022 # users.                                                              #
1023 #                                                                     #
1024 # Killreason indicates the QUIT reason to give to users if they fail  #
1025 # to authenticate.                                                    #
1026 #                                                                     #
1027 # Setting the verbose value causes an oper notice to be sent out for  #
1028 # every failed authentication to the server, with an error string.    #
1029 #                                                                     #
1030 # ldapwhitelist indicates that clients connecting from an IP in the   #
1031 # provided CIDR do not need to authenticate against LDAP. It can be   #
1032 # repeated to whitelist multiple CIDRs.                               #
1033 #                                                                     #
1034 # ldaprequire allows further filtering on the LDAP user, by requiring #
1035 # certain LDAP attibutes to have a given value. It can be repeated,   #
1036 # in which case the list will act as an OR list, that is, the         #
1037 # authentication will succeed if any of the requirements in the list  #
1038 # is satisfied.                                                       #
1039 #                                                                     #
1040 # host allows you to change the displayed host of users connecting    #
1041 # from ldap. The string supplied takes formatters which are replaced  #
1042 # from the DN. For instance, if your DN looks like:                   #
1043 # uid=w00t,ou=people,dc=inspircd,dc=org, then the formatters uid, ou  #
1044 # and dc will be available to you. If a key is given multiple times   #
1045 # in the DN, the last appearance will take precedence.                #
1046
1047 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1048 # LDAP oper configuration module: Adds the ability to authenticate    #
1049 # opers via LDAP.                                                     #
1050 #<module name="m_ldapoper.so">
1051 #                                                                     #
1052 # Configuration:                                                      #
1053 #                                                                     #
1054 # <ldapoper dbid="ldapdb"
1055 #           baserdn="ou=People,dc=brainbox,dc=cc"
1056 #           attribute="uid">
1057 #                                                                     #
1058 # Available configuration items are identical to the same items in    #
1059 # m_ldapauth above (except for the verbose setting, that is only      #
1060 # supported in m_ldapauth).                                           #
1061 # Please always specify a password in your <oper> tags even if the    #
1062 # opers are to be authenticated via LDAP, so in case this module is   #
1063 # not loaded the oper accounts are still protected by a password.     #
1064
1065 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1066 # Lock server module: Adds /LOCKSERV and /UNLOCKSERV commands that    #
1067 # are used to temporarily close/open the server for new connections.  #
1068 # These commands require that the /LOCKSERV and /UNLOCKSERV commands  #
1069 # are specified in a <class> tag that the oper is part of. This is so #
1070 # you can control who has access to this possible dangerous command.  #
1071 # If your server is locked and you get disconnected, do a REHASH from #
1072 # shell to open up again.                                             #
1073 # This module is oper-only.
1074 #<module name="m_lockserv.so">
1075
1076 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1077 # Map hiding module: replaces /MAP and /LINKS output to users with a  #
1078 # message to see a website, set by maphide="http://link.to/site" in   #
1079 # the <security> tag, instead.                                        #
1080 #<module name="m_maphide.so">
1081
1082 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1083 # Message flood module: Adds message/notice flood protection via
1084 # channel mode +f.
1085 #<module name="m_messageflood.so">
1086
1087 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1088 # MLOCK module: Adds support for server-side enforcement of services
1089 # side MLOCKs. Basically, this module suppresses any mode change that
1090 # would likely be immediately bounced by services.
1091 #<module name="m_mlock.so">
1092
1093 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1094 # Modenotice module: Adds the /MODENOTICE command that allows opers to
1095 # send notices to all users having the given user mode(s) set.
1096 #<module name="m_modenotice.so">
1097
1098 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1099 # MsSQL module: Allows other SQL modules to access MS SQL Server
1100 # through a unified API.
1101 # This module is in extras. Re-run configure with:
1102 # ./configure --enable-extras=m_mssql.cpp
1103 # and run make install, then uncomment this module to enable it.
1104 #<module name="m_mssql.so">
1105 #
1106 #-#-#-#-#-#-#-#-#-#-#-#- SQL CONFIGURATION   -#-#-#-#-#-#-#-#-#-#-#-#-#
1107 #                                                                     #
1108 # m_mssql.so is more complex than described here, see wiki for more   #
1109 # info http://wiki.inspircd.org/Modules/mssql                         #
1110 #
1111 #<database module="mssql" name="db" user="user" pass="pass" host="localhost" id="db1">
1112
1113 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1114 # MySQL module: Allows other SQL modules to access MySQL databases
1115 # through a unified API.
1116 # This module is in extras. Re-run configure with:
1117 # ./configure --enable-extras=m_mysql.cpp
1118 # and run make install, then uncomment this module to enable it.
1119 #<module name="m_mysql.so">
1120 #
1121 #-#-#-#-#-#-#-#-#-#-#-#- SQL CONFIGURATION   -#-#-#-#-#-#-#-#-#-#-#-#-#
1122 #                                                                     #
1123 # m_mysql.so is more complex than described here, see the wiki for    #
1124 # more: http://wiki.inspircd.org/Modules/mysql                        #
1125 #
1126 #<database module="mysql" name="mydb" user="myuser" pass="mypass" host="localhost" id="my_database2">
1127
1128 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1129 # Named modes module: Allows for the display and set/unset of channel
1130 # modes via long-form mode names via +Z and the /PROP command.
1131 # For example, to set a ban, do /mode #channel +Z ban=foo!bar@baz or
1132 # /PROP #channel ban=foo!bar@baz
1133 #<module name="m_namedmodes.so">
1134
1135 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1136 # NAMESX module: Provides support for the NAMESX extension which allows
1137 # clients to see all the prefixes set on a user without getting confused.
1138 # This is supported by mIRC, x-chat, klient, and maybe more.
1139 #<module name="m_namesx.so">
1140
1141 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1142 # National characters module:
1143 # 1) Allows using national characters in nicknames.
1144 # 2) Allows using custom (national) casemapping over the network.
1145 #<module name="m_nationalchars.so">
1146 #
1147 # file - filename of existing file in "locales" directory
1148 # casemapping - custom value for 005 numeric (if you want it to be
1149 #               different from the filename).
1150 #<nationalchars file="bynets/russian-w1251-charlink" casemapping="ru_RU.cp1251-charlink">
1151
1152 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1153 # Nickchange flood protection module: Provides channel mode +F X:Y
1154 # which allows up to X nick changes in Y seconds.
1155 #<module name="m_nickflood.so">
1156
1157 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1158 # Nicklock module: Let opers change a user's nick and then stop that
1159 # user from changing their nick again until unlocked.
1160 # This module is oper-only.
1161 # To use, NICKLOCK and NICKUNLOCK must be in one of your oper class blocks.
1162 #<module name="m_nicklock.so">
1163
1164 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1165 # No CTCP module: Adds the channel mode +C to block CTCPs and extban
1166 # 'C' to block CTCPs sent by specific users.
1167 #<module name="m_noctcp.so">
1168
1169 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1170 # No kicks module: Adds the +Q channel mode and the Q: extban to deny
1171 # certain users from kicking.
1172 #<module name="m_nokicks.so">
1173
1174 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1175 # No nicks module: Adds the +N channel mode, as well as the 'N' extban.
1176 # +N stops all users from changing their nick, the N extban stops
1177 # anyone from matching a +b N:nick!user@host mask from changing their
1178 # nick.
1179 #<module name="m_nonicks.so">
1180
1181 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1182 # No part message module: Adds extban 'p' to block part messages from #
1183 # matching users.                                                     #
1184 #<module name="m_nopartmsg.so">
1185
1186 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1187 # No notice module: Adds the channel mode +T and the extban 'T' to
1188 # block specific users from noticing the channel.
1189 #<module name="m_nonotice.so">
1190
1191 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1192 # Network business join module:
1193 # Allows an oper to join a channel using /OJOIN, giving them +Y on the
1194 # channel which makes them immune to kick/deop/etc.
1195 #<module name="m_ojoin.so">
1196 #
1197 # Specify the prefix that +Y will grant here.
1198 # Leave 'prefix' empty if you do not wish +Y to grant a prefix.
1199 # If 'notice' is set to on, upon /OJOIN, the server will notice the
1200 # channel saying that the oper is joining on network business.
1201 # If 'op' is set to on, it will give them +o along with +Y.
1202 #<ojoin prefix="!" notice="yes" op="yes">
1203
1204 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1205 # Oper channels mode: Adds the +O channel mode and extban O:<mask>
1206 # to ban, except, etc. specific oper types. For example
1207 # /mode #channel +iI O:* is equivalent to channel mode +O, but you
1208 # may also set +iI O:AdminTypeOnly to only allow admins.
1209 # Modes +I and +e work in a similar fashion.
1210 #<module name="m_operchans.so">
1211
1212 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1213 # Oper join module: Auto-joins opers to a channel upon oper-up.
1214 # This module is oper-only. For the user equivalent, see m_conn_join.
1215 #<module name="m_operjoin.so">
1216 #
1217 #-#-#-#-#-#-#-#-#-#-#   OPERJOIN CONFIGURATION   -#-#-#-#-#-#-#-#-#-#-#
1218 #                                                                     #
1219 # If you are using the m_operjoin.so module, specify options here:    #
1220 #                                                                     #
1221 # channel     -      The channel name to join, can also be a comma    #
1222 #                    separated list e.g. "#channel1,#channel2".       #
1223 #                                                                     #
1224 # override    -      If on, lets the oper join walking thru any modes #
1225 #                    that might be set, even bans.                    #
1226 #                                                                     #
1227 #<operjoin channel="#channel" override="no">
1228 #
1229 # Alternatively you can use the autojoin="channellist" in a <type>    #
1230 # tag to set specific autojoins for a type of oper, for example:      #
1231 #
1232 #<type name="Helper" autojoin="#help" classes="...">
1233
1234 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1235 # Oper log module: Logs all oper commands to the server log (with log
1236 # type "m_operlog" at default loglevel), and optionally to the 'r'
1237 # snomask.
1238 # This module is oper-only.
1239 #<module name="m_operlog.so">
1240 #
1241 # If the following option is on then all oper commands will be sent to
1242 # the snomask 'r'. The default is off.
1243 #<operlog tosnomask="off">
1244
1245 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1246 # Oper prefixing module: Adds a channel prefix mode +y which is given
1247 # to all IRC operators automatically on all channels they are in.
1248 # This prefix mode is more powerful than channel op and other regular
1249 # prefix modes.
1250 #
1251 # Load this module if you want all your IRC operators to have channel
1252 # operator powers.
1253 #<module name="m_operprefix.so">
1254 #
1255 # You may additionally customise the prefix character.
1256 #<operprefix prefix="!">
1257
1258 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1259 # Oper MOTD module: Provides support for separate message of the day
1260 # on oper-up.
1261 # This module is oper-only.
1262 #<module name="m_opermotd.so">
1263 #
1264 #-#-#-#-#-#-#-#-#-#-#   OPERMOTD CONFIGURATION   -#-#-#-#-#-#-#-#-#-#-#
1265 #                                                                     #
1266 # If you are using the m_opermotd.so module, specify the motd here.   #
1267 #                                                                     #
1268 # onoper        - If on, the message is sent on /OPER, otherwise it's #
1269 #                 only sent when /OPERMOTD is used.                   #
1270 #                                                                     #
1271 # processcolors - Allow color codes to be processed in the opermotd.  #
1272 #                 Read the comment above <connect:allowmotdcolors> in #
1273 #                 inspircd.conf.example for details.                  #
1274 #                                                                     #
1275 #<opermotd file="examples/opermotd.txt.example" onoper="yes" processcolors="false">
1276
1277 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1278 # Override module: Adds support for oper override.
1279 # This module is oper-only.
1280 #<module name="m_override.so">
1281 #
1282 #-#-#-#-#-#-#-#-#-#-#   OVERRIDE CONFIGURATION   -#-#-#-#-#-#-#-#-#-#-#
1283 #                                                                     #
1284 # m_override.so is too complex it describe here, see the wiki:        #
1285 # http://wiki.inspircd.org/Modules/override                           #
1286
1287 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1288 # Oper levels module: Gives each oper a level and prevents actions
1289 # being taken by lower level opers against higher level opers.
1290 # Specify the level as the 'level' parameter of the <type> tag.
1291 # This module is oper-only.
1292 #<module name="m_operlevels.so">
1293
1294 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1295 # Oper modes module: Allows you to specify modes to add/remove on oper.
1296 # Specify the modes as the 'modes' parameter of the <type> tag
1297 # and/or as the 'modes' parameter of the <oper> tag.
1298 # This module is oper-only. For the user equivalent, see m_conn_umodes.
1299 #<module name="m_opermodes.so">
1300
1301 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1302 # Password forwarding module: Forwards a password users can send on
1303 # connect to the specified client below. The client is usually NickServ
1304 # and this module is usually used to authenticate users with NickServ
1305 # using their connect password.
1306 #<module name="m_passforward.so">
1307
1308 <passforward
1309                 # nick: nick to forward connect passwords to.
1310                 nick="NickServ"
1311
1312                 # forwardmsg: Message to send to users using a connect password.
1313                 # $nick will be the users' nick, $nickrequired will be the nick
1314                 # of where the password is going (the nick above).
1315                 # You can also use $user for the user ident string.
1316                 forwardmsg="NOTICE $nick :*** Forwarding PASS to $nickrequired"
1317
1318                 # cmd: Command for the user to run when it receives a connect
1319                 # password.
1320                 cmd="PRIVMSG $nickrequired :IDENTIFY $pass">
1321
1322 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1323 # Password hash module: Allows hashed passwords to be used.
1324 # To be useful, a hashing module like m_sha256.so also needs to be loaded.
1325 #<module name="m_password_hash.so">
1326 #
1327 #-#-#-#-#-#-#-#-#-# PASSWORD HASH CONFIGURATION #-#-#-#-#-#-#-#-#-#-#-#
1328 #
1329 # To use this module, you must define a hash type for each oper's
1330 # password you want to hash. For example:
1331 #
1332 #     <oper name="Brain"
1333 #           host="ident@dialup15.isp.com"
1334 #           hash="sha256"
1335 #           password="01ba4719c80b6fe911b091a7c05124b64eeece964e09c058ef8f9805daca546b"
1336 #           type="NetAdmin">
1337 #
1338 # Starting from 2.0, you can use a more secure salted hash that prevents simply
1339 # looking up the hash's value in a rainbow table built for the hash.
1340 #    hash="hmac-sha256" password="lkS1Nbtp$CyLd/WPQXizsbxFUTqFRoMvaC+zhOULEeZaQkUJj+Gg"
1341 #
1342 # Generate hashes using the /MKPASSWD command on the server.
1343 # Don't run it on a server you don't trust with your password.
1344
1345 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1346 # Permanent channels module: Channels with the permanent channel mode
1347 # will remain open even after everyone else has left the channel, and
1348 # therefore keep things like modes, ban lists and topic. Permanent
1349 # channels -may- need support from your Services package to function
1350 # properly with them. This adds channel mode +P.
1351 # This module is oper-only.
1352 #<module name="m_permchannels.so">
1353 #
1354 # If you like, m_permchannels can write a config file of permanent channels
1355 # whenever +P is set, unset, or the topic/modes on a +P channel is changed.
1356 # If you want to do this, set the filename below, and uncomment the include.
1357 #
1358 # If 'listmodes' is true then all list modes (+b, +I, +e, +g...) will be
1359 # saved. Defaults to false.
1360 #<permchanneldb filename="permchannels.conf" listmodes="true">
1361 #<include file="permchannels.conf">
1362 #
1363 # You may also create channels on startup by using the <permchannels> block.
1364 # Don't forget to set them +P in the modes, or they won't stay permanent.
1365 #<permchannels channel="#opers" modes="isP" topic="Opers only.">
1366
1367 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1368 # PostgreSQL module: Allows other SQL modules to access PgSQL databases
1369 # through a unified API.
1370 # This module is in extras. Re-run configure with:
1371 # ./configure --enable-extras=m_pgsql.cpp
1372 # and run make install, then uncomment this module to enable it.
1373 #<module name="m_pgsql.so">
1374 #
1375 #-#-#-#-#-#-#-#-#-#-#-#- SQL CONFIGURATION   -#-#-#-#-#-#-#-#-#-#-#-#-#
1376 #                                                                     #
1377 # m_pgsql.so is more complex than described here, see the wiki for    #
1378 # more: http://wiki.inspircd.org/Modules/pgsql                        #
1379 #
1380 #<database module="pgsql" name="mydb" user="myuser" pass="mypass" host="localhost" id="my_database" ssl="no">
1381
1382 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1383 # Muteban: Implements extended ban 'm', which stops anyone matching
1384 # a mask like +b m:nick!user@host from speaking on channel.
1385 #<module name="m_muteban.so">
1386
1387 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1388 # Random quote module: Provides a random quote on connect.
1389 # NOTE: Some of these may mimic fatal errors and confuse users and
1390 # opers alike - BEWARE!
1391 #<module name="m_randquote.so">
1392 #
1393 #-#-#-#-#-#-#-#-#-#-  RANDOMQUOTES CONFIGURATION -#-#-#-#-#-#-#-#-#-#-#
1394 #                                                                     #
1395 # Optional - If you specify to use the m_randquote.so module, then    #
1396 # specify below the path to the quotes file.                          #
1397 #                                                                     #
1398 #<randquote file="quotes.txt">
1399
1400 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1401 # Redirect module: Adds channel redirection mode +L.                  #
1402 # Optional: <redirect:antiredirect> to add usermode +L to stop forced #
1403 # redirection and instead print an error.                             #
1404 #                                                                     #
1405 # Note: You can not update this with a simple rehash, it requires     #
1406 # reloading the module for it to take effect.                         #
1407 # This also breaks linking to servers that do not have the option.    #
1408 # This defaults to false for the 2.0 version, it will be enabled in   #
1409 # all the future versions.                                            #
1410 #<module name="m_redirect.so">
1411 #<redirect antiredirect="true">
1412
1413 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1414 # Regular expression provider for glob or wildcard (?/*) matching.
1415 # You must have at least 1 provider loaded to use m_filter or m_rline
1416 # modules. This module has no additional requirements, as it uses the
1417 # matching already present in InspIRCd core.
1418 #<module name="m_regex_glob.so">
1419
1420 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1421 # Regular expression provider for PCRE (Perl-Compatible Regular
1422 # Expressions). You need libpcre installed to compile and load this
1423 # module. You must have at least 1 provider loaded to use m_filter or
1424 # m_rline.
1425 #<module name="m_regex_pcre.so">
1426
1427 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1428 # Regular Expression Provider for RE2 Regular Expressions.
1429 # You need libre2 installed and in your include/library paths in order
1430 # to compile and load this module.
1431 #<module name="m_regex_re2.so">
1432
1433 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1434 # Regular expression provider for POSIX regular expressions.
1435 # You shouldn't need any additional libraries on a POSIX-compatible
1436 # system (i.e.: any Linux, BSD, but not Windows). You must have at
1437 # least 1 provider loaded to use m_filter or m_rline.
1438 # On POSIX-compliant systems, regex syntax can be found by using the
1439 # command: 'man 7 regex'.
1440 #<module name="m_regex_posix.so">
1441
1442 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1443 # Regular expression provider for C++11 std::regex regular expressions.
1444 # This module works on any fully compliant implementation of the C++11
1445 # std::regex container. Examples for such are Visual C++ 2010 and newer
1446 # but not libstdc++ (which GCC uses).
1447 # You should verify that std::regex is supported by your setup before
1448 # using this module, as it may compile normally but won't do anything
1449 # on some implementations.
1450 #<module name="m_regex_stdlib.so">
1451 #
1452 # Specify the regular expression engine to use here. Valid settings are
1453 # bre, ere, awk, grep, egrep, ecmascript (default if not specified).
1454 #<stdregex type="ecmascript">
1455
1456 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1457 # Regular expression provider for TRE regular expressions.
1458 # This is the same regular expression engine used by UnrealIRCd, so
1459 # if you are most familiar with the syntax of /SPAMFILTER from there,
1460 # this is the provider you want. You need libtre installed in order
1461 # to compile and load this module.
1462 #<module name="m_regex_tre.so">
1463
1464 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1465 # Registered users only channel creation module. If enabled, only
1466 # registered users and opers can create new channels.
1467 #
1468 # You probably *DO NOT* want to load this module on a public network.
1469 #
1470 #<module name="m_regonlycreate.so">
1471
1472 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1473 # Remove module: Adds the /REMOVE command which is a peaceful
1474 # alternative to /KICK.
1475 #<module name="m_remove.so">
1476 #
1477 # supportnokicks: If true, /REMOVE is not allowed on channels where the
1478 # nokicks (+Q) mode is set. Defaults to false.
1479 # protectedrank: Members having this rank or above may not be /REMOVE'd
1480 # by anyone. Set to 0 to disable this feature. Defaults to 50000.
1481 #<remove supportnokicks="true" protectedrank="50000">
1482
1483 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1484 # A module to block, kick or ban upon similiar messages being uttered several times.
1485 # Syntax [~*][lines]:[sec]{[:difference]}{[:matchlines]}
1486 # ~ is to block, * is to ban, default is kick.
1487 # lines - In mode 1 the amount of lines that has to match consecutively - In mode 2 the size of the backlog to keep for matching
1488 # seconds - How old the message has to be before it's invalidated.
1489 # distance - Edit distance, in percent, between two strings to trigger on.
1490 # matchlines - When set, the function goes into mode 2. In this mode the function will trigger if this many of the last <lines> matches.
1491 #
1492 # As this module can be rather CPU-intensive, it comes with some options.
1493 # maxbacklog - Maximum size that can be specified for backlog. 0 disables multiline matching.
1494 # maxdistance - Max percentage of difference between two lines we'll allow to match. Set to 0 to disable edit-distance matching.
1495 # maxlines - Max lines of backlog to match against.
1496 # maxsecs - Maximum value of seconds a user can set. 0 to allow any.
1497 # size - Maximum number of characters to check for, can be used to truncate messages
1498 # before they are checked, resulting in less CPU usage. Increasing this beyond 512
1499 # doesn't have any effect, as the maximum length of a message on IRC cannot exceed that.
1500 #<repeat maxbacklog="20" maxlines="20" maxdistance="50" maxsecs="0" size="512">
1501 #<module name="m_repeat.so">
1502
1503 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1504 # Restricted channels module: Allows only opers to create channels.
1505 #
1506 # You probably *DO NOT* want to load this module on a public network.
1507 #
1508 #<module name="m_restrictchans.so">
1509
1510 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1511 # Restrict message module: Allows users to only message opers.
1512 #
1513 # You probably *DO NOT* want to load this module on a public network.
1514 #
1515 #<module name="m_restrictmsg.so">
1516
1517 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1518 # R-Line module: Ban users through regular expression patterns.
1519 #<module name="m_rline.so">
1520 #
1521 #-#-#-#-#-#-#-#-#-#-#-#- RLINE CONFIGURATION -#-#-#-#-#-#-#-#-#-#-#-#-#
1522 #
1523 # If you wish to re-check a user when they change nickname (can be
1524 # useful under some situations, but *can* also use CPU with more users
1525 # on a server) then set 'matchonnickchange' to yes.
1526 # Also, this is where you set what Regular Expression engine is to be
1527 # used. If you ever change it while running, all of your R-Lines will
1528 # be wiped. This is the regex engine used by all R-Lines set, and
1529 # m_regex_<engine>.so must be loaded, or rline will be non-functional
1530 # until you load it or change the engine to one that is loaded.
1531 #
1532 #<rline matchonnickchange="yes" engine="pcre">
1533 #
1534 # Generally, you will NOT want to use 'glob' here, as this turns
1535 # rline into just another gline. The exceptions are that rline will
1536 # always use the full "nick!user@host realname" string, rather than only
1537 # user@host, but beware that only the ? and * wildcards are available,
1538 # and are the only way to specify where the space can occur if you do
1539 # use glob. For this reason, is recommended to use a real regex engine
1540 # so that at least \s or [[:space:]] is available.
1541
1542 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1543 # RMODE module: Adds the /RMODE command
1544 # Allows channel mods to remove list modes en masse.
1545 # Syntax: /rmode <channel> <mode> [pattern]
1546 # E.g. '/rmode #Channel b m:*' will remove all mute-extbans on the channel.
1547 #<module name="m_rmode.so">
1548
1549 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1550 # SAJOIN module: Adds the /SAJOIN command which forcibly joins a user
1551 # to the given channel.
1552 # This module is oper-only.
1553 # To use, SAJOIN must be in one of your oper class blocks.
1554 # Opers need the users/sajoin-others priv to be able to /SAJOIN users
1555 # other than themselves.
1556 #<module name="m_sajoin.so">
1557
1558 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1559 # SAKICK module: Adds the /SAKICK command which kicks a user from the
1560 # given channel.
1561 # This module is oper-only.
1562 # To use, SAKICK must be in one of your oper class blocks.
1563 #<module name="m_sakick.so">
1564
1565 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1566 # SAMODE module: Adds the /SAMODE command which allows server operators
1567 # to change modes on a channel without requiring them to have any
1568 # channel priviliges. Also allows changing user modes for any user.
1569 # This module is oper-only.
1570 # To use, SAMODE must be in one of your oper class blocks.
1571 #<module name="m_samode.so">
1572
1573 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1574 # SANICK module: Adds the /SANICK command which allows opers to change
1575 # users' nicks.
1576 # This module is oper-only.
1577 # To use, SANICK must be in one of your oper class blocks.
1578 #<module name="m_sanick.so">
1579
1580 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1581 # SAPART module: Adds the /SAPART command which forcibly parts a user
1582 # from a channel.
1583 # This module is oper-only.
1584 # To use, SAPART must be in one of your oper class blocks.
1585 #<module name="m_sapart.so">
1586
1587 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1588 # SAQUIT module: Adds the /SAQUIT command which forcibly quits a user.
1589 # This module is oper-only.
1590 # To use, SAQUIT must be in one of your oper class blocks.
1591 #<module name="m_saquit.so">
1592
1593 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1594 # SATOPIC module: Adds the /SATOPIC command which allows changing the
1595 # topic on a channel without requiring any channel priviliges.
1596 # This module is oper-only.
1597 # To use, SATOPIC must be in one of your oper class blocks.
1598 #<module name="m_satopic.so">
1599
1600 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1601 # SASL authentication module: Provides support for IRC Authentication
1602 # Layer via AUTHENTICATE. Note: You also need to have m_cap.so loaded
1603 # for SASL to work.
1604 #<module name="m_sasl.so">
1605
1606 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1607 # Secure list module: Prevent /LIST in the first minute of connection,
1608 # crippling most spambots and trojan spreader bots.
1609 #<module name="m_securelist.so">
1610 #
1611 #-#-#-#-#-#-#-#-#-# SECURELIST CONFIGURATION -#-#-#-#-#-#-#-#-#-#-#-#-#
1612 #                                                                     #
1613 # Securelist can be harmful to some IRC search engines such as        #
1614 # netsplit.de and searchirc.com. To prevent securelist blocking these #
1615 # sites from listing, define exception tags as shown below:           #
1616 #<securehost exception="*@*.searchirc.org">
1617 #<securehost exception="*@*.netsplit.de">
1618 #<securehost exception="*@echo940.server4you.de">
1619 #<securehost exception="*@*.ircdriven.com">
1620 #                                                                     #
1621 # Define the following variable to change how long a user must wait   #
1622 # before issuing a LIST. If not defined, defaults to 60 seconds.      #
1623 #                                                                     #
1624 #<securelist waittime="60">                                           #
1625
1626 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1627 # Servprotect module: Provides support for Austhex style +k /
1628 # UnrealIRCD +S services mode.
1629 #<module name="m_servprotect.so">
1630
1631 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1632 # See nicks module: Adds snomask +n and +N which show local and remote
1633 # nick changes.
1634 # This module is oper-only.
1635 #<module name="m_seenicks.so">
1636
1637 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1638 # Set idle module: Adds a command for opers to change their idle time.
1639 # This module is oper-only.
1640 # To use, SETIDLE must be in one of your oper class blocks.
1641 #<module name="m_setidle.so">
1642
1643 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1644 # Services support module: Adds several usermodes such as +R and +M.
1645 # This module implements the 'identified' state via account names,
1646 # and is similar in operation to the way asuka and ircu handle services.
1647 #
1648 # At the same time, this offers +r for users and channels to mark them
1649 # as identified separately from the idea of a master account, which
1650 # can be useful for services which are heavily nick-as-account centric.
1651 #
1652 # Also of note is that this module implements three extbans:
1653 # +b R: (stop matching account names from joining)
1654 # +b M: (stop matching account names from speaking)
1655 # +b U:n!u@h (blocks matching unregistered users)
1656 #
1657 #<module name="m_services_account.so">
1658
1659 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1660 # Sethost module: Adds the /SETHOST command.
1661 # This module is oper-only.
1662 # To use, SETHOST must be in one of your oper class blocks.
1663 # See m_chghost for how to customise valid chars for hostnames.
1664 #<module name="m_sethost.so">
1665
1666 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1667 # Setident module: Adds the /SETIDENT command.
1668 # This module is oper-only.
1669 # To use, SETIDENT must be in one of your oper class blocks.
1670 #<module name="m_setident.so">
1671
1672 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1673 # SETNAME module: Adds the /SETNAME command.
1674 #<module name="m_setname.so">
1675
1676 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1677 # Serverban: Implements extended ban 's', which stops anyone connected
1678 # to a server matching a mask like +b s:server.mask.here from joining.
1679 #<module name="m_serverban.so">
1680
1681 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1682 # Showfile: Provides support for showing a text file to users when    #
1683 # they enter a command.                                               #
1684 # This module adds one command for each <showfile> tag that shows the #
1685 # given file to the user as a series of messages or numerics.         #
1686 #<module name="m_showfile.so">                                        #
1687 #                                                                     #
1688 #-#-#-#-#-#-#-#-#-#-# SHOWFILE CONFIGURATION -#-#-#-#-#-#-#-#-#-#-#-#-#
1689 #                                                                     #
1690 # name    - The name of the command which displays this file. This is #
1691 #           the only mandatory setting, all others are optional.      #
1692 # file    - The text file to be shown to the user.                    #
1693 #           By default same as the command name.                      #
1694 # method  - How should the file be shown?                             #
1695 #           * numeric: Send contents using a numeric                  #
1696 #             (similiar to /MOTD; the default).                       #
1697 #           * notice:  Send contents as a series of notices.          #
1698 #           * msg:     Send contents as a series of private messages. #
1699 # colors  - If true, color codes (\c, \b, \u, etc.) will be processed #
1700 #           and sent as ANSI colors. If false (default) the file will #
1701 #           be displayed as-is.                                       #
1702 #                                                                     #
1703 # When using the method "numeric", the following extra settings are   #
1704 # available:                                                          #
1705 #                                                                     #
1706 # introtext    - Introductory line, "Showing <name>" by default.      #
1707 # intronumeric - Numeric used for the introductory line.              #
1708 # numeric      - Numeric used for sending the text itself.            #
1709 # endtext      - Ending line, "End of <name>" by default.             #
1710 # endnumeric   - Numeric used for the ending line.                    #
1711 #                                                                     #
1712 #<showfile name="RULES"
1713 #          file="rules.txt"
1714 #          colors="true"
1715 #          introtext="Server rules:"
1716 #          endtext="End of server rules.">
1717
1718 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1719 # Show whois module: Adds the +W usermode which allows opers to see
1720 # when they are /WHOIS'd.
1721 # This module is oper-only by default.
1722 #<module name="m_showwhois.so">
1723 #
1724 # If you wish, you may also let users set this mode. Only opers with the
1725 # users/auspex priv will see real hosts of people, though.
1726 #<showwhois opersonly="yes"
1727 #
1728 # You may also set whether or not users should receive whois notices,
1729 # should they be /WHOIS'd by an oper.
1730 #showfromopers="yes">
1731
1732 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1733 # Shun module: Provides the /SHUN command, which stops a user from
1734 # executing all except configured commands.
1735 # This module is oper-only.
1736 # To use, SHUN must be in one of your oper class blocks.
1737 #<module name="m_shun.so">
1738 #
1739 # You may also configure which commands you wish a user to be able to
1740 # perform when shunned. It should be noted that if a shunned user
1741 # issues QUIT or PART then their message will be removed, as if they
1742 # did not issue one.
1743 #
1744 # You can optionally let the user know that their command was blocked.
1745 #
1746 # You may also let SHUN affect opers (defaults to no).
1747 #<shun enabledcommands="PING PONG QUIT PART JOIN" notifyuser="yes" affectopers="no">
1748
1749 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1750 # SSL channel mode module: Adds support for SSL-only channels via
1751 # channel mode +z and the 'z' extban which matches SSL client
1752 # certificate fingerprints.
1753 # Does not do anything useful without a working SSL module (see below).
1754 #<module name="m_sslmodes.so">
1755
1756 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1757 # GnuTLS SSL module: Adds support for SSL connections using GnuTLS,
1758 # if enabled. You must answer 'yes' in ./configure when asked or
1759 # manually symlink the source for this module from the directory
1760 # src/modules/extra, if you want to enable this, or it will not load.
1761 #<module name="m_ssl_gnutls.so">
1762 #
1763 #-#-#-#-#-#-#-#-#-#-#-  GNUTLS CONFIGURATION   -#-#-#-#-#-#-#-#-#-#-#-#
1764 #                                                                     #
1765 # m_ssl_gnutls.so is too complex to describe here, see the wiki:      #
1766 # http://wiki.inspircd.org/Modules/ssl_gnutls                         #
1767
1768 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1769 # SSL info module: Allows users to retrieve information about other
1770 # users' peer SSL certificates and keys. This can be used by client
1771 # scripts to validate users. For this to work, one of m_ssl_gnutls.so
1772 # or m_ssl_openssl.so must be loaded. This module also adds the
1773 # "* <user> is using a secure connection" whois line, the ability for
1774 # opers to use SSL cert fingerprints to verify their identity and the
1775 # ability to force opers to use SSL connections in order to oper up.
1776 # It is highly recommended to load this module if you use SSL on your
1777 # network.
1778 # For how to use the oper features, please see the first example <oper> tag
1779 # in opers.conf.example.
1780 #
1781 #<module name="m_sslinfo.so">
1782
1783 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1784 # OpenSSL SSL module: Adds support for SSL connections using OpenSSL,
1785 # if enabled. You must answer 'yes' in ./configure when asked or symlink
1786 # the source for this module from the directory src/modules/extra, if
1787 # you want to enable this, or it will not load.
1788 #<module name="m_ssl_openssl.so">
1789 #
1790 #-#-#-#-#-#-#-#-#-#-#- OPENSSL CONFIGURATION   -#-#-#-#-#-#-#-#-#-#-#-#
1791 #                                                                     #
1792 # m_ssl_openssl.so is too complex to describe here, see the wiki:     #
1793 # http://wiki.inspircd.org/Modules/ssl_openssl                        #
1794
1795 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1796 # Strip color module: Adds channel mode +S that strips mIRC color
1797 # codes from all messages sent to the channel.
1798 #<module name="m_stripcolor.so">
1799
1800 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1801 # Silence module: Adds support for the /SILENCE command, which allows
1802 # users to have a server-side ignore list for their client.
1803 #<module name="m_silence.so">
1804 #
1805 # Set the maximum number of entries allowed on a user's silence list.
1806 #<silence maxentries="32">
1807
1808 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1809 # SQLite3 module: Allows other SQL modules to access SQLite3          #
1810 # databases through a unified API.                                    #
1811 # This module is in extras. Re-run configure with:                    #
1812 # ./configure --enable-extras=m_sqlite.cpp
1813 # and run make install, then uncomment this module to enable it.      #
1814 #
1815 #<module name="m_sqlite3.so">
1816 #
1817 #-#-#-#-#-#-#-#-#-#-#-#- SQL CONFIGURATION   -#-#-#-#-#-#-#-#-#-#-#-#-#
1818 #                                                                     #
1819 # m_sqlite.so is more complex than described here, see the wiki for   #
1820 # more: http://wiki.inspircd.org/Modules/sqlite3                      #
1821 #
1822 #<database module="sqlite" hostname="/full/path/to/database.db" id="anytext">
1823
1824 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1825 # SQL authentication module: Allows IRCd connections to be tied into
1826 # a database table (for example a forum).
1827 # This module is in extras. Re-run configure with:
1828 # ./configure --enable-extras=m_sqlauth.cpp
1829 # and run make install, then uncomment this module to enable it.
1830 #
1831 #<module name="m_sqlauth.so">
1832 #
1833 #-#-#-#-#-#-#-#-#-#-#- SQLAUTH CONFIGURATION   -#-#-#-#-#-#-#-#-#-#-#-#
1834 #                                                                     #
1835 # m_sqlauth.so is too complex to describe here, see the wiki:         #
1836 # http://wiki.inspircd.org/Modules/sqlauth                            #
1837
1838 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1839 # SQL oper module: Allows you to store oper credentials in an SQL table
1840 # This module is in extras. Re-run configure with:
1841 # ./configure --enable-extras=m_sqloper.cpp
1842 # and run make install, then uncomment this module to enable it.
1843 #
1844 #<module name="m_sqloper.so">
1845 #
1846 #-#-#-#-#-#-#-#-#-#-#- SQLOPER CONFIGURATION   -#-#-#-#-#-#-#-#-#-#-#-#
1847 #                                                                     #
1848 # dbid       - Database ID to use (see SQL modules).                  #
1849 # hash       - Hashing provider to use for password hashing.          #
1850 #                                                                     #
1851 # See also: http://wiki.inspircd.org/Modules/sqloper                  #
1852 #                                                                     #
1853 #<sqloper dbid="1" hash="md5">
1854
1855 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1856 # StartTLS module: Implements STARTTLS, which allows clients          #
1857 # connected to non SSL enabled ports to enable SSL, if a proper SSL   #
1858 # module is loaded (either m_ssl_gnutls or m_ssl_openssl).            #
1859 #<module name="m_starttls.so">
1860
1861 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1862 # SVSHold module: Implements SVSHOLD. Like Q:Lines, but can only be   #
1863 # added/removed by Services.                                          #
1864 #<module name="m_svshold.so">
1865 # SVSHOLD does not generate server notices by default, you can turn
1866 # notices on by uncommenting the next line.
1867 #<svshold silent="false">
1868
1869 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1870 # SWHOIS module: Allows you to add arbitrary lines to user WHOIS.
1871 # This module is oper-only.
1872 # To use, SWHOIS must be in one of your oper class blocks.
1873 #<module name="m_swhois.so">
1874
1875 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1876 # Test module: Enable this to create a command useful in testing
1877 # flood control. To avoid accidental use on live networks, the server
1878 # name must contain ".test" to load the module
1879 #<module name="m_testnet.so">
1880
1881 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1882 # Timed bans module: Adds timed channel bans with the /TBAN command.
1883 #<module name="m_timedbans.so">
1884
1885 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1886 # Test line module: Adds the /TLINE command, used to test how many
1887 # users a /GLINE or /ZLINE etc. would match.
1888 # This module is oper-only.
1889 # To use, TLINE must be in one of your oper class blocks.
1890 #<module name="m_tline.so">
1891
1892 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1893 # Topiclock module: implements server-side topic locking to achieve deeper
1894 # integration with services packages.
1895 #<module name="m_topiclock.so">
1896
1897 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1898 # UHNAMES support module: Adds support for the IRCX style UHNAMES
1899 # extension, which displays ident and hostname in the names list for
1900 # each user, saving clients from doing a WHO on the channel.
1901 # If a client does not support UHNAMES it will not enable it, this will
1902 # not break incompatible clients.
1903 #<module name="m_uhnames.so">
1904
1905 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1906 # Uninvite module: Adds the /UNINVITE command which lets users remove
1907 # pending invites from channels without waiting for the user to join.
1908 #<module name="m_uninvite.so">
1909
1910 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1911 # Userip module: Adds the /USERIP command.
1912 # Allows users to query their own IP, also allows opers to query the IP
1913 # of anyone else.
1914 #<module name="m_userip.so">
1915
1916 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1917 # Vhost module: Adds the VHOST command which allows for adding virtual
1918 # hosts which are accessible using a username and password in the config.
1919 #<module name="m_vhost.so">
1920 #
1921 #-#-#-#-#-#-#-#-#-#-#- VHOST CONFIGURATION   -#-#-#-#-#-#-#-#-#-#-#-#-#
1922 #                                                                     #
1923 # user       - Username for the vhost.                                #
1924 #                                                                     #
1925 # pass       - Password for the vhost.                                #
1926 #                                                                     #
1927 # hash       - The hash for the specific user (optional)              #
1928 #              m_password_hash.so and a hashing module must be loaded #
1929 #              for this to work.                                      #
1930 #                                                                     #
1931 # host       - Vhost to set.                                          #
1932 #
1933 #<vhost user="some_username" pass="some_password" host="some.host">
1934 #<vhost user="foo" password="fcde2b2edba56bf408601fb721fe9b5c338d10ee429ea04fae5511b68fbf8fb9" hash="sha256" host="some.other.host">
1935
1936 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1937 # Watch module: Adds the WATCH command, which is used by clients to
1938 # maintain notify lists.
1939 #<module name="m_watch.so">
1940 #
1941 # Set the maximum number of entries on a user's watch list below.
1942 #<watch maxentries="32">
1943
1944 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1945 # XLine database: Stores all *Lines (G/Z/K/R/any added by other modules)
1946 # in a file which is re-loaded on restart. This is useful
1947 # for two reasons: it keeps bans so users may not evade them, and on
1948 # bigger networks, server connections will take less time as there will
1949 # be a lot less bans to apply - as most of them will already be there.
1950 #<module name="m_xline_db.so">
1951
1952 # Specify the filename for the xline database here.
1953 #<xlinedb filename="data/xline.db">
1954
1955 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1956 #    ____                _   _____ _     _       ____  _ _   _        #
1957 #   |  _ \ ___  __ _  __| | |_   _| |__ (_)___  | __ )(_) |_| |       #
1958 #   | |_) / _ \/ _` |/ _` |   | | | '_ \| / __| |  _ \| | __| |       #
1959 #   |  _ <  __/ (_| | (_| |   | | | | | | \__ \ | |_) | | |_|_|       #
1960 #   |_| \_\___|\__,_|\__,_|   |_| |_| |_|_|___/ |____/|_|\__(_)       #
1961 #                                                                     #
1962 # To link servers to InspIRCd, you MUST load the m_spanningtree       #
1963 # module. If you don't do this, server links will NOT work at all.    #
1964 # This is by design, to allow for the implementation of other linking #
1965 # protocols in modules in the future.                                 #
1966
1967 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1968 # Spanning tree module: Allows linking of servers using the spanning
1969 # tree protocol (see the READ THIS BIT section above).
1970 # You will almost always want to load this.
1971 #
1972 #<module name="m_spanningtree.so">