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