]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - docs/conf/inspircd.conf.example
Merge insp20
[user/henk/code/inspircd.git] / docs / conf / 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 #                                                                      #
24 #    ____                _   _____ _     _       ____  _ _   _         #
25 #   |  _ \ ___  __ _  __| | |_   _| |__ (_)___  | __ )(_) |_| |        #
26 #   | |_) / _ \/ _` |/ _` |   | | | '_ \| / __| |  _ \| | __| |        #
27 #   |  _ <  __/ (_| | (_| |   | | | | | | \__ \ | |_) | | |_|_|        #
28 #   |_| \_\___|\__,_|\__,_|   |_| |_| |_|_|___/ |____/|_|\__(_)        #
29 #                                                                      #
30 #   Lines prefixed with READ THIS BIT, as shown above, are IMPORTANT   #
31 #   lines, and you REALLY SHOULD READ THEM. Yes, THIS MEANS YOU. Even  #
32 #   if you've configured InspIRCd before, these probably indicate      #
33 #   something new or different to this version and you SHOULD READ IT. #
34 #                                                                      #
35 ########################################################################
36 #                                                                      #
37 #         Unalphabeticalise the modules list at your own risk          #
38 #                                                                      #
39 ########################################################################
40
41 #-#-#-#-#-#-#-#-#-#  CONFIGURATION FORMAT  #-#-#-#-#-#-#-#-#-#-#-#-#-#-
42 #                                                                     #
43 # In order to maintain compatibility with older configuration files,  #
44 # you can change the configuration parser to parse as it did in       #
45 # previous releases. When using the "compat" format, you need to use  #
46 # C++ escape sequences (e.g. \n) instead of XML ones (e.g. &nl;) and  #
47 # can not use <define> to create macros.                              #
48 #<config format="compat">
49
50 #-#-#-#-#-#-#-#-#-#  INCLUDE CONFIGURATION  #-#-#-#-#-#-#-#-#-#-#-#-#-#
51 #                                                                     #
52 # This optional tag allows you to include another config file         #
53 # allowing you to keep your configuration tidy. The configuration     #
54 # file you include will be treated as part of the configuration file  #
55 # which includes it, in simple terms the inclusion is transparent.    #
56 #                                                                     #
57 # All paths to config files are relative to the directory that the    #
58 # process runs in.                                                    #
59 #                                                                     #
60 # You may also include an executable file, in which case if you do so #
61 # the output of the executable on the standard output will be added   #
62 # to your config at the point of the include tag.                     #
63 #                                                                     #
64 # Syntax is as follows:                                               #
65 #<include file="file.conf">                                           #
66 #<include executable="/path/to/executable parameters">                #
67 #                                                                     #
68 # Executable Include Example:                                         #
69 #<include executable="/usr/bin/wget -q -O - http://mynet.net/inspircd.conf">
70 #                                                                     #
71
72
73 #-#-#-#-#-#-#-#-#-#-#-#  VARIABLE DEFINITIONS  -#-#-#-#-#-#-#-#-#-#-#-#
74 #                                                                     #
75 # You can define variables that will be substituted later in the      #
76 # configuration file. This can be useful to allow settings to be      #
77 # easily changed, or to parameterize a remote includes.               #
78 #                                                                     #
79 # Variables may be redefined and may reference other variables.       #
80 # Value expansion happens at the time the tag is read.                #
81 <define name="bindip" value="1.2.2.3">
82 <define name="localips" value="&bindip;/24">
83
84 #-#-#-#-#-#-#-#-#-#-#-#-  SERVER DESCRIPTION  -#-#-#-#-#-#-#-#-#-#-#-#-
85 #                                                                     #
86 #   Here is where you enter the information about your server.        #
87 #                                                                     #
88
89 <server
90         # name: Hostname of your server. Does not need to resolve, but
91         # does need to be correct syntax (something.somethingelse.tld).
92         name="penguin.omega.org.za"
93
94         # description: Server description. Spaces are allowed.
95         description="Waddle World"
96
97         # id: The SID to use for this server. This should not be uncommented
98         # unless there is a SID conflict. This must be three characters long.
99         # The first character must be a digit [0-9], the remaining two chars
100         # may be letters [A-Z] or digits.
101         #id="97K"
102
103         # network: Network name given on connect to clients.
104         # Should be the same on all servers on the network and
105         # not contain spaces.
106         network="Omega">
107
108
109 #-#-#-#-#-#-#-#-#-#-#-#-   ADMIN INFORMATION   -#-#-#-#-#-#-#-#-#-#-#-#
110 #                                                                     #
111 #   Describes the Server Administrator's real name (optionally),      #
112 #   nick, and email address.                                          #
113 #                                                                     #
114
115 <admin
116        # name: Real Name
117        name="Johnny English"
118
119        # nick: Nickname (preferably what you use on the network)
120        nick="MI5"
121
122        # email: email address. Does not have to be valid
123        # but should be for the users to be able to contact you.
124        email="MI5@the.best.secret.agent">
125
126
127 #-#-#-#-#-#-#-#-#-#-#-#-   PORT CONFIGURATION   -#-#-#-#-#-#-#-#-#-#-#-
128 #                                                                     #
129 #   Enter the port and address bindings here.                         #
130 #                                                                     #
131 #                                                                     #
132 #    ____                _   _____ _     _       ____  _ _   _        #
133 #   |  _ \ ___  __ _  __| | |_   _| |__ (_)___  | __ )(_) |_| |       #
134 #   | |_) / _ \/ _` |/ _` |   | | | '_ \| / __| |  _ \| | __| |       #
135 #   |  _ <  __/ (_| | (_| |   | | | | | | \__ \ | |_) | | |_|_|       #
136 #   |_| \_\___|\__,_|\__,_|   |_| |_| |_|_|___/ |____/|_|\__(_)       #
137 #                                                                     #
138 #  If you want to link servers to InspIRCd you must load the          #
139 #  m_spanningtree.so module! Please see the modules list for          #
140 #  information on how to load this module! If you do not load this    #
141 #  module, server ports will NOT work!                                #
142
143 <bind
144       # address: IP address to bind to if the box that you are hosting
145       # on has more than one IP, else the ircd will try to bind to all
146       # IP's on the box if this is not defined.
147       address=""
148
149       # port: Port for users or servers to be able to connect to.
150       # you can select multiple ports by separating them
151       # with a - character like the example below.
152       port="6697"
153
154       # type: Type of bind block this is. It can either be clients or
155       # servers. Whichever you select will be the only type able to connect
156       # to this bind section.
157       type="clients"
158
159       # ssl: If you want this bind section to use SSL, define either
160       # gnutls or openssl here. The appropriate SSL modules must be loaded
161       # for ssl to work. If you do not want this bind section to support ssl,
162       # just remove or comment out this option.
163       ssl="gnutls"
164
165       # defer: When this is non-zero, connections will not be handed over to
166       # the daemon from the operating system before data is ready.
167       # In Linux, the value indicates the number of seconds we'll wait for a
168       # connection to come up with data. Don't set it too low!
169       # In BSD the value is ignored; only zero and non-zero is possible.
170       # Windows ignores this parameter completely.
171       # Note: This does not take effect on rehash.
172       # To change it on a running bind, you'll have to comment it out,
173       # rehash, comment it in and rehash again.
174       defer="0"
175 >
176
177 <bind address="" port="6660-6669" type="clients">
178
179 # When linking servers, the openssl and gnutls implementations are completely
180 # link-compatible and can be used alongside each other
181 # on each end of the link without any significant issues.
182 # Supported ssl types are: "openssl" and "gnutls".
183 # You must load, m_ssl_openssl for openssl
184 # or m_ssl_gnutls for gnutls.
185
186 <bind address="" port="7000,7001" type="servers">
187 <bind address="1.2.3.4" port="7005" type="servers" ssl="openssl">
188
189
190 #-#-#-#-#-#-#-#-#-#-  DIE/RESTART CONFIGURATION   -#-#-#-#-#-#-#-#-#-#-
191 #                                                                     #
192 #   You can configure the passwords here which you wish to use for    #
193 #   the die and restart commands. Only trusted IRCop's who will       #
194 #   need this ability should know the die and restart password.       #
195 #                                                                     #
196
197 <power
198        # hash: what hash these passwords are hashed with.
199        # Requires the module for selected hash (m_md5.so, m_sha256.so
200        # or m_ripemd160.so) be loaded and the password hashing module
201        # (m_password_hash.so) loaded.
202        # Options here are: "md5", "sha256" and "ripemd160", or one of
203        # these prefixed with "hmac-", e.g.: "hmac-sha256".
204        # Optional, but recommended. Create hashed password with:
205        # /mkpasswd <hash> <password>
206        #hash="sha256"
207
208        # diepass: Password for opers to use if they need to shutdown (die)
209        # a server.
210        diepass=""
211
212        # restartpass: Password for opers to use if they need to restart
213        # a server.
214        restartpass="">
215
216
217 #-#-#-#-#-#-#-#-#-#-  CONNECTIONS CONFIGURATION  -#-#-#-#-#-#-#-#-#-#-#
218 #                                                                     #
219 #   This is where you can configure which connections are allowed     #
220 #   and denied access onto your server. The password is optional.     #
221 #   You may have as many of these as you require. To allow/deny all   #
222 #   connections, use a '*' or 0.0.0.0/0.                              #
223 #                                                                     #
224 #  -- It is important to note that connect tags are read from the  -- #
225 #     TOP DOWN. This means that you should have more specific deny    #
226 #    and allow tags at the top, progressively more general, followed  #
227 #        by a <connect allow="*" (should you wish to have one).       #
228 #                                                                     #
229 # Connect blocks are searched twice for each user - once when the TCP #
230 # connection is accepted, and once when the user completes their      #
231 # registration. Most of the information (hostname, ident response,    #
232 # password, SSL when using STARTTLS, etc) is only available during    #
233 # the second search, so if you are trying to make a closed server,    #
234 # you will probably need a connect block just for user registration.  #
235 # This can be done by using <connect registered="no">                 #
236
237 <connect
238          # deny: Will not let people connect if they have specified host/IP.
239          deny="192.0.2.*">
240
241 # connect:reason is the message that users will see if they match a deny block
242 <connect deny="3ffe::0/32" reason="The 6bone address space is deprecated">
243
244 <connect
245          # name: Name to use for this connect block. Mainly used for
246          # connect class inheriting.
247          name="secret"
248
249          # parent: This setting is to specify if this connect class
250          # inherits settings from any other. Put the other class's name
251          # in here to use its settings as a template - for example,  if
252          # you only want to adjust sendq and a password
253          parent="main"
254
255          # allow: What IP addresses/hosts to allow for this block.
256          allow="203.0.113.*"
257
258          # hash: what hash this password is hashed with. requires the module
259          # for selected hash (m_md5.so, m_sha256.so or m_ripemd160.so) be
260          # loaded and the password hashing module (m_password_hash.so)
261          # loaded. Options here are: "md5", "sha256" and "ripemd160".
262          # Optional, but recommended. Create hashed password with:
263          # /mkpasswd <hash> <password>
264          #hash="sha256"
265
266          # password: Password to use for this block/user(s)
267          password="secret"
268
269          # maxchans: Maximum number of channels a user in this class
270          # be in at one time. This overrides every other maxchans setting.
271          #maxchans="30"
272
273          # timeout: How long (in seconds) the server will wait before
274          # disconnecting a user if they do not do anything on connect.
275          # (Note, this is a client-side thing, if the client does not
276          # send /nick, /user or /pass)
277          timeout="10"
278
279          # localmax: Maximum local connections per IP (or CIDR mask, see below).
280          localmax="3"
281
282          # globalmax: Maximum global (network-wide) connections per IP (or CIDR mask, see below).
283          globalmax="3"
284
285          # maxconnwarn: Enable warnings when localmax or globalmax is hit (defaults to on)
286          maxconnwarn="off"
287
288          # resolvehostnames: If disabled, no DNS lookups will be performed on connecting users
289          # in this class. This can save a lot of resources on very busy servers.
290          resolvehostnames="yes"
291
292          # usednsbl: Defines whether or not users in this class are subject to DNSBL. Default is yes.
293          # This setting only has effect when m_dnsbl is loaded.
294          #usednsbl="yes"
295
296          # useident: Defines if users in this class MUST respond to a ident query or not.
297          useident="no"
298
299          # limit: How many users are allowed in this class
300          limit="5000"
301
302          # modes: Usermodes that are set on users in this block on connect.
303          # Enabling this option requires that the m_conn_umodes module be loaded.
304          # This entry is highly recommended to use for/with IP Cloaking/masking.
305          # For the example to work, this also requires that the m_cloaking
306          # module be loaded as well.
307          modes="+x"
308
309          # requireident, requiressl, requireaccount: require that users of this
310          # block have a valid ident response, use SSL, or have authenticated.
311          # Requires m_ident, m_sslinfo, or m_services_account respectively.
312          requiressl="on"
313          # NOTE: For requireaccount, you must complete the signon prior to full
314          # connection. Currently, this is only possible by using SASL
315          # authentication; passforward and PRIVMSG NickServ happen after
316          # your final connect block has been found.
317
318          # Alternate MOTD file for this connect class. The contents of this file are
319          # specified using <files secretmotd="filename"> or <execfiles ...>
320          motd="secretmotd"
321
322          # Allow color codes to be processed in the message of the day file.
323          # the following characters are valid color code escapes:
324          #   \002 or \b = Bold
325          #   \037 or \u = Underline
326          #   \003 or \c = Color (with a code postfixed to this char)
327          #   \017 or \x = Stop all color sequences
328          allowmotdcolors="false"
329
330          # port: What port this user is allowed to connect on. (optional)
331          # The port MUST be set to listen in the bind blocks above.
332          port="6697">
333
334 <connect
335          # name: Name to use for this connect block. Mainly used for
336          # connect class inheriting.
337          name="main"
338
339          # allow: What IP addresses/hosts to allow for this block.
340          allow="*"
341
342          # maxchans: Maximum number of channels a user in this class
343          # be in at one time. This overrides every other maxchans setting.
344          #maxchans="30"
345
346          # timeout: How long (in seconds) the server will wait before
347          # disconnecting a user if they do not do anything on connect.
348          # (Note, this is a client-side thing, if the client does not
349          # send /nick, /user or /pass)
350          timeout="10"
351
352          # pingfreq: How often (in seconds) the server tries to ping connecting clients.
353          pingfreq="120"
354
355          # hardsendq: maximum amount of data allowed in a client's send queue
356          # before they are dropped. Keep this value higher than the length of
357          # your network's /LIST or /WHO output, or you will have lots of
358          # disconnects from sendq overruns!
359          hardsendq="1048576"
360
361          # softsendq: amount of data in a client's send queue before the server
362          # begins delaying their commands in order to allow the sendq to drain
363          softsendq="8192"
364
365          # recvq: amount of data allowed in a client's queue before they are dropped.
366          recvq="8192"
367
368          # threshold: This specifies the amount of command penalty a user is allowed to have
369          # before being quit or fakelagged due to flood. Normal commands have a penalty of 1,
370          # ones such as /OPER have penalties up to 10.
371          #
372          # If you are not using fakelag, this should be at least 20 to avoid excess flood kills
373          # from processing some commands.
374          threshold="10"
375
376          # commandrate: This specifies the maximum rate that commands can be processed.
377          # If commands are sent more rapidly, the user's penalty will increase and they will
378          # either be fakelagged or killed when they reach the threshold
379          #
380          # Units are millicommands per second, so 1000 means one line per second.
381          commandrate="1000"
382
383          # fakelag: Use fakelag instead of killing users for excessive flood
384          #
385          # Fake lag stops command processing for a user when a flood is detected rather than
386          # immediately killing them; their commands are held in the recvq and processed later
387          # as the user's command penalty drops. Note that if this is enabled, flooders will
388          # quit with "RecvQ exceeded" rather than "Excess Flood".
389          fakelag="on"
390
391          # localmax: Maximum local connections per IP.
392          localmax="3"
393
394          # globalmax: Maximum global (network-wide) connections per IP.
395          globalmax="3"
396
397          # resolvehostnames: If disabled, no DNS lookups will be performed on connecting users
398          # in this class. This can save a lot of resources on very busy servers.
399          resolvehostnames="yes"
400
401          # useident: Defines if users in this class must respond to a ident query or not.
402          useident="no"
403
404          # limit: How many users are allowed in this class
405          limit="5000"
406
407          # modes: Usermodes that are set on users in this block on connect.
408          # Enabling this option requires that the m_conn_umodes module be loaded.
409          # This entry is highly recommended to use for/with IP Cloaking/masking.
410          # For the example to work, this also requires that the m_cloaking
411          # module be loaded as well.
412          modes="+x">
413
414
415 #-#-#-#-#-#-#-#-#-#-#-#-  CIDR CONFIGURATION   -#-#-#-#-#-#-#-#-#-#-#-
416 #                                                                     #
417 # CIDR configuration allows detection of clones and applying of       #
418 # throttle limits across a CIDR range. (A CIDR range is a group of    #
419 # IPs, for example, the CIDR range 192.168.1.0-192.168.1.255 may be   #
420 # represented as 192.168.1.0/24). This means that abuse across an ISP #
421 # is detected and curtailed much easier. Here is a good chart that    #
422 # shows how many IPs the different CIDRs correspond to:               #
423 # http://en.wikipedia.org/wiki/CIDR#Prefix_aggregation                #
424 #                                                                     #
425
426 <cidr
427       # ipv4clone: specifies how many bits of an IP address should be
428       # looked at for clones. The default only looks for clones on a
429       # single IP address of a user. You do not want to set this
430       # extremely low. (Values are 0-32).
431       ipv4clone="32"
432
433       # ipv6clone: specifies how many bits of an IP address should be
434       # looked at for clones. The default only looks for clones on a
435       # single IP address of a user. You do not want to set this
436       # extremely low. (Values are 0-128).
437       ipv6clone="128">
438
439 # This file has all the information about oper classes, types and o:lines.
440 # You *MUST* edit it.
441 <include file="examples/opers.conf.example">
442
443 # This file has all the information about server links and ulined servers.
444 # You *MUST* edit it if you intend to link servers.
445 <include file="examples/links.conf.example">
446
447 #-#-#-#-#-#-#-#-#-#-  MISCELLANEOUS CONFIGURATION  -#-#-#-#-#-#-#-#-#-#
448 #                                                                     #
449
450 # Files block - contains files whose contents are used by the ircd
451 #
452 #   motd - displayed on connect and when a user executes /MOTD
453 # Modules can also define their own files
454 <files motd="examples/motd.txt.example">
455
456 # Example of an executable file include. Note this will be read on rehash,
457 # not when the command is run.
458 #<execfiles motd="wget -O - http://www.example.com/motd.txt">
459
460 #-#-#-#-#-#-#-#-#-#-#-# MAXIMUM CHANNELS -#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
461 #                                                                     #
462
463 <channels
464           # users: Maximum number of channels a user can be in at once.
465           users="20"
466
467           # opers: Maximum number of channels a oper can be in at once.
468           opers="60">
469
470 #-#-#-#-#-#-#-#-#-#-#-#-#-#-# DNS SERVER -#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
471 # If these values are not defined, InspIRCd uses the default DNS resolver
472 # of your system.
473
474 <dns
475      # server: DNS server to use to attempt to resolve IP's to hostnames.
476      # in most cases, you won't need to change this, as inspircd will
477      # automatically detect the nameserver depending on /etc/resolv.conf
478      # (or, on windows, your set nameservers in the registry.)
479      # Note that this must be an IP address and not a hostname, because
480      # there is no resolver to resolve the name until this is defined!
481      #
482      # server="127.0.0.1"
483
484      # timeout: seconds to wait to try to resolve DNS/hostname.
485      timeout="5">
486
487 # An example of using an IPv6 nameserver
488 #<dns server="::1" timeout="5">
489
490 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#  PID FILE  -#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
491 #                                                                     #
492 # Define the path to the PID file here. The PID file can be used to   #
493 # rehash the ircd from the shell or to terminate the ircd from the    #
494 # shell using shell scripts, perl scripts, etc... and to monitor the  #
495 # ircd's state via cron jobs. If this is a relative path, it will be  #
496 # relative to the configuration directory, and if it is not defined,  #
497 # the default of 'inspircd.pid' is used.                              #
498 #                                                                     #
499
500 #<pid file="/path/to/inspircd.pid">
501
502 #-#-#-#-#-#-#-#-#-#-#-#-#- BANLIST LIMITS #-#-#-#-#-#-#-#-#-#-#-#-#-#-#
503 #                                                                     #
504 # Use these tags to customise the ban limits on a per channel basis.  #
505 # The tags are read from top to bottom, and any tag found which       #
506 # matches the channels name applies the banlimit to that channel.     #
507 # It is advisable to put an entry with the channel as '*' at the      #
508 # bottom of the list. If none are specified or no maxbans tag is      #
509 # matched, the banlist size defaults to 64 entries.                   #
510 #                                                                     #
511
512 <banlist chan="#morons" limit="128">
513 <banlist chan="*" limit="69">
514
515 #-#-#-#-#-#-#-#-#-#-#-  DISABLED FEATURES  -#-#-#-#-#-#-#-#-#-#-#-#-#-#
516 #                                                                     #
517 # This tag is optional, and specifies one or more features which are  #
518 # not available to non-operators.                                     #
519 #                                                                     #
520 # For example you may wish to disable NICK and prevent non-opers from #
521 # changing their nicknames.                                           #
522 # Note that any disabled commands take effect only after the user has #
523 # 'registered' (e.g. after the initial USER/NICK/PASS on connection)  #
524 # so for example disabling NICK will not cripple your network.        #
525 #                                                                     #
526 # You can also define if you want to disable any channelmodes         #
527 # or usermodes from your users.                                       #
528 #                                                                     #
529 # `fakenonexistant' will make the ircd pretend that nonexistant       #
530 # commands simply don't exist to non-opers ("no such command").       #
531 #                                                                     #
532 #<disabled commands="TOPIC MODE" usermodes="" chanmodes="" fakenonexistant="yes">
533
534
535 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-  RTFM LINE  -#-#-#-#-#-#-#-#-#-#-#-#-#-#
536 #                                                                     #
537 #   Just remove this... Its here to make you read ALL of the config   #
538 #   file options ;)                                                   #
539
540 <die value="You should probably edit your config *PROPERLY* and try again.">
541
542
543
544 #-#-#-#-#-#-#-#-#-#-#-#-#-  SERVER OPTIONS   -#-#-#-#-#-#-#-#-#-#-#-#-#
545 #                                                                     #
546 #   Settings to define which features are usable on your server.      #
547 #                                                                     #
548
549 <options
550          # prefixquit: What (if anything) a users' quit message
551          # should be prefixed with.
552          prefixquit="Quit: "
553
554          # suffixquit: What (if anything) a users' quit message
555          # should be suffixed with.
556          suffixquit=""
557
558          # prefixpart: What (if anything) a users' part message
559          # should be prefixed with.
560          prefixpart="&quot;"
561          # NOTE: Use "\"" instead of "&quot;" if not using <config format="xml">
562
563          # suffixpart: What (if anything) a users' part message
564          # should be suffixed with.
565          suffixpart="&quot;"
566
567          # fixedquit: Set all users' quit messages to this value.
568          #fixedquit=""
569
570          # fixedpart: Set all users' part messages in all channels
571          # to this value.
572          #fixedpart=""
573
574          # syntaxhints: If enabled, if a user fails to send the correct parameters
575          # for a command, the ircd will give back some help text of what
576          # the correct parameters are.
577          syntaxhints="no"
578
579          # cyclehostsfromuser: If enabled, the source of the mode change for
580          # cyclehosts will be the user who cycled. This can look nicer, but
581          # triggers anti-takeover mechanisms of some obsolete bots.
582          cyclehostsfromuser="no"
583
584          # ircumsgprefix: Use undernet-style message prefixing for NOTICE and
585          # PRIVMSG. If enabled, it will add users' prefix to the line, if not,
586          # it will just message the user normally.
587          ircumsgprefix="no"
588
589          # announcets: If set to yes, when the TimeStamp on a channel changes, all users
590          # in channel will be sent a NOTICE about it.
591          announcets="yes"
592
593          # allowmismatch: Setting this option to yes will allow servers to link even
594          # if they don't have the same VF_OPTCOMMON modules loaded. Setting this to
595          # yes may introduce some desyncs and weirdness.
596          allowmismatch="no"
597
598          # defaultbind: Sets the default for <bind> tags without an address. Choices are
599          # ipv4 or ipv6; if not specified, IPv6 will be used if your system has support,
600          # falling back to IPv4 otherwise.
601          defaultbind="auto"
602
603          # hostintopic: If enabled, channels will show the host of the topicsetter
604          # in the topic. If set to no, it will only show the nick of the topicsetter.
605          hostintopic="yes"
606
607          # pingwarning: If a server does not respond to a ping within x seconds,
608          # it will send a notice to opers with snomask +l informing that the server
609          # is about to ping timeout.
610          pingwarning="15"
611
612          # serverpingfreq: How often pings are sent between servers (in seconds).
613          serverpingfreq="60"
614
615          # defaultmodes: What modes are set on a empty channel when a user
616          # joins it and it is unregistered. This is similar to Asuka's
617          # autochanmodes.
618          defaultmodes="not"
619
620          # xlinemessage: This is the text that is sent to a user when they are
621          # banned from the server.
622          xlinemessage="You're banned! Email irc@example.com with the ERROR line below for help."
623
624          # exemptchanops: exemptions for channel access restrictions based on prefix.
625          exemptchanops="nonick:v flood:o"
626
627          # invitebypassmodes: This allows /invite to bypass other channel modes.
628          # (Such as +k, +j, +l, etc)
629          invitebypassmodes="yes"
630
631          # nosnoticestack: This prevents snotices from 'stacking' and giving you
632          # the message saying '(last message repeated X times)'. Defaults to no.
633          nosnoticestack="no">
634
635
636 #-#-#-#-#-#-#-#-#-#-#-# PERFORMANCE CONFIGURATION #-#-#-#-#-#-#-#-#-#-#
637 #                                                                     #
638
639 <performance
640              # netbuffersize: Size of the buffer used to receive data from clients.
641              # The ircd may only read this amount of text in 1 go at any time.
642              netbuffersize="10240"
643
644              # somaxconn: The maximum number of connections that may be waiting
645              # in the accept queue. This is *NOT* the total maximum number of
646              # connections per server. Some systems may only allow this to be up
647              # to 5, while others (such as linux and *BSD) default to 128.
648              # Setting this above the limit imposed by your OS can have undesired
649              # effects.
650              somaxconn="128"
651
652              # softlimit: This optional feature allows a defined softlimit for
653              # connections. If defined, it sets a soft max connections value.
654              softlimit="12800"
655
656              # clonesonconnect: If this is set to false, we won't check for clones
657              # on initial connection, but only after the DNS check is done.
658              # This can be useful where your main class is more restrictive
659              # than some other class a user can be assigned after DNS lookup is complete.
660              # Turning this option off will make the server spend more time on users we may
661              # potentially not want. Normally this should be neglible, though.
662              # Default value is true
663              clonesonconnect="true"
664
665              # quietbursts: When syncing or splitting from a network, a server
666              # can generate a lot of connect and quit messages to opers with
667              # +C and +Q snomasks. Setting this to yes squelches those messages,
668              # which makes it easier for opers, but degrades the functionality of
669              # bots like BOPM during netsplits.
670              quietbursts="yes">
671
672 #-#-#-#-#-#-#-#-#-#-#-# SECURITY CONFIGURATION  #-#-#-#-#-#-#-#-#-#-#-#
673 #                                                                     #
674
675 <security
676           # allowcoreunload: If this value is set to yes, Opers will be able to
677           # unload core modules (e.g. cmd_privmsg.so).
678           allowcoreunload="no"
679
680           # announceinvites: This option controls which members of the channel
681           # receive an announcement when someone is INVITEd. Available values:
682           # 'none' - don't send invite announcements
683           # 'all' - send invite announcements to all members
684           # 'ops' - send invite announcements to ops and higher ranked users
685           # 'dynamic' - send invite announcements to halfops (if available) and
686           #             higher ranked users. This is the recommended setting.
687           announceinvites="dynamic"
688
689           # hidemodes: If enabled, then the listmodes given will be hidden
690           # from users below halfop. This is not recommended to be set on +b
691           # as it may break some functionality in popular clients such as mIRC.
692           hidemodes="eI"
693
694           # hideulines: If this value is set to yes, U-lined servers will
695           # be hidden from non-opers in /links and /map.
696           hideulines="no"
697
698           # flatlinks: If this value is set to yes, /map and /links will
699           # be flattened when shown to non-opers.
700           flatlinks="no"
701
702           # hidewhois: When defined, the given text will be used in place
703           # of the server a user is on when whoised by a non-oper. Most
704           # networks will want to set this to something like "*.netname.net"
705           # to conceal the actual server a user is on.
706           # Note that enabling this will cause users' idle times to only be
707           # shown when the format /WHOIS <nick> <nick> is used.
708           hidewhois=""
709
710           # hidebans: If this value is set to yes, when a user is banned ([gkz]lined)
711           # only opers will see the ban message when the user is removed
712           # from the server.
713           hidebans="no"
714
715           # hidekills: If defined, replaces who set a /kill with a custom string.
716           hidekills=""
717
718           # hidesplits: If enabled, non-opers will not be able to see which
719           # servers split in a netsplit, they will only be able to see that one
720           # occurred (If their client has netsplit detection).
721           hidesplits="no"
722
723           # maxtargets: Maximum number of targets per command.
724           # (Commands like /notice, /privmsg, /kick, etc)
725           maxtargets="20"
726
727           # customversion: A custom message to be displayed in the comments field
728           # of the VERSION command response. This does not hide the InspIRCd version.
729           customversion=""
730
731           # operspywhois: show opers (users/auspex) the +s channels a user is in. Values:
732           #  splitmsg  Split with an explanatory message
733           #  yes       Split with no explanatory message
734           #  no        Do not show
735           operspywhois="no"
736
737           # runasuser: If this is set, InspIRCd will attempt to switch
738           # to run as this user, which allows binding of ports under 1024.
739           # You should NOT set this unless you are starting as root.
740           # NOT SUPPORTED/NEEDED UNDER WINDOWS.
741           #runasuser=""
742
743           # runasgroup: If this is set, InspIRCd will attempt to switch
744           # to run as this group, which allows binding of ports under 1024.
745           # You should NOT set this unless you are starting as root.
746           # NOT SUPPORTED/NEEDED UNDER WINDOWS.
747           #runasgroup=""
748
749           # restrictbannedusers: If this is set to yes, InspIRCd will not allow users
750           # banned on a channel to change nickname or message channels they are
751           # banned on.
752           restrictbannedusers="yes"
753
754           # genericoper: Setting this value to yes makes all opers on this server
755           # appear as 'is an IRC operator' in their WHOIS, regardless of their
756           # oper type, however oper types are still used internally. This only
757           # affects the display in WHOIS.
758           genericoper="no"
759
760           # userstats: /stats commands that users can run (opers can run all).
761           userstats="Pu">
762
763 #-#-#-#-#-#-#-#-#-#-#-#-# LIMITS CONFIGURATION  #-#-#-#-#-#-#-#-#-#-#-#
764 #                                                                     #
765 # This configuration tag defines the maximum sizes of various types   #
766 # on IRC, such as the maximum length of a channel name, and the       #
767 # maximum length of a channel. Note that with the exception of the    #
768 # identmax value all values given here are the exact values you would #
769 # expect to see on IRC. This contrasts with the older InspIRCd        #
770 # releases where these values would be one character shorter than     #
771 # defined to account for a null terminator on the end of the text.    #
772 #                                                                     #
773 # These values should match network-wide otherwise issues will occur. #
774 #                                                                     #
775 # The highest safe value you can set any of these options to is 500,  #
776 # but it is recommended that you keep them somewhat                   #
777 # near their defaults (or lower).                                     #
778
779 <limits
780         # maxnick: Maximum length of a nickname.
781         maxnick="31"
782
783         # maxchan: Maximum length of a channel name.
784         maxchan="64"
785
786         # maxmodes: Maximum number of mode changes per line.
787         maxmodes="20"
788
789         # maxident: Maximum length of a ident/username.
790         maxident="11"
791
792         # maxquit: Maximum length of a quit message.
793         maxquit="255"
794
795         # maxtopic: Maximum length of a channel topic.
796         maxtopic="307"
797
798         # maxkick: Maximum length of a kick message.
799         maxkick="255"
800
801         # maxgecos: Maximum length of a GECOS (realname).
802         maxgecos="128"
803
804         # maxaway: Maximum length of an away message.
805         maxaway="200">
806
807 #-#-#-#-#-#-#-#-#-#-#-#-# PATHS CONFIGURATION #-#-#-#-#-#-#-#-#-#-#-#-#
808 #                                                                     #
809 # This configuration tag defines the location that InspIRCd stores    #
810 # various types of files such as configuration files, log files and   #
811 # modules. You will probably not need to change these from the values #
812 # set when InspIRCd was built unless you are using a binary package   #
813 # where you do not have the ability to set build time configuration.  #
814 #<path configdir="conf" datadir="data" logdir="logs" moduledir="modules">
815
816 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
817 # Logging
818 # -------
819 #
820 # Logging is covered with the <log> tag, which you may use to change
821 # the behaviour of the logging of the IRCd.
822 #
823 # In InspIRCd as of 1.2, logging is pluggable and very extensible.
824 # Different files can log the same thing, different 'types' of log can
825 # go to different places, and modules can even extend the log tag
826 # to do what they want.
827 #
828 # An example log tag would be:
829 #  <log method="file" type="OPER" level="default" target="opers.log">
830 # which would log all information on /oper (failed and successful) to
831 # a file called opers.log.
832 #
833 # There are many different types which may be used, and modules may
834 # generate their own. A list of useful types:
835 #  - USERS - information relating to user connection and disconnection
836 #  - OPER - succesful and failed oper attempts
837 #  - KILL - kill related messages
838 #  - snomask - server notices (*all* snomasks will be logged)
839 #  - FILTER - messages related to filter matches (m_filter)
840 #  - CONFIG - configuration related messages
841 #  - COMMAND - die and restart messages, and messages related to unknown user types
842 #  - SOCKET - socket engine informational/error messages
843 #  - MODULE - module related messages
844 #  - STARTUP - messages related to starting up the server
845 #
846 # You may also log *everything* by using a type of *, and subtract things out
847 # of that by using -TYPE - for example "* -USERINPUT -USEROUTPUT".
848 #
849 # Useful levels are:
850 #  - default (general messages, including errors)
851 #  - sparse (misc error messages)
852 #  - debug (debug messages)
853 #
854 # Some types only produce output in the debug level, those are:
855 #  - BANCACHE - ban cache debug messages
856 #  - CHANNELS - information relating to joining/creating channels
857 #  - CULLLIST - debug messages related to issues with removing users
858 #  - RESOLVER - DNS related debug messages
859 #  - CONNECTCLASS - Connection class debug messages
860 #  - USERINPUT
861 #  - USEROUTPUT
862 #
863 # The following log tag is highly default and uncustomised. It is recommended you
864 # sort out your own log tags. This is just here so you get some output.
865
866 <log method="file" type="* -USERINPUT -USEROUTPUT" level="default" target="ircd.log">
867
868 #-#-#-#-#-#-#-#-#-#-#-#-#-  WHOWAS OPTIONS   -#-#-#-#-#-#-#-#-#-#-#-#-#
869 #                                                                     #
870 # This tag lets you define the behaviour of the /whowas command of    #
871 # your server.                                                        #
872 #                                                                     #
873
874 <whowas
875         # groupsize: Maximum entries per nick shown when performing
876         # a /whowas nick.
877         groupsize="10"
878
879         # maxgroups: Maximum number of nickgroups that can be added to
880         # the list so that /whowas does not use a lot of resources on
881         # large networks.
882         maxgroups="100000"
883
884         # maxkeep: Maximum time a nick is kept in the whowas list
885         # before being pruned. Time may be specified in seconds,
886         # or in the following format: 1y2w3d4h5m6s. Minimum is
887         # 1 hour.
888         maxkeep="3d">
889
890 #-#-#-#-#-#-#-#-#-#-#-#-#-#-  BAN OPTIONS  -#-#-#-#-#-#-#-#-#-#-#-#-#-#
891 #                                                                     #
892 # The ban tags define nick masks, host masks and ip ranges which are  #
893 # banned from your server. All details in these tags are local to     #
894 # Your server.                                                        #
895 #                                                                     #
896
897 <badip
898        # ipmask: IP range to ban. Wildcards and CIDR can be used.
899        ipmask="192.0.2.69"
900
901        # reason: Reason to display when user is disconnected.
902        reason="No porn here thanks.">
903
904 <badnick
905          # nick: Nick to disallow. Wildcards are supported.
906          nick="ChanServ"
907
908          # reason: Reason to display on /nick.
909          reason="Reserved For Services">
910
911 <badnick nick="NickServ" reason="Reserved For Services">
912 <badnick nick="OperServ" reason="Reserved For Services">
913 <badnick nick="MemoServ" reason="Reserved For Services">
914
915 <badhost
916          # host: ident@hostname to ban.
917          # Wildcards and CIDR (if you specify an IP) can be used.
918          host="*@hundredz.n.hundredz.o.1337.kiddies.example.net"
919
920          # reason: Reason to display when user is disconnected
921          reason="Too many 1337 kiddiots">
922
923 <badhost host="root@*" reason="Don't IRC as root!">
924 <badhost host="*@198.51.100.0/24" reason="This subnet is bad.">
925
926 # exception: Hosts that are exempt from [kgz]lines.
927 <exception
928            # host: ident@hostname to exempt.
929            # Wildcards and CIDR (if you specify an IP) can be used.
930            host="*@ircop.example.com"
931
932            # reason: Reason for exception. Only shown in /stats e
933            reason="Oper's hostname">
934
935 #-#-#-#-#-#-#-#-#-#-#- INSANE BAN OPTIONS  -#-#-#-#-#-#-#-#-#-#-#-#-#-#
936 #                                                                     #
937 # This optional tag allows you to specify how wide a gline, eline,    #
938 # kline, zline or qline can be before it is forbidden from being      #
939 # set. By setting hostmasks="yes", you can allow all G, K, E lines,   #
940 # no matter how many users the ban would cover. This is not           #
941 # recommended! By setting ipmasks="yes", you can allow all Z lines,   #
942 # no matter how many users these cover too. Needless to say we        #
943 # don't recommend you do this, or, set nickmasks="yes", which will    #
944 # allow any qline.                                                    #
945 #                                                                     #
946
947 <insane
948         # hostmasks: Allow bans with insane hostmasks. (over-reaching bans)
949         hostmasks="no"
950
951         # ipmasks: Allow bans with insane ipmasks. (over-reaching bans)
952         ipmasks="no"
953
954         # nickmasks: Allow bans with insane nickmasks. (over-reaching bans)
955         nickmasks="no"
956
957         # trigger: What percentage of users on the network to trigger
958         # specifying an insane ban as. The default is 95.5%, which means
959         # if you have a 1000 user network, a ban will not be allowed if it
960         # will be banning 955 or more users.
961         trigger="95.5">
962
963
964 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#- YAWN  -#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
965 #                                                                     #
966 #   You should already know what to do here :)                        #
967
968 <die value="User error. Insert new user and press any key. (you didn't edit your config properly.)">
969
970 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-# MODULES #-#-#-#-#-#-#-#-#-#-#-#-#-#-#
971 #    ____                _   _____ _     _       ____  _ _   _        #
972 #   |  _ \ ___  __ _  __| | |_   _| |__ (_)___  | __ )(_) |_| |       #
973 #   | |_) / _ \/ _` |/ _` |   | | | '_ \| / __| |  _ \| | __| |       #
974 #   |  _ <  __/ (_| | (_| |   | | | | | | \__ \ | |_) | | |_|_|       #
975 #   |_| \_\___|\__,_|\__,_|   |_| |_| |_|_|___/ |____/|_|\__(_)       #
976 #                                                                     #
977 # Well done, you've reached the end of the basic configuration, your  #
978 # ircd should now start if you want to try it out! (./inspircd start) #
979 #                                                                     #
980 # We now suggest you read and edit modules.conf, as modules are what  #
981 # provide almost all the features of InspIRCd. :)                     #
982 #                                                                     #
983 # The default does nothing -- we include it for simplicity for you.   #
984 <include file="examples/modules.conf.example">
985
986 # Here are some pre-built modules.conf files that closely match the
987 # default configurations of some popular IRCd's. You still may want to
988 # look over them and make sure if everything is correct for you and setup
989 # the proper SSL information.
990 #
991 # *NOTE*: These files have no comments for what the modules do. If you
992 # are interested in that, please read the modules.conf.example. It is also
993 # recommended that you make your own modules file based on modules.conf.example.
994
995 # Settings similar to UnrealIRCd defaults.
996 #<include file="examples/modules/unrealircd.conf.example">
997
998 # Settings similar to Charybdis IRCd defaults.
999 #<include file="examples/modules/charybdis.conf.example">
1000
1001
1002 #########################################################################
1003 #                                                                       #
1004 #                     - InspIRCd Development Team -                     #
1005 #                        http://www.inspircd.org                        #
1006 #                                                                       #
1007 #########################################################################