]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - docs/inspircd.conf.example
6c402c7a0b67a9042d133474fc30cee06fe69704
[user/henk/code/inspircd.git] / docs / inspircd.conf.example
1 ########################################################################
2 #                                                                      #
3 #               ___                ___ ____   ____    _                #
4 #              |_ _|_ __  ___ _ __|_ _|  _ \ / ___|__| |               #
5 #               | || '_ \/ __| '_ \| || |_) | |   / _` |               #
6 #               | || | | \__ \ |_) | ||  _ <| |__| (_| |               #
7 #              |___|_| |_|___/ .__/___|_| \_\\____\__,_|               #
8 #                            |_|                                       #
9 #      ____             __ _                       _   _               #
10 #     / ___|___  _ __  / _(_) __ _ _   _ _ __ __ _| |_(_) ___  _ __    #
11 #    | |   / _ \| '_ \| |_| |/ _` | | | | '__/ _` | __| |/ _ \| '_ \   #
12 #    | |__| (_) | | | |  _| | (_| | |_| | | | (_| | |_| | (_) | | | |  #
13 #     \____\___/|_| |_|_| |_|\__, |\__,_|_|  \__,_|\__|_|\___/|_| |_|  #
14 #                            |___/                                     #
15 #                                                                      #
16 ##################################||####################################
17                                  #||#                                   
18 ##################################||####################################
19 #                                                                      #
20 #         This is an example of the config file for InspIRCd.          #
21 #             Change the options to suit your network                  #
22 #                                                                      #
23 #                 Last updated on : 04/09/2006                         #
24 #                 Written by      : CC  (cc@backchat.co.za)            #
25 #                 Updated by      : katsklaw (katsklaw@gmail.com)      #
26 #                 Updated by      : brain (brain@inspircd.org)         #
27 #                                                                      #
28 #    ____                _   _____ _     _       ____  _ _   _         #
29 #   |  _ \ ___  __ _  __| | |_   _| |__ (_)___  | __ )(_) |_| |        #
30 #   | |_) / _ \/ _` |/ _` |   | | | '_ \| / __| |  _ \| | __| |        #
31 #   |  _ <  __/ (_| | (_| |   | | | | | | \__ \ | |_) | | |_|_|        #
32 #   |_| \_\___|\__,_|\__,_|   |_| |_| |_|_|___/ |____/|_|\__(_)        #
33 #                                                                      #
34 #   Lines prefixed with READ THIS BIT, as shown above, are IMPORTANT   #
35 #   lines, and you REALLY SHOULD READ THEM. Yes, THIS MEANS YOU. Even  #
36 #   if you've configured InspIRCd before, these probably indicate      #
37 #   something new or different to this version and you SHOULD READ IT. #
38 #                                                                      #
39 ########################################################################
40 #                                                                      #
41 #         Unalphabeticalise the modules list at your own risk          #
42 #                                                                      #
43 ########################################################################
44
45
46 #-#-#-#-#-#-#-#-#-#-#-#-  SERVER DESCRIPTION  -#-#-#-#-#-#-#-#-#-#-#-#-
47 #                                                                     #
48 #   Here is where you enter the information about your server.        #
49 #                                                                     #
50 #  Syntax is as follows:                                              #
51 #                                                                     #
52 #     <server name="server.name"                                      #
53 #      description="Server Description"                               #
54 #      network="MyNetwork">                                           #
55 #                                                                     #
56
57 <server name="penguin.omega.org.za"
58         description="Waddle World"
59         network="Omega">
60
61
62 #-#-#-#-#-#-#-#-#-#-#-#-   ADMIN INFORMATION   -#-#-#-#-#-#-#-#-#-#-#-#
63 #                                                                     #
64 #   Describes the Server Administrator's real name, nick              #
65 #   and email address.                                                #
66 #                                                                     #
67 #  Syntax is as follows:                                              #
68 #       <admin name="real name"                                       #
69 #              nick="nick name"                                       #
70 #              email="email@address.com">                             #
71 #                                                                     #
72
73 <admin  name="Johnny English"
74         nick="MI5"
75         email="MI5@the.best.secret.agent">
76
77
78 #-#-#-#-#-#-#-#-#-#-#-#-   PORT CONFIGURATION   -#-#-#-#-#-#-#-#-#-#-#-
79 #                                                                     #
80 #   Enter the port and address bindings here.                         #
81 #                                                                     #
82 #  bind address - specifies which address ports bind to. Leaving this #
83 #                 field blank binds the port to all IPs available.    #
84 #                                                                     #
85 #  port         - The port number to bind to                          #
86 #                                                                     #
87 #  type         - can be 'clients' or 'servers'. The clients type is  #
88 #                 a standard tcp based socket, the servers type is a  #
89 #                 also a TCP based connection but of a different      #
90 #                 format. SSL support is provided by modules, to      #
91 #                 enable SSL support, please read the module section  #
92 #                 of this configuration file.                         #
93 #                                                                     #
94 #    ____                _   _____ _     _       ____  _ _   _        #
95 #   |  _ \ ___  __ _  __| | |_   _| |__ (_)___  | __ )(_) |_| |       #
96 #   | |_) / _ \/ _` |/ _` |   | | | '_ \| / __| |  _ \| | __| |       #
97 #   |  _ <  __/ (_| | (_| |   | | | | | | \__ \ | |_) | | |_|_|       #
98 #   |_| \_\___|\__,_|\__,_|   |_| |_| |_|_|___/ |____/|_|\__(_)       #
99 #                                                                     #
100 #  If you want to link servers to InspIRCd you must load the          #
101 #  m_spanningtree module! Please see the modules list below for       #
102 #  information on how to load this module! If you do not load this    #
103 #  module, server ports will NOT be bound!                            #
104 #                                                                     #
105 #  Leaving address empty binds to all available interfaces            #
106 #                                                                     #
107 #  Syntax is as follows:                                              #
108 #                                                                     #
109 # <bind address="ip or host" port="port" type="clients">              #
110 # <bind address="ip or host" port="port" type="servers">              #
111 #                                                                     #
112 # If InspIRCd is built for IPV6, and you wish to accept IPV4 clients, #
113 # then you must specify your IPV6 clients in the following form:      #
114 # ::ffff:1.2.3.4, where 1.2.3.4 is the IPV4 address to bind the       #
115 # port on. If InspIRCd is built  for IPV4 connections (this is the    #
116 # default) then you do not need to prefix your addresses like this.   #
117 #                                                                     #
118
119 <bind address="" port="6660" type="clients">
120 <bind address="" port="7000" type="servers">
121 <bind address="" port="7001" type="servers">
122
123
124 #-#-#-#-#-#-#-#-#-#-  DIE/RESTART CONFIGURATION   -#-#-#-#-#-#-#-#-#-#-
125 #                                                                     #
126 #   You can configure the passwords here which you wish to use for    #
127 #   the die and restart commands. Only trusted ircops who will        #
128 #   need this ability should know the die and restart password.       #
129 #                                                                     #
130 #  Syntax is as follows:                                              #
131 #       <power diepass="die password" restartpass="restart password"  #
132 #        pause="secs before dying">                                   #
133 #                                                                     #
134
135 <power diepass="diepass" restartpass="restartpass" pause="2">
136
137
138 #-#-#-#-#-#-#-#-#-#  INCLUDE CONFIGURATION  #-#-#-#-#-#-#-#-#-#-#-#-#-#
139 #                                                                     #
140 # This optional tag allows you to include another config file         #
141 # allowing you to keep your configuration tidy. The configuration     #
142 # file you include will be treated as part of the configuration file  #
143 # which includes it, in simple terms the inclusion is transparent.    #
144 #                                                                     #
145 # All paths to config files are relative to the directory of the main #
146 # config file inspircd.conf, unless the filename starts with a forward#
147 # slash (/) in which case it is treated as an absolute path.          #
148 #                                                                     #
149 # Syntax is as follows:                                               #
150 #<include file="file.conf">                                           #
151 #                                                                     #
152
153 #-#-#-#-#-#-#-#-#-#-  CONNECTIONS CONFIGURATION  -#-#-#-#-#-#-#-#-#-#-#
154 #                                                                     #
155 #   This is where you can configure which connections are allowed     #
156 #   and denied access onto your server.                               #
157 #   The password is optional.                                         #
158 #   You may have as many of these as you require.                     #
159 #   To allow/deny all connections use a *                             #
160 #                                                                     #
161 #  Syntax is as follows:                                              #
162 #                                                                     #
163 #       <connect allow="ip mask">                                     #
164 #       <connect allow="ip mask" password="blahblah">                 #
165 #       <connect allow="ip mask" password="blah" timeout="10">        #
166 #       <connect allow="ip mask" timeout="blah" flood="5">            #
167 #       <connect allow="ip mask" threshold="8" pingfreq="120">        #
168 #       <connect allow="ip mask" sendq="99999" revcq="696969">        #
169 #       <connect allow="ip mask" localmax="3" globalmax="3">          #
170 #       <connect deny="ip mask">                                      #
171 #                                                                     #
172 #   IP masks may be specified in CIDR format or wildcard format,      #
173 #   for IPV4 and IPV6.                                                #
174 #                                                                     #
175 #   You may optionally include timeout="x" on any allow line, which   #
176 #   specifies the amount of time given before an unknown connection   #
177 #   is closed if USER/NICK/PASS are not given. This value is in secs  #
178 #                                                                     #
179 #   You should also include a flood="x" line which indicates          #
180 #   the number of lines a user may place into their buffer at once    #
181 #   before they are disconnected for excess flood. This feature can   #
182 #   not be disabled, however it can be set to exremely high values,   #
183 #   rendering it effectively disabled. A recommended value is 10.     #
184 #   A counter is maintained for each user which is reset every        #
185 #   'threshold' seconds and specifying this threshold value with      #
186 #   threshold="X" indicates how often the counter is reset. For       #
187 #   example, with flood="5" and threshold="8", the user may not send  #
188 #   more than 5 lines in 8 secs.                                      #
189 #                                                                     #
190 #   You may optionally specify the sendq size and ping frequency of   #
191 #   each connect:allow line using the pingfreq="X" and sendq="X"      #
192 #   settings as shown in the full example below.                      #
193 #   The ping frequency is specified in seconds, and the sendq size    #
194 #   in bytes. It is recommended, although not enforced, that you      #
195 #   should never set your sendq size to less than 8k. Send Queues are #
196 #   dynamically allocated and can grow as needed up to the maximum    #
197 #   size specified.                                                   #
198 #                                                                     #
199 #   The optional recvq value is the maximum size which users in this  #
200 #   group may grow their receive queue to. This is recommended to be  #
201 #   kept pretty low compared to the sendq, as users will always       #
202 #   recieve more than they send in normal circumstances. The default  #
203 #   if not specified is 4096.                                         #
204 #                                                                     #
205 #   IMPORTANT NOTE, CALL THE CONFUSION POLICE!                        #
206 #   The sendq is the data waiting to be sent TO THE USER.             #
207 #   The recvq is the data being received FROM THE USER.               #
208 #   The names sendq and recvq are from the SERVER'S PERSPECTIVE not   #
209 #   that of the user... Just to clear up any confusion or complaints  #
210 #   that these are backwards :p                                       #
211 #                                                                     #
212 #   The localmax and globalmax values can be used to enforce local    #
213 #   and global session limits on connections. The session limits are  #
214 #   counted against all users, but applied only to users within the   #
215 #   class. For example, if you had a class 'A' which has a session    #
216 #   limit of 3, and a class 'B' which has a session limit of 5, and   #
217 #   somehow, two users managed to get into class B which also match   #
218 #   class A, there is only one connection left for this IP now in A,  #
219 #   but if they can connect again to B, there are three. You get the  #
220 #   idea (i hope).                                                    #
221 #                                                                     #
222
223 <connect allow="196.12.*"  password="secret">
224 <connect allow="*" timeout="60" flood="20" threshold="1" pingfreq="120" sendq="262144" recvq="8192" localmax="3" globalmax="3">
225
226 <connect deny="69.254.*">
227 <connect deny="3ffe::0/32">
228
229
230 #-#-#-#-#-#-#-#-#-#-#-#-  CLASS CONFIGURATION   -#-#-#-#-#-#-#-#-#-#-#-
231 #                                                                     #
232 #   Classes are a group of commands which are grouped together        #
233 #   and given a unique name. They used to define which commands       #
234 #   are available to certain types of Operators.                      #
235 #                                                                     #
236 #  Syntax is as follows:                                              #
237 #                                                                     #
238 #       <class name="name" commands="oper commands">                  #
239 #                                                                     #
240 #    ____                _   _____ _     _       ____  _ _   _        #
241 #   |  _ \ ___  __ _  __| | |_   _| |__ (_)___  | __ )(_) |_| |       #
242 #   | |_) / _ \/ _` |/ _` |   | | | '_ \| / __| |  _ \| | __| |       #
243 #   |  _ <  __/ (_| | (_| |   | | | | | | \__ \ | |_) | | |_|_|       #
244 #   |_| \_\___|\__,_|\__,_|   |_| |_| |_|_|___/ |____/|_|\__(_)       #
245 #                                                                     #
246 #  You are not forced to give these classes the names given below.    #
247 #  You can create your own named classes, if you want, in fact that   #
248 #  is the whole idea of this system!                                  #
249 #                                                                     #
250 #  Note: It is possible to make a class which covers all available    #
251 #  commands. To do this, specify commands="*". This is not really     #
252 #  recommended, as it negates the whole purpose of the class system,  #
253 #  however it is provided for fast configuration (e.g. in test nets)  #
254 #                                                                     #
255
256 <class name="Shutdown" commands="DIE RESTART REHASH LOADMODULE UNLOADMODULE RELOAD">
257 <class name="ServerLink" commands="CONNECT SQUIT RCONNECT MKPASSWD MKSHA256">
258 <class name="BanControl" commands="KILL GLINE KLINE ZLINE QLINE ELINE">
259 <class name="OperChat" commands="WALLOPS GLOBOPS SETIDLE SPYLIST SPYNAMES">
260 <class name="HostCloak" commands="SETHOST SETIDENT SETNAME CHGHOST CHGIDENT">
261
262
263 #-#-#-#-#-#-#-#-#-#-#-#-  OPERATOR COMPOSITION   -#-#-#-#-#-#-#-#-#-#-#
264 #                                                                     #
265 #   This is where you specify which types of operators you have on    #
266 #   your server, as well as the commands they are allowed to use.     #
267 #   This works alongside with the classes specified above.            #
268 #                                                                     #
269 #  type name  - a name for the combined class types                   #
270 #               a type name cannot contain spaces, however if you     #
271 #               put an _ symbol in the name, it will be translated    #
272 #               to a space when displayed in a WHOIS.                 #
273 #                                                                     #
274 #  classes    - specified above, used for flexibility for the         #
275 #               server admin to decide on which operators get         #
276 #               what commands. Class names are case sensitive,        #
277 #               seperate multiple class names with spaces.            #
278 #                                                                     #
279 #  host       - optional hostmask operators will recieve on oper-up.  #
280 #                                                                     #
281 #  Syntax is as follows:                                              #
282 #                                                                     #
283 #     <type name="name" classes="class names" host="oper hostmask">   #
284 #                                                                     #
285 #    ____                _   _____ _     _       ____  _ _   _        #
286 #   |  _ \ ___  __ _  __| | |_   _| |__ (_)___  | __ )(_) |_| |       #
287 #   | |_) / _ \/ _` |/ _` |   | | | '_ \| / __| |  _ \| | __| |       #
288 #   |  _ <  __/ (_| | (_| |   | | | | | | \__ \ | |_) | | |_|_|       #
289 #   |_| \_\___|\__,_|\__,_|   |_| |_| |_|_|___/ |____/|_|\__(_)       #
290 #                                                                     #
291 #  You are not forced to give these types the names given below.      #
292 #  You can create your own named types, if you want, in fact that     #
293 #  is the whole idea of this system!                                  #
294 #                                                                     #
295
296 <type name="NetAdmin" classes="OperChat BanControl HostCloak Shutdown ServerLink" host="netadmin.omega.org.za">
297 <type name="GlobalOp" classes="OperChat BanControl HostCloak ServerLink" host="ircop.omega.org.za">
298 <type name="Helper" classes="HostCloak" host="helper.omega.org.za">
299
300
301 #-#-#-#-#-#-#-#-#-#-#-  OPERATOR CONFIGURATION   -#-#-#-#-#-#-#-#-#-#-#
302 #                                                                     #
303 #   Opers are defined here. This is a very important section.         #
304 #   Remember to only make operators out of truthworthy people.        #
305 #                                                                     #
306 #  name        - oper name, This is case sensitive, so it is best to  #
307 #                use lower-case.                                      #
308 #                                                                     #
309 #  password    - password to oper-up, also case sensitive.            #
310 #                encryption is supported via modules. You may load    #
311 #                modules for MD5 or SHA256 encryption, and if you do, #
312 #                this value will be a hash value, otherwise put a     #
313 #                plaintext password in this value.                    #
314 #                                                                     #
315 #  host        - hosts of client allowed to oper-up.                  #
316 #                wildcards accepted, seperate multiple hosts with a   #
317 #                space. You may also specify CIDR ip addresses.       #
318 #                                                                     #
319 #  fingerprint - When using the m_ssl_oper_cert.so module, you may    #
320 #                specify a key fingerprint here. This can be obtained #
321 #                using the /fingerprint command whilst the module is  #
322 #                loaded, or from the notice given to you when you     #
323 #                connect to the ircd using a client certificate,      #
324 #                and will lock this oper block to only the user who   #
325 #                has that specific key/certificate pair.              #
326 #                This enhances security a great deal, however it      #
327 #                requires that opers use clients which can send ssl   #
328 #                client certificates, if this is configured for that  #
329 #                oper. Note that if the m_ssl_oper.so module is not   #
330 #                loaded, and/or one of m_ssl_openssl or m_ssl_gnutls  #
331 #                is not loaded, this configuration option has no      #
332 #                effect and will be ignored.                          #
333 #                                                                     #
334 #  type        - Sefines the kind of operator. This must match a type #
335 #                tag you defined above, and is case sensitive.        #
336 #                                                                     #
337 #  Syntax is as follows:                                              #
338 #       <oper name="login"                                            #
339 #             password="pass"                                         #
340 #             host="hostmask@of.oper"                                 #
341 #             fingerprint="hexsequence"                               #
342 #             type="oper type">                                       #
343 #                                                                     #
344
345 <oper   name="katsklaw"
346         password="s3cret"
347         host="ident@dialup15.isp.com *@localhost *@server.com *@3ffe::0/16"
348         fingerprint="a41d730937a53b79f788c0ab13e9e1d5"
349         type="NetAdmin">
350
351
352 #-#-#-#-#-#-#-#-#-#-#-  SERVER LINK CONFIGURATION  -#-#-#-#-#-#-#-#-#-#
353 #                                                                     #
354 # Defines which servers can link to this one, and which servers this  #
355 # server may create outbound links to.                                #
356 #                                                                     #
357 # name        -   The name is the canocial name of the server, does   #
358 #                 not have to resolve - but it is expected to be set  #
359 #                 in the remote servers connection info.              #
360 #                                                                     #
361 # ipaddr      -   Valid host or ip address for remote server. These   #
362 #                 hosts are resolved on rehash, and cached, if you    #
363 #                 specify a hostname, so if you find that your server #
364 #                 is still trying to connect to an old IP after you   #
365 #                 have updated your dns, try rehashing and then       #
366 #                 attempting the connect again.                       #
367 #                                                                     #
368 # port        -   The TCP port for the remote server.                 #
369 #                                                                     #
370 # sendpass    -   Password to send to create an outbound connection   #
371 #                 to this server.                                     #
372 #                                                                     #
373 # recvpass    -   Password to receive to accept an inbound connection #
374 #                 from this server.                                   #
375 #                                                                     #
376 # autoconnect -   Sets the server to autoconnect. Where x is the num. #
377 # (optional)      of seconds between attempts. e.g. 300 = 5 minutes.  #
378 #                                                                     #
379 # encryptionkey - Encryption key to be used for AES encryption, where #
380 #                 supported. Links using the spanning tree protocol   #
381 #                 support AES. The encryption key must be EXACTLY 8,  #
382 #                 16 or 32 characters in length for a 64, 128 or 256  #
383 #                 bit key, respectively.                              #
384 #                                                                     #
385 # hidden        - When using m_spanningtree.so for linking. you may   #
386 #                 set this to 'yes', and if you do, the IP address/   #
387 #                 hostname of this connection will NEVER be shown to  #
388 #                 any opers on the network. In /STATS c its address   #
389 #                 will show as *@<hidden>, and during CONNECT and     #
390 #                 inbound connections, its IP will show as <hidden>   #
391 #                 UNLESS the connection fails (e.g. due to a bad      #
392 #                 password or servername)                             #
393 #                                                                     #
394 # allowmask     - When this is defined, it indicates a range of IP    #
395 #                 addresses to allow for this link (You may use CIDR  #
396 #                 or wildcard form for this address).                 #
397 #                 e.g. if your server is going to connect to you from #
398 #                 the range 1.2.3.1 through 1.2.3.255, put 1.2.3.0/24 #
399 #                 into this value. If it is not defined, then only    #
400 #                 the ipaddr field of the server shall be allowed.    #
401 #                                                                     #
402 # failover      - If you define this option, it must be the name of a #
403 #                 different link tag in your configuration. This      #
404 #                 option causes the ircd to attempt a connection to   #
405 #                 the failover link in the event that the connection  #
406 #                 to this server fails. For example, you could define #
407 #                 two hub uplinks to a leaf server, and set an        #
408 #                 american server to autoconnect, with a european     #
409 #                 hub as its failover. In this situation, your ircd   #
410 #                 will only try the link to the european hub if the   #
411 #                 american hub is unreachable. NOTE that for the      #
412 #                 intents and purposes of this option, an unreachable #
413 #                 server is one which DOES NOT ANSWER THE CONNECTION. #
414 #                 If the server answers the connection with accept(), #
415 #                 EVEN IF THE CREDENTIALS ARE INVALID, the failover   #
416 #                 link will not be tried! Failover settings will also #
417 #                 apply to autoconnected servers as well as manually  #
418 #                 connected ones.                                     #
419 #                                                                     #
420 # to u:line a server (give it extra privilages required for running   #
421 # services, Q, etc) you must include the <uline server> tag as shown  #
422 # in the example below. You can have as many of these as you like.    #
423 #                                                                     #
424 # WARNING: Unlike other ircds, u:lining a server allows ALL users on  #
425 # that server to operoverride modes. This should only be used for     #
426 # services and protected oper servers!                                #
427 #                                                                     #
428 # NOTE: If you have built InspIRCd with IPV6 support, and you want    #
429 # to link to an IPV4 server, you must specify the IP address in the   #
430 # form '::ffff:1.2.3.4' where 1.2.3.4 is the IP address of the target #
431 # server. If you have built InspIRCd for IPV4 (this is the default)   #
432 # you should not prefix your IP addresses in this fashion.            #
433 #                                                                     #
434 #    ____                _   _____ _     _       ____  _ _   _        #
435 #   |  _ \ ___  __ _  __| | |_   _| |__ (_)___  | __ )(_) |_| |       #
436 #   | |_) / _ \/ _` |/ _` |   | | | '_ \| / __| |  _ \| | __| |       #
437 #   |  _ <  __/ (_| | (_| |   | | | | | | \__ \ | |_) | | |_|_|       #
438 #   |_| \_\___|\__,_|\__,_|   |_| |_| |_|_|___/ |____/|_|\__(_)       #
439 #                                                                     #
440 #  If you want to link servers to InspIRCd you must load the          #
441 #  m_spanningtree module! Please see the modules list below for       #
442 #  information on how to load this module! If you do not load this    #
443 #  module, server links will NOT work!                                #
444 #                                                                     #
445
446 <link name="hub.penguin.org"
447         ipaddr="penguin.box.com"
448         port="7000"
449         allowmask="69.58.44.0/24"
450         autoconnect="300"
451         failover="hub.other.net"
452         sendpass="outgoing!password"
453         recvpass="incoming!password">
454
455 <link name="services.antarctic.com"
456         ipaddr="localhost"
457         port="7000"
458         allowmask="127.0.0.0/8"
459         sendpass="penguins"
460         recvpass="polarbears">
461
462 <uline server="services.antarctic.com">
463
464
465 #-#-#-#-#-#-#-#-#-#-  MISCELLANEOUS CONFIGURATION  -#-#-#-#-#-#-#-#-#-#
466 #                                                                     #
467 #   These options let you define the path to your motd and rules      #
468 #   files. If these are relative paths, they are relative to the      #
469 #   configurtion directory.                                           #
470 #                                                                     #
471
472 <files  motd="inspircd.motd"
473         rules="inspircd.rules">
474
475 #-#-#-#-#-#-#-#-#-#-#-#-#-#-# DNS SERVER -#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
476 #                                                                     #
477 # Define your DNS server address here. InspIRCd has its own resolver. #
478 # If you do not define this value, the first dns server from your     #
479 # /etc/resolv.conf file is read. If no entries are found in this file #
480 # or the file cannot be opened, the default value '127.0.0.1' is used #
481 # instead. The timeout value is in seconds.                           #
482 #                                                                     #
483 #    ____                _   _____ _     _       ____  _ _   _        #
484 #   |  _ \ ___  __ _  __| | |_   _| |__ (_)___  | __ )(_) |_| |       #
485 #   | |_) / _ \/ _` |/ _` |   | | | '_ \| / __| |  _ \| | __| |       #
486 #   |  _ <  __/ (_| | (_| |   | | | | | | \__ \ | |_) | | |_|_|       #
487 #   |_| \_\___|\__,_|\__,_|   |_| |_| |_|_|___/ |____/|_|\__(_)       #
488 #                                                                     #
489 # When choosing a server, be sure to choose one which will do a       #
490 # RECURSIVE LOOKUP. InspIRCd's resolver does not currently do these   #
491 # recursive lookups itself, to save time and resources. The dns       #
492 # server recommended by the InspIRCd team is bind, available from the #
493 # ISC website. If your DNS server does not do a recursive lookup, you #
494 # will be able to notice this by the fact that none of your users are #
495 # resolving even though the DNS server appears to be up! Most ISP and #
496 # hosting provider DNS servers support recursive lookups.             #
497 #                                                                     #
498 # NOTE: If you have built InspIRCd with IPV6 support, and you want    #
499 # to use an IPV4 nameserver, you must specify the IP address in the   #
500 # form '::ffff:1.2.3.4' where 1.2.3.4 is the IP address of the target #
501 # server. If you have built InspIRCd for IPV4 (this is the default)   #
502 # you should not prefix your IP addresses in this fashion.            #
503 #                                                                     #
504 # IF YOUR RESOLV.CONF CONTAINS ONLY IPV4 ADDRESSES, AND YOU ARE USING #
505 # IPV6, YOU MUST DEFINE THE <DNS SERVER> TAG, AND USE THE ::FFFF      #
506 # PREFIX NOTATION. IF YOU DO NOT, HOSTS WILL *NOT* RESOLVE.           #
507 #                                                                     #
508
509 <dns server="127.0.0.1" timeout="5">
510
511 # An example of using IPV4 nameservers over IPV6
512 #<dns server="::ffff:127.0.0.1" timeout="5">
513
514 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#  PID FILE  -#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
515 #                                                                     #
516 # Define the path to the PID file here. The PID file can be used to   #
517 # rehash the ircd from the shell or to terminate the ircd from the    #
518 # shell using shell scripts, perl scripts etc, and to monitor the     #
519 # ircd's state via cron jobs. If this is a relative path, it will be  #
520 # relative to the configuration directory, and if it is not defined,  #
521 # the default of 'inspircd.pid' is used.                              #
522 #                                                                     #
523
524 #<pid file="/path/to/inspircd.pid">
525
526 #-#-#-#-#-#-#-#-#-#-#-#-#- BANLIST LIMITS #-#-#-#-#-#-#-#-#-#-#-#-#-#-#
527 #                                                                     #
528 # Use these tags to customise the ban limits on a per channel basis.  #
529 # the tags are read from top to bottom, and any tag found which       #
530 # matches the channels name applies the banlimit to that channel.     #
531 # It is advisable to put an entry with the channel as '*' at the      #
532 # bottom of the list. If none are specified or no maxbans tag is      #
533 # matched, the banlist size defaults to 64 entries.                   #
534 #                                                                     #
535
536 <banlist chan="#morons" limit="128">
537 <banlist chan="*" limit="69">
538
539 #-#-#-#-#-#-#-#-#-#-#-  DISABLED COMMANDS  -#-#-#-#-#-#-#-#-#-#-#-#-#-#
540 #                                                                     #
541 # This tag is optional, and specifies one or more commands which are  #
542 # not available to non-operators. For example you may wish to disable #
543 # NICK and prevent non-opers from changing their nicknames.           #
544 # Note that any disabled commands take effect only after the user has #
545 # 'registered' (e.g. after the initial USER/NICK/PASS on connection)  #
546 # so for example disabling NICK will not cripple your network.        #
547 #                                                                     #
548
549 #<disabled commands="TOPIC MODE">
550
551
552 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-  RTFM LINE  -#-#-#-#-#-#-#-#-#-#-#-#-#-#
553 #                                                                     #
554 #   Just remove this... Its here to make you read ALL of the config   #
555 #   file options ;)                                                   #
556
557 <die value="You should probably edit your config *PROPERLY* and try again.">
558
559
560
561 #-#-#-#-#-#-#-#-#-#-#-#-#-  SERVER OPTIONS   -#-#-#-#-#-#-#-#-#-#-#-#-#
562 #                                                                     #
563 #   Settings to define which features are useable on your server.     #
564 #                                                                     #
565 #  prefixquit    - a prefix for a client's quit message               #
566 #                                                                     #
567 #  loglevel      - specifies what detail of messages to log in the    #
568 #                  log file. You may select from debug, verbose,      #
569 #                  default, sparse and none.                          #
570 #                                                                     #
571 #  allowhalfop   - allows the +h channel mode                         #
572 #                                                                     #
573 #  noservices    - If noservices is true, yes, or 1, then the first   #
574 #                  user into a channel gets founder status. This is   #
575 #                  only useful on networks running the m_chanprotect  #
576 #                  module without services.                           #
577 #                                                                     #
578 #  qaprefixes    - If qaprefixes is true, yes, or 1, then users       #
579 #                  with +q or +a will get the ~ or & prefixes         #
580 #                  used in unreal. This is only useful on networks    #
581 #                  running the m_chanprotect module                   #
582 #                                                                     #
583 #  cyclehosts    - If this is set to true, yes or 1, then when a      #
584 #                  user's hostname changes, they will appear to quit  #
585 #                  and then rejoin with their new host. This prevents #
586 #                  clients from being confused by host changes,       #
587 #                  especially in the case of bots, and it is          #
588 #                  recommended that this option is enabled.           #
589 #                                                                     #
590 #  netbuffersize - size of the buffer used to receive data from       #
591 #                  clients. The ircd may only read() this amount      #
592 #                  of text in one go at any time. (OPTIONAL)          #
593 #                                                                     #
594 #  maxwho        - The maximum number of results returned by a /WHO   #
595 #                  query. This is to prevent /WHO being used as a     #
596 #                  spam vector or means of flooding an ircd. The      #
597 #                  default is 128, it is not recommended to raise it  #
598 #                  above 1024. Values up to 65535 are permitted.      #
599 #                                                                     #
600 #  somaxconn     - The maximum number of sockets that may be waiting  #
601 #                  in the accept queue. This usually allows the ircd  #
602 #                  to soak up more connections in a shorter space of  #
603 #                  time when increased but please be aware there is a #
604 #                  system defined maximum value to this, the same way #
605 #                  there is a system defined maximum number of file   #
606 #                  descriptors. Some systems may only allow this to   #
607 #                  be up to 5 (ugh) while others such as FreeBSD will #
608 #                  default to a much nicer 128.                       #
609 #                                                                     #
610 #  moduledir     - This optional value indicates a runtime change of  #
611 #                  the location where modules are to be found. This   #
612 #                  does not add a supplementary directory. There can  #
613 #                  only be one module path.                           #
614 #                                                                     #
615 #  softlimit     - This optional feature allows a defined softlimit.  #
616 #                  if defined sets a soft maxconnections value, has   #
617 #                  to be less than the ./configure maxclients         #
618 #                                                                     #
619 #  userstats     - The userstats field is optional and specifies      #
620 #                  which stats characters in /STATS may be requested  #
621 #                  by non-operators. Stats characters in this field   #
622 #                  are case sensitive and are allowed to users        #
623 #                  independent of if they are in a module or the core #
624 #                                                                     #
625 #  operspywhois  - If this is set then when an IRC operator uses      #
626 #                  /WHOIS on a user they will see all channels, even  #
627 #                  ones if channels are secret (+s), private (+p) or  #
628 #                  if the target user is invisible +i.                #
629 #                                                                     #
630 #  customversion - If you specify this configuration item, and it is  #
631 #                  not set to an empty value, then when a user does   #
632 #                  a /VERSION command on the ircd, this string will   #
633 #                  be displayed as the second portion of the output,  #
634 #                  replacing the system 'uname', compile flags and    #
635 #                  socket engine/dns engine names. You may use this   #
636 #                  to enhance security, or simply for vanity.         #
637 #                                                                     #
638 #  maxtargets    - The maxtargets field is optional, and if not       #
639 #                  defined, defaults to 20. It indicates the maximum  #
640 #                  number of targets which may be given to commands   #
641 #                  such as PRIVMSG, KICK etc.                         #
642 #                                                                     #
643 #  hidesplits    - When set to 'yes', will hide split server names    #
644 #                  from non-opers. Non-opers will see '*.net *.split' #
645 #                  instead of the server names in the quit message,   #
646 #                  identical to the way IRCu displays them.           #
647 #                                                                     #
648 #  hidebans      - When set to 'yes', will hide gline, kline, zline   #
649 #                  and qline quit messages from non-opers. For        #
650 #                  example, user A who is not an oper will just see   #
651 #                  (G-Lined) while user B who is an oper will see the #
652 #                  text (G-Lined: Reason here) instead.               #
653 #                                                                     #
654 #  hidewhois     - When defined with a non-empty value, the given     #
655 #                  text will be used in place of the user's server    #
656 #                  in WHOIS, when a user is WHOISed by a non-oper.    #
657 #                  For example, most nets will want to set this to    #
658 #                  something like '*.netname.net' to conceal the      #
659 #                  actual server the user is on.                      #
660 #                                                                     #
661 #  flatlinks     - When you are using m_spanningtree.so, and this     #
662 #                  value is set to true, yes or 1, /MAP and /LINKS    #
663 #                  will be flattened when shown to a non-oper.        #
664 #                                                                     #
665 #  hideulines    - When you are using m_spanningtree.so, and this     #
666 #                  value is set to true, yes or 1, then U-lined       #
667 #                  servers will be hidden in /LINKS and /MAP. For non #
668 #                  opers. Please be aware that this will also hide    #
669 #                  any leaf servers of a U-lined server, e.g. jupes.  #
670 #                                                                     #
671 #  tempdir       - If defined, indicates a path where modules will be #
672 #                  temporarily copied before loading. If not defined, #
673 #                  defaults to /tmp.                                  #
674 #                                                                     #
675 #  nouserdns     - If set to 'yes', 'true' or '1', no user dns        #
676 #                  lookups will be performed for connecting users.    #
677 #                  this can save a lot of resources on very busy irc  #
678 #                  servers.                                           #
679 #                                                                     #
680 #  syntaxhints   - If set to 'yes', 'true' or '1', when a user does   #
681 #                  not give enough parameters for a command, a syntax #
682 #                  hint will be given (using the RPL_TEXT numeric)    #
683 #                  as well as the standard ERR_NEEDMOREPARAMS.        #
684 #                                                                     #
685 #  announcets    - If this value is defined to 'yes', 'true' or '1',  #
686 #                  then if a channel's timestamp is updated the users #
687 #                  on the channel will be informed of the change via  #
688 #                  a server notice to the channel with the old and    #
689 #                  new TS values in the timestamp. If you think this  #
690 #                  is just pointless noise, define the value to 0.    #
691 #                                                                     #
692
693 <options prefixquit="Quit: "
694          loglevel="default"
695          netbuffersize="10240"
696          maxwho="128"
697          noservices="0"
698          qaprefixes="0"
699          somaxconn="128"
700          softlimit="12800"
701          userstats="Pu"
702          operspywhois="no"
703          customversion=""
704          maxtargets="20"
705          hidesplits="no"
706          hidebans="no"
707          hidewhois=""
708          flatlinks="no"
709          hideulines="no"
710          nouserdns="no"
711          syntaxhints="no"
712          cyclehosts="yes"
713          announcets="yes"
714          allowhalfop="yes">
715
716
717
718 #-#-#-#-#-#-#-#-#-#-#-#-#-  MODULE OPTIONS   -#-#-#-#-#-#-#-#-#-#-#-#-#
719 #                                                                     #
720 #  These tags define which modules will be loaded on startup by your  #
721 #  server. Add modules without any paths. When you make your ircd     #
722 #  using the 'make' command, all compiled modules will be moved into  #
723 #  the folder you specified when you ran ./configure. The module tag  #
724 #  automatically looks for modules in this location.                  #
725 #  If you attempt to load a module outside of this location, either   #
726 #  in the config, or via /LOADMODULE, you will receive an error.      #
727 #                                                                     #
728 #  By default, ALL modules are commented out. You must uncomment them #
729 #  or add lines to your config to load modules. Please refer to       #
730 #  http://www.inspircd.org/wiki/Modules_List for a list of modules and#
731 #  each modules link for any additional conf tags they require.       #
732 #                                                                     #
733 #    ____                _   _____ _     _       ____  _ _   _        #
734 #   |  _ \ ___  __ _  __| | |_   _| |__ (_)___  | __ )(_) |_| |       #
735 #   | |_) / _ \/ _` |/ _` |   | | | '_ \| / __| |  _ \| | __| |       #
736 #   |  _ <  __/ (_| | (_| |   | | | | | | \__ \ | |_) | | |_|_|       #
737 #   |_| \_\___|\__,_|\__,_|   |_| |_| |_|_|___/ |____/|_|\__(_)       #
738 #                                                                     #
739 # To link servers to InspIRCd, you MUST load the m_spanningtree       #
740 # module, as shown below. If you DO NOT do this, server links will    #
741 # NOT work at all. ie. The ports will NOT bind, and /connect will not #
742 # work properly. This is by design, to allow for the implementation   #
743 # of other linking protocols in modules in the future.                #
744
745 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
746 # Spanning Tree module - allows linking of servers using the spanning
747 # tree protocol (see the READ THIS BIT section above).
748 #
749 #<module name="m_spanningtree.so">
750
751 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
752 # Alias module: Allows you to define server-side command aliases
753 #<module name="m_alias.so">
754 #
755 #-#-#-#-#-#-#-#-#-#-#-  ALIAS DEFINITIONS  -#-#-#-#-#-#-#-#-#-#-#-#-#-#
756 #                                                                     #
757 # If you have the m_alias.so module loaded, you may also define       #
758 # aliases as shown below. They are commonly used to provide shortcut  #
759 # commands to services, however they are not limited to just this use.#
760 # An alias tag requires the following values to be defined in it:     #
761 #                                                                     #
762 # text        -      The text to detect at the start of the line,     #
763 #                    must be at the start of the line to trigger the  #
764 #                    alias. Cant contain spaces, but case insensitive #
765 # replace     -      The text to replace 'text' with. Usually this    #
766 #                    will be "PRIVMSG ServiceName :$2-" or similar.   #
767 #                    You may use the variables $1 through $9 in the   #
768 #                    replace string, which refer to the first through #
769 #                    ninth word in the original string typed by the   #
770 #                    user. You may also use $1- through $9- which     #
771 #                    refer to the first word onwards, through to the  #
772 #                    ninth word onwards, e.g. if the user types the   #
773 #                    command "foo bar baz qux quz" then $3- will hold #
774 #                    "baz qux quz" and $2 will contain "bar". You may #
775 #                    also use the special variables: $nick, $ident,   #
776 #                    $host and $vhost, and you may seperate multiple  #
777 #                    commands with \n. If you wish to use the ACTUAL  #
778 #                    characters \ and n together in a line, you must  #
779 #                    use the sequence "\\n".                          #
780 # requires    -      If you provide a value for 'requires' this means #
781 #                    the given nickname MUST be online for the alias  #
782 #                    to successfully trigger. If they are not, then   #
783 #                    the user receives a 'no such nick' 401 numeric.  #
784 # uline       -      Defining this value with 'yes', 'true' or '1'    #
785 #                    will ensure that the user given in 'requires'    #
786 #                    must also be on a u-lined server, as well as     #
787 #                    actually being on the network. If the user is    #
788 #                    online, but not on a u-lined server, then an     #
789 #                    oper-alert is sent out as this is possibly signs #
790 #                    of a user trying to impersonate a service.       #
791 # operonly    -      Defining this value, with a value of 'yes', '1'  #
792 #                    or true will make the alias oper only. If a non- #
793 #                    oper attempts to use the alias, it will appear   #
794 #                    to not exist.                                    #
795 #                                                                     #
796 #<alias text="NICKSERV" replace="PRIVMSG NickServ :$2-" requires="NickServ" uline="yes">
797 #<alias text="CHANSERV" replace="PRIVMSG ChanServ :$2-" requires="ChanServ" uline="yes">
798 #<alias text="OPERSERV" replace="PRIVMSG OperServ :$2-" requires="OperServ" uline="yes" operonly="yes">
799 #<alias text="NS" replace="PRIVMSG NickServ :$2-" requires="NickServ" uline="yes">
800 #<alias text="CS" replace="PRIVMSG ChanServ :$2-" requires="ChanServ" uline="yes">
801 #<alias text="OS" replace="PRIVMSG OperServ :$2-" requires="OperServ" uline="yes" operonly="yes">
802 #<alias text="ID" replace="PRIVMSG NickServ :IDENTIFY $3" requires="NickServ" uline="yes">
803
804 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
805 # Antibear security module: Prevents 'bear.txt' based trojans from
806 # connecting to your network by sending them a numeric they can't handle.
807 #<module name="m_antibear.so">
808
809 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
810 # Antibottler module: Labels bottler leech bots
811 #<module name="m_antibottler.so">
812
813 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
814 # Ban except module: Adds support for channel ban exceptions (+e)
815 #<module name="m_banexception.so">
816
817 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
818 # Block amsg module: Attempt to block all usage of /amsg and /ame
819 #<module name="m_blockamsg.so">
820 #
821 #-#-#-#-#-#-#-#-#-#-#-  BLOCKAMSG CONFIGURATION  -#-#-#-#-#-#-#-#-#-#-#
822 #                                                                     #
823 # If you have the m_blockamsg.so module loaded, you can configure it  #
824 # with the <blockamsg> tag:                                           #
825 #                                                                     #
826 # delay          -   How many seconds between two messages to force   #
827 #                    them to be recognised as unrelated.              #
828 # action         -   Any of 'notice', 'noticeopers', 'silent', 'kill' #
829 #                    or 'killopers'. Define how to take action when   #
830 #                    a user uses /amsg or /ame.                       #
831 #
832 #<blockamsg delay="3" action="killopers">
833
834 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
835 # Block CAPS module: Blocking all-CAPS messages with cmode +P
836 #<module name="m_blockcaps.so">
837
838 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
839 # Block colour module: Blocking colour-coded messages with cmode +c
840 #<module name="m_blockcolor.so">
841
842 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
843 # Botmode module: Adds the user mode +B
844 #<module name="m_botmode.so">
845
846 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
847 # CBAN module: Lets you disallow channels from being used at runtime.
848 #<module name="m_cban.so">
849
850 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
851 # Censor module: Adds the channel mode +G
852 #<module name="m_censor.so">
853 #
854 #-#-#-#-#-#-#-#-#-#-#-  CENSOR  CONFIGURATION  -#-#-#-#-#-#-#-#-#-#-#-#
855 #                                                                     #
856 # Optional - If you specify to use the m_censor module, then specfiy  #
857 # below the path to the censor.conf file. See also:                   #
858 # Censor file, see http://www.inspircd.org/wiki/Censor_Module         #
859 #
860 #<censor file="/path/to/censor.conf">
861
862 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
863 # Channel filter module: Allows channel-op defined message
864 # filtering using simple string matches (channel mode +g)
865 #<module name="m_chanfilter.so">
866
867 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
868 # Chanprotect module: gives +q and +a channel modes
869 #<module name="m_chanprotect.so">
870
871 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
872 # CHGHOST module: Adds the /CHGHOST command
873 #<module name="m_chghost.so">
874
875 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
876 # CHGIDENT module: Adds the /CHGIDENT command
877 #<module name="m_chgident.so">
878
879 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
880 # Cloaking module: Adds usermode +x and cloaking support
881 #<module name="m_cloaking.so">
882 #
883 #-#-#-#-#-#-#-#-#-#-#- CLOAKING  CONFIGURATION -#-#-#-#-#-#-#-#-#-#-#-#
884 #                                                                     #
885 # Optional - If ypu specify the m_cloaking.so module as above, you    #
886 # must define cloak keys, and optionally a cloak prefix as shown      #
887 # below. When using cloaking, the cloak keys are MANDITORY and must   #
888 # be included. However, if prefix is not included, it will default    #
889 # to your networks name from the <server> tag.                        #
890 #                                                                     #
891 # <cloak key1="543241423"                                             #
892 #        key2="5378410432"                                            #
893 #        key3="1143242382"                                            #
894 #        key4="9504324581"                                            #
895 #        prefix="mynet">                                              #
896 #                                                                     #
897 # Please note that the key values will accept any number, and should  #
898 # be large numbers. Using small numbers such as "7" or "1924" will    #
899 # seriously weaken the security of your cloak.                        #
900
901 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
902 # Conn-Lusers: Shows the LUSERS output on connect
903 #<module name="m_conn_lusers.so">
904
905 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
906 # Conn-Usermodes: Set modes on users when they connect
907 # When this module is loaded <connect:allow> tags may have an optional
908 # modes="" value, which contains modes to add or remove from users
909 # when they connect to the server.
910 #<module name="m_conn_umodes.so">
911
912 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
913 # Conn-Wait-for-Pong: Don't let a user connect until they PONG
914 #<module name="m_conn_waitpong.so">
915 #
916 #-#-#-#-#-#-#-#-#-#-#-   WAITPONG CONFIGURATION  -#-#-#-#-#-#-#-#-#-#-#
917 #                                                                     #
918 # If you have the m_conn_waitpong.so module loaded, configure it with #
919 # the <waitpong> tag:                                                 #
920 #                                                                     #
921 # sendsnotice    -   Whether to send a snotice on connect, like other #
922 #                    older ircds                                      #
923 #                                                                     #
924 # killonbadreply -   Whether to kill the user if they send the wrong  #
925 #                    PONG reply.                                      #
926 #                                                                     #
927 #<waitpong sendsnotice="yes" killonbadreply="yes">
928
929 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
930 # Connection throttle module. Configuration:
931 #<module name="m_connflood.so">
932 #
933 #-#-#-#-#-#-#-#-#-#-#- CONTHROTTLE CONFIGURATION -#-#-#-#-#-#-#-#-#-#-#
934 #  seconds, maxconns -  Amount of connections per <seconds>.
935 #
936 #  timeout           -  Time to wait after the throttle was activated
937 #                       before deactivating it. Be aware that the time
938 #                       is seconds + timeout.
939 #
940 #  quitmsg           -  The message that users get if they attempt to
941 #                       connect while the throttle is active.
942 #
943 #  bootwait          -  Amount of time to wait before enforcing the
944 #                       throttling when the server just booted.
945 #
946 #<connflood seconds="30" maxconns="3" timeout="30"
947 #   quitmsg="Throttled" bootwait="10">
948
949 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
950 # DCCALLOW module: Adds the /DCCALLOW command
951 #<module name="m_dccallow.so">
952 #
953 #-#-#-#-#-#-#-#-#-#-#-  DCCALLOW CONFIGURATION   -#-#-#-#-#-#-#-#-#-#-#
954 #  blockchat         - Whether to block DCC CHAT as well as DCC SEND
955 #  length            - Default duration of entries in DCCALLOW list
956 #  action            - Default action to take if no action is specified
957 #                      can be 'block' or 'allow'
958 #
959 # File configuration:
960 #  pattern           - The glob pattern to match against
961 #  action            - Action to take if a user attempts to send a file
962 #                      that matches this pattern, can be 'block' or 'allow'
963 #
964 #<dccallow blockchat="yes" length="5m" action="block">
965 #<banfile pattern="*.exe" action="block">
966 #<banfile pattern="*.txt" action="allow">
967 #
968 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
969
970 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
971 # Deny Channels: Deny Channels from being used by users
972 #<module name="m_denychans.so"> 
973 #
974 #-#-#-#-#-#-#-#-#-#-#-   DENYCHAN DEFINITIONS  -#-#-#-#-#-#-#-#-#-#-#-#
975 #                                                                     #
976 # If you have the m_denychans.so module loaded, you need to specify   #
977 # the channels to deny:                                               #
978 #                                                                     #
979 # name        -      The channel name to deny.                        #
980 #                                                                     #
981 # allowopers  -      If operators are allowed to override the deny.   #
982 #                                                                     #
983 # reason      -      Reason given for the deny.                       #
984 #                                                                     #
985 #<badchan name="#gods" allowopers="yes" reason="Tortoises!">
986
987 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
988 # Devoice Module: Let users devoice themselves.
989 #<module name="m_devoice.so">
990
991 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
992 # Filter module: Provides glob-based message filtering
993 #<module name="m_filter.so">
994 #OR
995 # PCRE filter module: Filters messages using regular expressions
996 #<module name="m_filter_pcre.so">
997 #
998 #-#-#-#-#-#-#-#-#-#-#-  FILTER  CONFIGURATION  -#-#-#-#-#-#-#-#-#-#-#-#
999 #                                                                     #
1000 # Optional - If you specify to use the m_filter or m_filter_pcre      #
1001 # modules, then specfiy below the path to the filter.conf file.       #
1002 #                                                                     #
1003
1004 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1005 # Foobar module: does nothing - historical relic
1006 #<module name="m_foobar.so">
1007
1008 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1009 # Globops module: gives /GLOBOPS and usermode +g
1010 #<module name="m_globops.so">
1011
1012 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1013 # Global load module: Allows loading and unloading of modules network-
1014 # wide (USE WITH EXTREME CAUTION!)
1015 #<module name="m_globalload.so">
1016
1017 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1018 # HELPOP module: Provides the /HELPOP command
1019 #<module name="m_helpop.so">
1020 #
1021 #-#-#-#-#-#-#-#-#-#-#-#-  HELPOP  CONFIGURATION  -#-#-#-#-#-#-#-#-#-#-#
1022 #                                                                     #
1023 # Optional - If you specify to use the m_helpop.so module, then       #
1024 # specify below the path to the helpop.conf file.                     #
1025 #                                                                     #
1026 #<helpop file="helpop.conf">
1027
1028 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1029 # Hostchange module: Allows a different style of cloaking
1030 #<module name="m_hostchange.so">
1031 #
1032 #-#-#-#-#-#-#-#-#-#-#-  HOSTCHANGE  CONFIGURATION  -#-#-#-#-#-#-#-#-#-#
1033 #                                                                     #
1034 # Optional - If you choose to use the m_hostchange.so module.         #
1035 # Config Help -  See http://www.inspircd.org/wiki/Host_Changer_Module #
1036 #                                                                     #
1037 #<host suffix="polarbears.org">
1038 #<hostchange mask="*@fbi.gov" action="addnick">
1039 #<hostchange mask="*r00t@*" action="suffix">
1040 #<hostchange mask="a@b.com" action="set" value="blah.blah.blah">
1041
1042 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1043 # httpd module: Provides http server support for InspIRCd
1044 #<module name="m_httpd.so">
1045 #
1046 #-#-#-#-#-#-#-#-#-#-#-#-  HTTPD   CONFIGURATION  -#-#-#-#-#-#-#-#-#-#-#
1047 #
1048 # Optional - If you choose to use the m_httpd.so module,  then you must
1049 # specify the port number and other details of your http server:
1050 #
1051 #<http ip="192.168.1.10" host="brainwave" port="32006"
1052 #      index="/home/brain/inspircd/http/index.html">
1053 #
1054 # You may have as many of these tags as you wish, each with a different
1055 # IP, port, host or index file. Each one will act as an independent
1056 # HTTP server.
1057 #
1058
1059 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1060 # http stats module: Provides basic stats pages over HTTP
1061 # Requires m_httpd.so to be loaded for it to function.
1062 #<module name="m_httpd_stats.so">
1063 #
1064 #-#-#-#-#-#-#-#-#-#-#-#- HTTPD STATS CONFIGURATION -#-#-#-#-#-#-#-#-#-#
1065 #
1066 #<httpstats stylesheet="http://remote.style/sheet.css">
1067 #
1068
1069 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1070 # Ident: Provides RFC 1413 ident lookup support
1071 #<module name="m_ident.so">
1072 #
1073 #-#-#-#-#-#-#-#-#-#-#-#-   IDENT CONFIGURATION   -#-#-#-#-#-#-#-#-#-#-#
1074 #                                                                     #
1075 # Optional - If you are using the m_ident.so module, then you can     #
1076 # specify the timeout for ident lookups here. If not defined, it will #
1077 # default to one second. This is a non-blocking timeout which holds   #
1078 # the user in a 'connecting' state until the lookup is complete.      #
1079 #                                                                     #
1080 #<ident timeout="5">
1081
1082 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1083 # Invite except module: Adds support for channel invite exceptions (+I)
1084 #<module name="m_inviteexception.so">
1085
1086 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1087 # Join flood module: Adds support for join flood protection (+j)
1088 #<module name="m_joinflood.so">
1089
1090 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1091 # Anti-Auto-Rejoin: Adds support for prevention of auto-rejoin (+J)
1092 #<module name="m_kicknorejoin.so">
1093
1094 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1095 # Knock module: adds the /KNOCK command and +K channel mode
1096 #<module name="m_knock.so">
1097
1098 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1099 # Msg flood module: Adds message/notice flood protection (+f)
1100 #<module name="m_messageflood.so">
1101
1102 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1103 # MySQL module: Allows other SQL modules to access MySQL databases
1104 # through a unified API. You must copy the source for this module
1105 # from the directory src/modules/extra, plus the file m_sqlv2.h
1106 #<module name="m_mysql.so">
1107 #
1108 #-#-#-#-#-#-#-#-#-#-#-#- SQL CONFIGURATION   -#-#-#-#-#-#-#-#-#-#-#-#-#
1109 #                                                                     #
1110 # m_mysql.so is more complex than described here, see the wiki for    #
1111 # more: http://www.inspircd.org/wiki/SQL_Service_Provider_Module      #
1112 #
1113 #<database name="mydb" username="myuser" password="mypass" hostname="localhost" id="my_database2">
1114
1115 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1116 # NAMESX module: Provides support for the NAMESX extension which allows
1117 # clients to see all the prefixes set on a user without getting confused.
1118 # This is supported by mIRC, x-chat, klient, and maybe more.
1119 #<module name="m_namesx.so">
1120
1121 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1122 # Nicklock module: Let opers change a user's nick and then stop that
1123 # user from changing their nick again.
1124 #<module name="m_nicklock.so">
1125
1126 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1127 # No ctcp module: Adds the channel mode +C to block CTCPs
1128 #<module name="m_noctcp.so">
1129
1130 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1131 # Noinvite module: Gives channel mode +V
1132 #<module name="m_noinvite.so">
1133
1134 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1135 # No kicks module: Adds the +Q channel mode
1136 #<module name="m_nokicks.so">
1137
1138 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1139 # No nicks module: Adds the +N channel mode
1140 #<module name="m_nonicks.so">
1141
1142 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1143 # No Notice module: adds the channel mode +T
1144 #<module name="m_nonotice.so">
1145
1146 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1147 # Oper channels mode: Adds the +O channel mode
1148 #<module name="m_operchans.so">
1149
1150 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1151 # Oper Join module: Forces opers to join a channel on oper-up
1152 #<module name="m_operjoin.so">
1153 #
1154 #-#-#-#-#-#-#-#-#-#-#   OPERJOIN CONFIGURATION   -#-#-#-#-#-#-#-#-#-#-#
1155 #                                                                     #
1156 # If you are using the m_operjoin.so module, specify the channel here #
1157 #                                                                     #
1158 #<operjoin channel="#channel">
1159
1160 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1161 # Oper MOTD module: Provides support for seperate message of the day
1162 # on oper-up
1163 #<module name="m_opermotd.so">
1164 #
1165 #-#-#-#-#-#-#-#-#-#-#   OPERMOTD CONFIGURATION   -#-#-#-#-#-#-#-#-#-#-#
1166 #                                                                     #
1167 # If you are using the m_opermotd.so module, specify the motd here    #
1168 #                                                                     #
1169 #<opermotd file="/path/to/oper.motd">
1170
1171 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1172 # Override module: Adds support for oper override
1173 #<module name="m_override.so">
1174 #
1175 #-#-#-#-#-#-#-#-#-#-#   OVERRIDE CONFIGURATION   -#-#-#-#-#-#-#-#-#-#-#
1176 #                                                                     #
1177 # m_override.so is too complex it describe here, see the wiki:        #
1178 # http://www.inspircd.org/wiki/Oper_Override_Module                   #
1179
1180 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1181 # Oper levels module: Gives each oper a level and prevents
1182 # actions being taken against higher level opers
1183 # Specify the level as the 'level' parameter of the <type> tag
1184 #<module name="m_operlevels.so">
1185
1186 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1187 # Oper MD5 module: Allows MD5 hashed oper passwords
1188 #<module name="m_opermd5.so">
1189
1190 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1191 # Oper SHA256 module: Allows SHA256 hashed oper passwords
1192 # This module is in src/modules/extra
1193 #<module name="m_opersha256.so">
1194
1195 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1196 # Oper modes module: Allows you to specify modes to add/remove on oper
1197 # Specify the modes as the 'modes' parameter of the <type> tag
1198 #<module name="m_opermodes.so">
1199
1200 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1201 # PostgreSQL module: Allows other SQL modules to access PgSQL databases
1202 # through a unified API. You must copy the source for this module
1203 # from the directory src/modules/extra, plus the file m_sqlv2.h
1204 #<module name="m_pgsql.so">
1205 #
1206 #-#-#-#-#-#-#-#-#-#-#-#- SQL CONFIGURATION   -#-#-#-#-#-#-#-#-#-#-#-#-#
1207 #                                                                     #
1208 # m_pgsql.so is more complex than described here, see the wiki for    #
1209 # more: http://www.inspircd.org/wiki/SQL_Service_Provider_Module      #
1210 #
1211 #<database name="mydb" username="myuser" password="mypass" hostname="localhost" id="my_database" ssl="no">
1212
1213 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1214 # Random Quote module: provides a random quote on connect.
1215 # NOTE: Some of these may mimic fatal errors and confuse users and 
1216 # opers alike! - BEWARE!
1217 #<module name="m_randquote.so">
1218 #
1219 #-#-#-#-#-#-#-#-#-#-  RANDOMQUOTES CONFIGURATION -#-#-#-#-#-#-#-#-#-#-#
1220 #                                                                     #
1221 # Optional - If you specify to use the m_randquote.so module, then    #
1222 # specify below the path to the randquotes.conf file.                 #
1223 #                                                                     #
1224 #<randquote file="/path/to/inspircd/randquotes.conf">
1225
1226 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1227 # Redirect module: Adds channel redirection (mode +L)
1228 #<module name="m_redirect.so">
1229
1230 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1231 # Remove module: Adds the /REMOVE command which is a peaceful
1232 # alternative to /KICK
1233 #<module name="m_remove.so">
1234
1235 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1236 # Restricted channels module: Allows only opers to create channels
1237 #<module name="m_restrictchans.so">
1238
1239 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1240 # Restrict message module: Allows users to only message opers
1241 #<module name="m_restrictmsg.so">
1242
1243 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1244 # Provide /LIST throttling (to prevent flooding) and /LIST safety to
1245 # prevent excess flood when the list is large.
1246 #<module name="m_safelist.so">
1247
1248 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1249 # SAJOIN module: Adds the /SAJOIN command
1250 #<module name="m_sajoin.so">
1251
1252 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1253 # SAMODE module: Adds the oper /SAMODE command
1254 #<module name="m_samode.so">
1255
1256 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1257 # SANICK module: Allows opers to change user's nicks
1258 #<module name="m_sanick.so">
1259
1260 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1261 # SAPART module: Adds the oper /SAPART command
1262 #<module name="m_sapart.so">
1263
1264 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1265 # SAQUIT module: Adds the oper /SAQUIT command (abusable!!!)
1266 #<module name="m_saquit.so">
1267
1268 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-
1269 # Secure list module: Prevent /LIST in the first minute of connection,
1270 # crippling most spambots and trojan spreader bots.
1271 #<module name="m_securelist.so">
1272
1273 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1274 # Set Idle module: Adds a command for opers to change their
1275 # idle time (mainly a toy)
1276 #<module name="m_setidle.so">
1277
1278 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1279 # Services support module: Adds several usermodes such as +R and +M
1280 # this module implements the 'identified' state via user mode +r, which
1281 # is similar to the DALnet and dreamforge systems.
1282 #<module name="m_services.so">
1283
1284 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1285 # Services support module: Adds several usermodes such as +R and +M
1286 # this module implements the 'identified' state via account names (AC)
1287 # and is similar in operation to the way asuka and ircu handle services.
1288 # it cannot be used at the same time as m_services, above.
1289 #<module name="m_services_account.so">
1290
1291 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1292 # Sethost module: Adds the /SETHOST command
1293 #<module name="m_sethost.so">
1294
1295 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1296 # Setident module: Adds the /SETIDENT command
1297 #<module name="m_setident.so">
1298
1299 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1300 # SETNAME module: Adds the /SETNAME command
1301 #<module name="m_setname.so">
1302
1303 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1304 # Show Whois module: Adds the +W usermode which allows opers
1305 # to see when they are whois'ed (can be annoying).
1306 #<module name="m_showwhois.so">
1307
1308 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1309 # Spy module: Adds the commands SPYLIST and SPYNAMES that let opers
1310 # see who is in a +s channel, and list +s channels, show keys of keyed
1311 # channels the oper is not a member of etc. (standard 'abusive' features
1312 # of many other ircds, modulized here in InspIRCd).
1313 #<module name="m_spy.so">
1314
1315 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1316 # SSL channel mode module: Adds support for SSL-only channels (+z).
1317 # does not do anything useful without a working SSL module (see below)
1318 #<module name="m_sslmodes.so">
1319
1320 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1321 # Dummy ssl module: If you have other servers on your network which
1322 # have SSL, but your server does not have ssl enabled, you should load
1323 # this module, which will handle SSL metadata (e.g. the "Is using ssl"
1324 # field in the WHOIS information).
1325 #<module name="m_ssl_dummy.so">
1326
1327 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1328 # GnuTLS ssl module: Adds support for client-server SSL using GnuTLS,
1329 # if enabled. You must copy the source for this module from the directory
1330 # src/modules/extra, or answer 'yes' in ./configure when asked if you
1331 # want to enable this, or it will not load.
1332 #<module name="m_ssl_gnutls.so">
1333 #
1334 #-#-#-#-#-#-#-#-#-#-#-  GNUTLS CONFIGURATION   -#-#-#-#-#-#-#-#-#-#-#-#
1335 #                                                                     #
1336 # m_ssl_gnutls.so is too complex it describe here, see the wiki:      #
1337 # http://www.inspircd.org/wiki/GnuTLS_SSL_Module                      #
1338
1339 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1340 # SSL Info module: Allows users to retrieve information about other
1341 # user's peer SSL certificates and keys. This can be used by client
1342 # scripts to validate users. For this to work, one of m_ssl_gnutls.so
1343 # or m_ssl_openssl.so must be loaded. You must symlink the source for
1344 # this module from the directory src/modules/extra.
1345 #<module name="m_sslinfo.so">
1346
1347 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1348 # OpenSSL ssl module: Adds support for client-server SSL using OpenSSL,
1349 # if enabled. You must copy the source for this module from the directory
1350 # src/modules/extra, or answer 'yes' in ./configure when asked if you
1351 # want to enable this, or it will not load.
1352 #<module name="m_ssl_openssl.so">
1353 #
1354 #-#-#-#-#-#-#-#-#-#-#- OPENSSL CONFIGURATION   -#-#-#-#-#-#-#-#-#-#-#-#
1355 #                                                                     #
1356 # m_ssl_openssl.so is too complex it describe here, see the wiki:     #
1357 # http://www.inspircd.org/wiki/OpenSSL_SSL_Module                     #
1358
1359 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1360 # SSL Cert Oper module: Allows opers to oper up using the key fingerprint
1361 # stored within their SSL certificate and key pair.
1362 # When using this module, one of m_ssl_gnutls.so or m_ssl_openssl.so must
1363 # be loaded. An extra value should be added to enabled opers, which
1364 # is in the following format: fingerprint="<hash>". For more information,
1365 # see the example in the oper blocks.
1366 #<module name="m_ssl_oper_cert.so">
1367
1368 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1369 # Strip colour module: Adds the channel mode +S
1370 #<module name="m_stripcolor.so">
1371
1372 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1373 # SILENCE module: Adds support for /SILENCE
1374 #<module name="m_silence.so">
1375
1376 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1377 # SQL authentication module: Allows IRCd connections to be tied into
1378 # a database table (for example a forum). You must copy the source for
1379 # this module from the directory src/modules/extra
1380 #<module name="m_sqlauth.so">
1381 #
1382 #-#-#-#-#-#-#-#-#-#-#- SQLAUTH CONFIGURATION   -#-#-#-#-#-#-#-#-#-#-#-#
1383 #                                                                     #
1384 # m_sqlauth.so is too complex it describe here, see the wiki:         #
1385 # http://www.inspircd.org/wiki/SQL_Authentication_Module              #
1386
1387 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1388 # SQL logging module: Allows you to log network-wide data for your
1389 # network in a fully normalized set of SQL tables. You must copy the
1390 # source for this module from the directory src/modules/extra
1391 #<module name="m_sqllog.so">
1392 #
1393 #-#-#-#-#-#-#-#-#-#-#-  SQLLOG CONFIGURATION   -#-#-#-#-#-#-#-#-#-#-#-#
1394 #                                                                     #
1395 # dbid       - Database ID to use (see m_sql)                         #
1396 #                                                                     #
1397 # See also: http://www.inspircd.org/wiki/SQL_Logging_Module           #
1398 #                                                                     #
1399 #<sqllog dbid="1">
1400
1401 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1402 # SQL oper module: Allows you to store oper credentials in an SQL table
1403 # You must copy the source for this module from the directory src/modules/extra
1404 #<module name="m_sqloper.so">
1405 #
1406 #-#-#-#-#-#-#-#-#-#-#- SQLOPER CONFIGURATION   -#-#-#-#-#-#-#-#-#-#-#-#
1407 #                                                                     #
1408 # dbid       - Database ID to use (see m_sql)                         #
1409 #                                                                     #
1410 # See also: http://www.inspircd.org/wiki/SQL_Oper_Storage_Module      #
1411 #                                                                     #
1412 #<sqloper dbid="1">
1413
1414 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1415 # SWHOIS module: Allows you to add arbitary lines to user WHOIS.
1416 #<module name="m_swhois.so">
1417
1418 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1419 # Test command module: Does nothing significant. Read: pointless.
1420 #<module name="m_testcommand.so">
1421
1422 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1423 # Timed bans module: Adds timed bans and the /TBAN command
1424 #<module name="m_timedbans.so">
1425
1426 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1427 # Test line module: Adds the /TLINE command, used to test how many
1428 # users a /GLINE or /ZLINE etc would match.
1429 #<module name="m_tline.so">
1430
1431 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1432 # Uninvite module: Adds the /UNINVITE command which lets users remove
1433 # pending invites from channels without waiting for the user to join.
1434 #<module name="m_uninvite.so">
1435
1436 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1437 # Userip module: Adds the /USERIP command
1438 #<module name="m_userip.so">
1439
1440 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1441 # Vhost module: Adds the VHOST command which allows for adding virtual
1442 # hosts which are accessible using a username and password in the config.
1443 #<module name="m_vhost.so">
1444 #
1445 #-#-#-#-#-#-#-#-#-#-#- VHOST CONFIGURATION   -#-#-#-#-#-#-#-#-#-#-#-#-#
1446 #                                                                     #
1447 # user       - Username for the vhost.                                #
1448 #                                                                     #
1449 # pass       - Password for the vhost.                                #
1450 #                                                                     #
1451 # host       - Vhost to set.                                          #
1452 #
1453 #<vhost user="some_username" pass="some_password" host="some.host">
1454
1455 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1456 # Watch module: Adds the WATCH command, which is used by clients to 
1457 # maintain notify lists.
1458 #<module name="m_watch.so">
1459
1460 #-#-#-#-#-#-#-#-#-#-#-#-#-#-  BAN OPTIONS  -#-#-#-#-#-#-#-#-#-#-#-#-#-#
1461 #                                                                     #
1462 # The ban tags define nick masks, host masks and ip ranges which are  #
1463 # banned from your server. All details in these tags are local to     #
1464 # Your server.                                                        #
1465 #                                                                     #
1466 #                                                                     #
1467 # badip lines ban an ip range (same as a zline)                       #
1468 #                                                                     #
1469 # ipmask       -          The ip range to ban (wildcards possible)    #
1470 #                         CIDR is supported in the IP mask.           #
1471 # reason       -          Reason to display when disconnected         #
1472 #                                                                     #
1473 # badnick lines ban a nick mask (same as a qline)                     #
1474 #                                                                     #
1475 # nick         -          Nick mask to ban (wildcards possible)       #
1476 # reason       -          Reason to display on /NICK                  #
1477 #                                                                     #
1478 # badhost lines ban a user@host mask (same as a kline)                #
1479 #                                                                     #
1480 # host         -          ident@hostname (wildcards possible)         #
1481 #                         If you specify an IP, CIDR is supported.    #
1482 # reason       -          Reason to display on disconnection          #
1483 #                                                                     #
1484 # exception lines define a hostmask that is excempt from [kzg]lines   #
1485 #                                                                     #
1486 # host         -          ident@hostname (wildcards possible)         #
1487 #                         If you specify an IP, CIDR is supported.    #
1488 # reason       -          Reason, shown only in /stats e              #
1489 #                                                                     #
1490
1491 <badip ipmask="69.69.69.69" reason="No porn here thanks.">
1492
1493 <badnick nick="ChanServ" reason="Reserved For Services">
1494 <badnick nick="NickServ" reason="Reserved For Services">
1495 <badnick nick="OperServ" reason="Reserved For Services">
1496 <badnick nick="MemoServ" reason="Reserved For Services">
1497
1498 <badhost host="*@hundredz.n.hundredz.o.1337.kiddies.com" reason="Too many 1337 kiddiots">
1499 <badhost host="*@localhost" reason="No irc from localhost!">
1500 <badhost host="*@172.32.0.0/16" reason="This subnet is bad.">
1501
1502 <exception host="*@ircop.host.com" reason="Opers hostname">
1503
1504 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#- YAWN  -#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
1505 #                                                                     #
1506 #   You should already know what to do here :)                        #
1507
1508 <die value="No, i wasnt joking. You should probably edit your config *PROPERLY* and try again.">
1509
1510
1511 #########################################################################
1512 #                                                                       #
1513 #                     - InspIRCd Development Team -                     #
1514 #                        http://www.inspircd.org                        #
1515 #                                                                       #
1516 #########################################################################