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