]> jfr.im git - solanum.git/blame - doc/reference.conf
reference.conf: Extend documentation for max_number in server classes.
[solanum.git] / doc / reference.conf
CommitLineData
212380e3
AC
1/* doc/reference.conf - charybdis Example configuration file
2 *
3 * Copyright (C) 2000-2002 Hybrid Development Team
4 * Copyright (C) 2002-2005 ircd-ratbox development team
5 * Copyright (C) 2005-2006 charybdis development team
6 *
7 * Written by ejb, wcampbel, db, leeh and others
8 *
407b1826 9 * $Id: reference.conf 3582 2007-11-17 21:55:48Z jilles $
212380e3
AC
10 */
11
12/* IMPORTANT NOTES:
13 *
14 * class {} blocks MUST be specified before anything that uses them. That
15 * means they must be defined before auth {} and before connect {}.
16 *
17 * auth {} blocks MUST be specified in order of precedence. The first one
18 * that matches a user will be used. So place spoofs first, then specials,
19 * then general access, then restricted.
20 *
da77b103
JT
21 * privset {} blocks MUST be specified before anything that uses them. That
22 * means they must be defined before operator {}.
23 *
212380e3
AC
24 * Both shell style (#) and C style comments are supported.
25 *
26 * Files may be included by either:
27 * .include "filename"
28 * .include <filename>
29 *
30 * Times/durations are written as:
31 * 12 hours 30 minutes 1 second
32 *
33 * Valid units of time:
34 * month, week, day, hour, minute, second
35 *
36 * Valid units of size:
37 * megabyte/mbyte/mb, kilobyte/kbyte/kb, byte
38 *
39 * Sizes and times may be singular or plural.
40 */
41
42/* Extensions:
43 *
44 * Charybdis contains several extensions that are not enabled by default.
45 * To use them, uncomment the lines below.
46 *
67e6f4df
VY
47 * Channel mode +-A (admin only) -- chm_adminonly.so
48 * Channel mode +-O (oper only) -- chm_operonly.so
49 * Channel mode +-S (ssl only) -- chm_sslonly.so
dbbe26fa
VY
50 * Emulates channel mode +-O (oper only) (+-iI $o) -- chm_operonly_compat.so
51 * Emulates channel mode +-R (quiet unreg) (+-q $~a) -- chm_quietunreg_compat.so
52 * Emulates channel mode +-S (ssl only) (+-b $~z) -- chm_sslonly_compat.so
53 * Restrict channel creation to logged in users -- createauthonly.so
54 * Account bans (+b $a[:mask]) -- extb_account.so
55 * Banned from another channel (+b $j:mask) -- extb_canjoin.so
56 * Other-channel bans (+b $c:mask) -- extb_channel.so
57 * Extended ban (+b $x:mask) -- extb_extgecos.so
58 * Oper bans (+b $o) -- extb_oper.so
59 * Realname (gecos) bans (+b $r:mask) -- extb_realname.so
60 * Server bans (+b $s:mask) -- extb_server.so
61 * SSL bans (+b $z) -- extb_ssl.so
62 * HURT system -- hurt.so
a8560aff
AC
63 * New host mangling (umode +x) -- ip_cloaking_4.0.so
64 * Old host mangling (umode +h) -- ip_cloaking.so
dbbe26fa
VY
65 * Find channel forwards -- m_findforwards.so
66 * /identify support -- m_identify.so
67 * Opers cannot be invisible (umode +i) -- no_oper_invis.so
68 * Far connection notices (snomask +F) -- sno_farconnect.so
bf870ceb 69 * Remote k/d/x line active notices -- sno_globalkline.so
dbbe26fa
VY
70 * Remote oper up notices -- sno_globaloper.so
71 * /whois notifications (snomask +W) -- sno_whois.so
429cf1b7 72 * Oper-override (modehacking only) -- override.so
212380e3 73 */
67e6f4df
VY
74#loadmodule "extensions/chm_adminonly.so";
75#loadmodule "extensions/chm_operonly.so";
76#loadmodule "extensions/chm_sslonly.so";
dbbe26fa
VY
77#loadmodule "extensions/chm_operonly_compat.so";
78#loadmodule "extensions/chm_quietunreg_compat.so";
79#loadmodule "extensions/chm_sslonly_compat.so";
212380e3
AC
80#loadmodule "extensions/createauthonly.so";
81#loadmodule "extensions/extb_account.so";
82#loadmodule "extensions/extb_canjoin.so";
83#loadmodule "extensions/extb_channel.so";
84#loadmodule "extensions/extb_extgecos.so";
85#loadmodule "extensions/extb_oper.so";
86#loadmodule "extensions/extb_realname.so";
87#loadmodule "extensions/extb_server.so";
dbbe26fa 88#loadmodule "extensions/extb_ssl.so";
212380e3 89#loadmodule "extensions/hurt.so";
a8560aff 90#loadmodule "extensions/ip_cloaking_4.0.so";
212380e3
AC
91#loadmodule "extensions/ip_cloaking.so";
92#loadmodule "extensions/m_findforwards.so";
93#loadmodule "extensions/m_identify.so";
94#loadmodule "extensions/no_oper_invis.so";
95#loadmodule "extensions/sno_farconnect.so";
96#loadmodule "extensions/sno_globalkline.so";
97#loadmodule "extensions/sno_globaloper.so";
446d88dd 98#loadmodule "extensions/sno_whois.so";
429cf1b7 99#loadmodule "extensions/override.so";
212380e3
AC
100
101/* serverinfo {}: Contains information about the server. (OLD M:) */
102serverinfo {
103 /* name: the name of our server */
104 name = "hades.arpa";
105
212380e3
AC
106 /* sid: the unique server id of our server. This must be three
107 * characters long. The first character must be a digit [0-9], the
108 * remaining two chars may be letters [A-Z] or digits [0-9].
109 *
cda8e9b8 110 * This parameter must be specified for the server to start.
212380e3
AC
111 */
112 sid = "42X";
113
114 /* description: the description of our server. '[' and ']' may not
115 * be used here for compatibility with older servers.
116 */
117 description = "charybdis test server";
118
119 /* network info: the name and description of the network this server
120 * is on. Shown in the 005 reply and used with serverhiding.
121 */
122 network_name = "MyNet";
123 network_desc = "This is My Network";
124
125 /* hub: allow this server to act as a hub and have multiple servers
126 * connected to it.
127 */
128 hub = no;
129
130 /* vhost: the IP to bind to when we connect outward to ipv4 servers.
131 * This should be an ipv4 IP only.
132 */
133 #vhost = "192.169.0.1";
134
135 /* vhost6: the IP to bind to when we connect outward to ipv6 servers.
136 * This should be an ipv6 IP only.
137 */
138 #vhost6 = "3ffe:80e8:546::2";
c6d72037 139
b8730cbf 140 /* ssl_private_key: our ssl private key */
f1e5a317 141 ssl_private_key = "etc/ssl.key";
b8730cbf
VY
142
143 /* ssl_cert: certificate for our ssl server */
f1e5a317 144 ssl_cert = "etc/ssl.cert";
b8730cbf
VY
145
146 /* ssl_dh_params: DH parameters, generate with openssl dhparam -out dh.pem 1024 */
147 ssl_dh_params = "etc/dh.pem";
148
fa1a7bef
JT
149 /* ssld_count: number of ssld processes you want to start, if you
150 * have a really busy server, using N-1 where N is the number of
151 * cpu/cpu cores you have might be useful. A number greater than one
152 * can also be useful in case of bugs in ssld and because ssld needs
153 * two file descriptors per SSL connection.
b8730cbf
VY
154 */
155 ssld_count = 1;
156
157 /* default max clients: the default maximum number of clients
158 * allowed to connect. This can be changed once ircd has started by
159 * issuing:
160 * /quote set maxclients <limit>
c2d96fcb 161 */
101db4c4 162 default_max_clients = 1024;
b583faf9 163
b225bf93
JT
164 /* nicklen: enforced nickname length (for this server only; must not
165 * be longer than the maximum length set while building).
166 */
b583faf9 167 nicklen = 30;
212380e3
AC
168};
169
170/* admin {}: contains admin information about the server. (OLD A:) */
171admin {
172 name = "Smurf target";
173 description = "Main Server Administrator";
174 email = "<syn@packets.r.us>";
175};
176
177/* log {}: contains information about logfiles. */
178log {
179 /* logfiles: the logfiles to use for specific activity. if these
180 * paths are defined, then ircd will log to them, otherwise it wont.
181 *
182 * The confs are, in order:
183 * - userlog: user exits
184 * - fuserlog: failed user connections
185 * - operlog: /oper usage
186 * - foperlog: failed /oper usage
187 * - serverlog: server connects/disconnects
212380e3
AC
188 * - klinelog: klines, etc
189 * - killlog: kills
190 * - operspylog: operspy usage
191 * - ioerrorlog: IO errors
192 */
193 fname_userlog = "logs/userlog";
194 #fname_fuserlog = "logs/fuserlog";
195 fname_operlog = "logs/operlog";
196 #fname_foperlog = "logs/foperlog";
197 fname_serverlog = "logs/serverlog";
212380e3
AC
198 #fname_klinelog = "logs/klinelog";
199 fname_killlog = "logs/killlog";
200 fname_operspylog = "logs/operspylog";
201 #fname_ioerrorlog = "logs/ioerror";
202};
203
204/* class {}: contain information about classes for users (OLD Y:) */
205class "users" {
206 /* class name must go above */
207
208 /* ping time: how often a client must reply to a PING from the
209 * server before they are dropped.
210 */
211 ping_time = 2 minutes;
212
da1b891f
KB
213 /* number per ident: the number of users per user@host networkwide
214 * allowed to connect. Unidented connections are classified as
215 * the same ident.
216 */
217 number_per_ident = 2;
212380e3
AC
218
219 /* number per ip: the number of local users per host allowed */
220 number_per_ip = 3;
221
da1b891f
KB
222 /* number per ip global: the number of network wide connections
223 * per host allowed for a user, including connections to the
224 * local server.
225 */
226 number_per_ip_global = 5;
212380e3 227
bc7c44dc
JT
228 /* cidr_ipv4_bitlen: Limits numbers of connections from a subnet size
229 */
230 cidr_ipv4_bitlen = 24;
231
232 /* cidr_ipv6_bitlen: Limits numbers of connections from a subnet size
212380e3
AC
233 * the following example makes the subnet /64 this is useful
234 * for IPv6 connections in particular
212380e3 235 */
bc7c44dc 236 cidr_ipv6_bitlen = 64;
212380e3
AC
237
238 /* number_per_cidr: Number of connections to allow from a subnet of the
bc7c44dc
JT
239 * size given in cidr_ipv4_bitlen/cidr_ipv6_bitlen.
240 * 4 seems to be a good default to me.
212380e3
AC
241 */
242 number_per_cidr = 4;
243
244 /* max number: the maximum number of users allowed in this class */
245 max_number = 100;
246
247 /* sendq: the amount of data allowed in a clients queue before
248 * they are dropped.
249 */
250 sendq = 100 kbytes;
251};
252
253class "restricted" {
254 ping_time = 1 minute 30 seconds;
255 number_per_ip = 1;
256 max_number = 100;
257 sendq = 60kb;
258};
259
260class "opers" {
261 ping_time = 5 minutes;
262 number_per_ip = 10;
263 max_number = 100;
264 sendq = 100kbytes;
265};
266
267class "server" {
268 ping_time = 5 minutes;
269
270 /* connectfreq: only used in server classes. specifies the delay
271 * between autoconnecting to servers.
272 */
273 connectfreq = 5 minutes;
274
2b121c81
JT
275 /* max number: the amount of servers to autoconnect to. if the number
276 * of servers in the class is or exceeds this, no more servers in the
277 * class are autoconnected. oper initiated connects are unaffected.
278 * this should usually be set to either 0 or 1. (autoconnecting from
279 * hubs to leaves may cause leaves to function as hubs by having
280 * multiple servers connected to them.)
281 */
212380e3
AC
282 max_number = 1;
283
284 /* sendq: servers need a higher sendq as they are sent more data */
285 sendq=2 megabytes;
286};
287
288/* listen {}: contain information about the ports ircd listens on (OLD P:) */
289listen {
02270e96
AC
290 /* defer_accept: wait for clients to send IRC handshake data before
291 * accepting them. if you intend to use software which depends on the
292 * server replying first, such as BOPM, you should disable this feature.
293 * otherwise, you probably want to leave it on.
294 */
295 defer_accept = yes;
296
212380e3
AC
297 /* port: the specific port to listen on. if no host is specified
298 * before, it will listen on all available IPs.
299 *
b8730cbf
VY
300 * sslport: the specific port to listen ssl connections on. if no
301 * host is specified before, it will listen on all available IPs.
302 *
212380e3
AC
303 * ports are seperated via a comma, a range may be specified using ".."
304 */
305
306 /* port: listen on all available IPs, ports 5000 and 6665 to 6669 */
307 port = 5000, 6665 .. 6669;
b8730cbf
VY
308
309 /* sslport: listen for ssl connections on all available IPs, port 9999 */
310 sslport = 9999;
212380e3
AC
311
312 /* host: set a specific IP/host the ports after the line will listen
313 * on. This may be ipv4 or ipv6.
314 */
315 host = "1.2.3.4";
316 port = 7000, 7001;
b8730cbf 317 sslport = 9000, 9001;
212380e3
AC
318
319 host = "3ffe:1234:a:b:c::d";
da1b891f
KB
320 port = 7002;
321 sslport = 9002;
212380e3
AC
322};
323
324/* auth {}: allow users to connect to the ircd (OLD I:) */
325auth {
b0dc8e03
JT
326 /* user: the user@host allowed to connect. Multiple IPv4/IPv6 user
327 * lines are permitted per auth block. This is matched against the
328 * hostname and IP address (using :: shortening for IPv6 and
329 * prepending a 0 if it starts with a colon) and can also use CIDR
330 * masks.
212380e3
AC
331 */
332 user = "*@172.16.0.0/12";
333 user = "*test@123D:B567:*";
334
335 /* password: an optional password that is required to use this block.
336 * By default this is not encrypted, specify the flag "encrypted" in
337 * flags = ...; below if it is.
338 */
339 password = "letmein";
340
341 /* spoof: fake the users user@host to be be this. You may either
342 * specify a host or a user@host to spoof to. This is free-form,
343 * just do everyone a favour and dont abuse it. (OLD I: = flag)
344 */
da1b891f 345 spoof = "I.still.hate.packets";
212380e3
AC
346
347 /* Possible flags in auth:
348 *
349 * encrypted | password is encrypted with mkpasswd
350 * spoof_notice | give a notice when spoofing hosts
351 * exceed_limit (old > flag) | allow user to exceed class user limits
352 * kline_exempt (old ^ flag) | exempt this user from k/g/xlines&dnsbls
353 * dnsbl_exempt | exempt this user from dnsbls
212380e3
AC
354 * spambot_exempt | exempt this user from spambot checks
355 * shide_exempt | exempt this user from serverhiding
356 * jupe_exempt | exempt this user from generating
357 * warnings joining juped channels
358 * resv_exempt | exempt this user from resvs
da1b891f
KB
359 * flood_exempt | exempt this user from flood limits
360 * USE WITH CAUTION.
212380e3
AC
361 * no_tilde (old - flag) | don't prefix ~ to username if no ident
362 * need_ident (old + flag) | require ident for user in this class
b1594414 363 * need_ssl | require SSL/TLS for user in this class
212380e3
AC
364 * need_sasl | require SASL id for user in this class
365 */
366 flags = kline_exempt, exceed_limit;
367
368 /* class: the class the user is placed in */
369 class = "opers";
370};
371
372auth {
373 /* redirect: the server and port to redirect a user to. A user does
374 * not have to obey the redirection, the ircd just suggests to them
375 * an alternative server.
376 */
377 redirserv = "irc.some.domain";
378 redirport = 6667;
379
380 user = "*.some.domain";
381
382 /* class: a class is required even though it is not used */
383 class = "users";
384};
385
386auth {
387 user = "*@*";
388 class = "users";
212380e3
AC
389};
390
da77b103
JT
391/* privset{}: defines operator privilege sets. */
392privset "local_op" {
393 /* privs: controls the activities and commands an oper is
394 * allowed to do on the server
395 *
396 * Available options:
397 *
398 * oper:local_kill: allows local users to be /KILL'd
399 * oper:global_kill: allows local and remote users to be /KILL'd
3eae266c 400 * oper:routing: allows remote SQUIT and CONNECT
da77b103
JT
401 * oper:kline: allows KLINE and DLINE
402 * oper:unkline: allows UNKLINE and UNDLINE
403 * snomask:nick_changes: allows oper to see nickchanges via snomask +n
404 * oper:rehash: allows oper to REHASH config
405 * oper:die: allows DIE and RESTART
406 * oper:admin: gives admin privileges. admins
407 * may (un)load modules and see various
408 * additional information.
409 * oper:hidden_admin: gives admin privileges except
410 * will not have the admin lines in
411 * whois.
412 * oper:xline: allows use of /quote xline/unxline
413 * oper:resv: allows /quote resv/unresv and cmode +LP
414 * oper:operwall: allows the oper to send/receive operwalls
415 * oper:spy: allows 'operspy' features to see through +s
416 * channels etc. see /quote help operspy
417 * oper:hidden: hides the oper from /stats p
418 * oper:remoteban: allows remote kline etc
419 * oper:mass_notice: allows sending wallops and mass notices
420 */
421 privs = oper:local_kill, oper:operwall;
422};
423
424privset "server_bot" {
425 /* extends: a privset to inherit in this privset */
426 extends = "local_op";
d9e7ca49 427 privs = oper:kline, oper:remoteban, snomask:nick_changes;
da77b103
JT
428};
429
430privset "global_op" {
431 extends = "local_op";
432 privs = oper:global_kill, oper:routing, oper:kline, oper:unkline, oper:xline,
433 oper:resv, oper:mass_notice, oper:remoteban;
434};
435
436privset "admin" {
437 extends = "global_op";
438 privs = oper:admin, oper:die, oper:rehash, oper:spy;
439};
440
441/* operator {}: defines ircd operators. (OLD O:) */
212380e3
AC
442operator "god" {
443 /* name: the name of the oper must go above */
444
445 /* user: the user@host required for this operator. CIDR *is*
446 * supported now. auth{} spoofs work here, other spoofs do not.
da1b891f 447 * multiple user="" lines are supported.
212380e3
AC
448 */
449 user = "*god@*";
450 user = "*@127.0.0.1";
451
452 /* password: the password required to oper. Unless ~encrypted is
453 * contained in flags = ...; this will need to be encrypted using
454 * mkpasswd, MD5 is supported
455 */
456 password = "etcnjl8juSU1E";
457
458 /* rsa key: the public key for this oper when using Challenge.
459 * A password should not be defined when this is used, see
460 * doc/challenge.txt for more information.
461 */
462 #rsa_public_key_file = "/usr/local/ircd/etc/oper.pub";
463
ff31db84
AC
464 /* fingerprint: if specified, the oper's client certificate
465 * fingerprint will be checked against the specified fingerprint
466 * below.
467 */
468 #fingerprint = "c77106576abf7f9f90cca0f63874a60f2e40a64b";
469
212380e3
AC
470 /* umodes: the specific umodes this oper gets when they oper.
471 * If this is specified an oper will not be given oper_umodes
472 * These are described above oper_only_umodes in general {};
473 */
474 #umodes = locops, servnotice, operwall, wallop;
475
476 /* snomask: specific server notice mask on oper up.
477 * If this is specified an oper will not be given oper_snomask.
478 */
479 snomask = "+Zbfkrsuy";
480
da77b103
JT
481 /* flags: misc options for the operator. You may prefix an option
482 * with ~ to disable it, e.g. ~encrypted.
212380e3 483 *
da77b103 484 * Default flags are encrypted.
212380e3
AC
485 *
486 * Available options:
487 *
488 * encrypted: the password above is encrypted [DEFAULT]
b1594414 489 * need_ssl: must be using SSL/TLS to oper up
da1b891f 490 */
da77b103
JT
491 flags = encrypted;
492
493 /* privset: privileges set to grant */
494 privset = "admin";
212380e3
AC
495};
496
497/* connect {}: controls servers we connect to (OLD C:, N:, H:, L:) */
498connect "irc.uplink.com" {
499 /* the name must go above */
500
501 /* host: the host or IP to connect to. If a hostname is used it
502 * must match the reverse dns of the server.
503 */
504 host = "192.168.0.1";
505
506 /* vhost: the host or IP to bind to for this connection. If this
507 * is not specified, the default vhost (in serverinfo {}) is used.
508 */
509 #vhost = "192.168.0.50";
510
511 /* passwords: the passwords we send (OLD C:) and accept (OLD N:).
512 * The remote server will have these passwords reversed.
513 */
514 send_password = "password";
515 accept_password = "anotherpassword";
516
ff0cc1e6
AC
517 /* fingerprint: if specified, the server's client certificate
518 * fingerprint will be checked against the specified fingerprint
519 * below.
520 */
521 #fingerprint = "c77106576abf7f9f90cca0f63874a60f2e40a64b";
522
212380e3
AC
523 /* port: the port to connect to this server on */
524 port = 6666;
525
526 /* hub mask: the mask of servers that this server may hub. Multiple
527 * entries are permitted
528 */
529 hub_mask = "*";
530
531 /* leaf mask: the mask of servers this server may not hub. Multiple
532 * entries are permitted. Useful for forbidding EU -> US -> EU routes.
533 */
534 #leaf_mask = "*.uk";
535
536 /* class: the class this server is in */
537 class = "server";
538
539 /* flags: controls special options for this server
540 * encrypted - marks the accept_password as being crypt()'d
541 * autoconn - automatically connect to this server
542 * compressed - compress traffic via ziplinks
543 * topicburst - burst topics between servers
b8730cbf 544 * ssl - ssl/tls encrypted server connections
212380e3
AC
545 */
546 flags = compressed, topicburst;
547};
548
549connect "ipv6.some.server" {
b0dc8e03
JT
550 /* Hosts that are IPv6 addresses must be in :: shortened form
551 * if applicable. Addresses starting with a colon get an extra
552 * zero prepended, for example: 0::1
553 */
da1b891f
KB
554 host = "3ffd:dead:beef::1";
555 send_password = "password";
556 accept_password = "password";
557 port = 6666;
212380e3
AC
558
559 /* aftype: controls whether the connection uses "ipv4" or "ipv6".
560 * Default is ipv4.
561 */
562 aftype = ipv6;
da1b891f 563 class = "server";
212380e3
AC
564};
565
b8730cbf
VY
566connect "ssl.uplink.com" {
567 /* Example of ssl server-to-server connection, ssl flag doesn't need
568 * compressed flag, 'cause it uses own compression
569 */
570 host = "192.168.0.1";
571 send_password = "password";
572 accept_password = "anotherpassword";
573 port = 9999;
574 hub_mask = "*";
575 class = "server";
576 flags = ssl, topicburst;
577};
578
212380e3
AC
579/* cluster {}; servers that we propagate things to automatically.
580 * NOTE: This does NOT grant them privileges to apply anything locally,
581 * you must add a seperate shared block for that. Clustering will
582 * only be done for actions by LOCAL opers, that arent directed
583 * remotely.
584 */
585cluster {
586 /* name: the server to share with, this can be a wildcard and may be
587 * stacked.
588 */
589 /* flags: list of what to share, all the name lines above this (up
590 * until another flags entry) will receive these flags.
591 *
592 * kline - share perm klines
593 * tkline - share temp klines
594 * unkline - share unklines
595 * locops - share locops
596 * xline - share perm xlines
597 * txline - share temp xlines
598 * unxline - share unxlines
599 * resv - share perm resvs
600 * tresv - share temp resvs
601 * unresv - share unresvs
602 * all - share all of the above
603 */
604
605 /* share klines/unklines/xlines with *.lan */
606 name = "*.lan";
607 flags = kline, unkline, xline;
608
609 /* share locops with irc.ircd-ratbox.org and ircd.ircd-ratbox.org */
610 name = "irc.ircd-ratbox.org";
611 name = "ircd.ircd-ratbox.org";
612 flags = locops;
613};
614
615/* service{}: privileged servers (services). These servers have extra
616 * privileges such as setting login names on users and introducing clients
617 * with umode +S (unkickable, hide channels, etc). This does not allow them
618 * to set bans, you need a separate shared{} for that.
619 * Do not place normal servers here.
620 * There may be only one service{} block.
621 */
622service {
623 /* name: the server name. These may be stacked. */
624 name = "services.int";
625};
626
627/* shared {}: users that are allowed to place remote bans on our server.
628 * NOTE: These are ordered top down. The first one the user@host and server
629 * matches will be used. Their access will then be decided on that
630 * block and will not fall back to another block that matches.
631 */
632shared {
633 /* oper: the user@host and server the user must be on to set klines.
634 * The first field must be a user@host, the second field is an
635 * optional server. These may be stacked.
636 */
637 /* flags: list of what to allow them to place, all the oper lines
638 * above this (up until another flags entry) will receive these
639 * flags. This *must* be present.
640 *
641 * kline - allow setting perm/temp klines
642 * tkline - allow setting temp klines
643 * unkline - allow removing klines
644 * xline - allow setting perm/temp xlines
645 * txline - allow setting temp xlines
646 * unxline - allow removing xlines
647 * resv - allow setting perm/temp resvs
648 * tresv - allow setting temp resvs
649 * unresv - allow removing xlines
650 * all - allow oper/server to do all of above.
651 * locops - allow locops - only used for servers who cluster
da1b891f 652 * rehash - allow rehashing
d8d2cb0a
JT
653 * dline - allow setting perm/temp dlines
654 * tdline - allow setting temp dlines
655 * undline - allow removing dlines
212380e3
AC
656 * none - disallow everything
657 */
658
659 /* allow flame@*.leeh.co.uk on server irc.ircd-ratbox.org and
660 * allow leeh@*.leeh.co.uk on server ircd.ircd-ratbox.org to kline
661 */
662 oper = "flame@*.leeh.co.uk", "irc.ircd-ratbox.org";
663 oper = "leeh@*.leeh.co.uk", "ircd.ircd-ratbox.org";
664 flags = kline;
665
666 /* you may forbid certain opers/servers from doing anything */
667 oper = "irc@vanity.oper", "*";
668 oper = "*@*", "irc.vanity.server";
669 oper = "irc@another.vanity.oper", "bigger.vanity.server";
670 flags = none;
671
672 /* or allow everyone to place temp klines */
673 oper = "*@*";
674 flags = tkline;
675};
676
b808adf9 677/* exempt {}: IPs that are exempt from Dlines and rejectcache. (OLD d:) */
212380e3
AC
678exempt {
679 ip = "192.168.0.0/16";
680
681 /* these may be stacked */
682 ip = "127.0.0.1";
683 ip = "10.0.0.0/8";
684};
685
686/* The channel block contains options pertaining to channels */
687channel {
688 /* invex: Enable/disable channel mode +I, a n!u@h list of masks
689 * that can join a +i channel without an invite.
690 */
691 use_invex = yes;
692
693 /* except: Enable/disable channel mode +e, a n!u@h list of masks
694 * that can join a channel through a ban (+b).
695 */
696 use_except = yes;
697
2da6f6eb
JT
698 /* forward: Enable/disable channel mode +f, a channel to forward
699 * users to if they can't join because of +i etc. Also enables ban
700 * forwarding, <mask>$<channel>.
701 */
702 use_forward = yes;
703
212380e3
AC
704 /* knock: Allows users to request an invite to a channel that
705 * is locked somehow (+ikl). If the channel is +p or you are banned
706 * the knock will not be sent.
707 */
708 use_knock = yes;
709
212380e3
AC
710 /* knock delay: The amount of time a user must wait between issuing
711 * the knock command.
712 */
713 knock_delay = 5 minutes;
714
715 /* knock channel delay: How often a knock to any specific channel
716 * is permitted, regardless of the user sending the knock.
717 */
718 knock_delay_channel = 1 minute;
719
720 /* max chans: The maximum number of channels a user can join/be on. */
721 max_chans_per_user = 15;
722
da1b891f
KB
723 /* max bans: maximum number of +b/e/I/q modes in a channel */
724 max_bans = 100;
212380e3 725
da1b891f
KB
726 /* max bans: maximum number of +b/e/I/q modes in a +L channel */
727 max_bans_large = 500;
212380e3 728
da1b891f 729 /* splitcode: split users, split servers and either no join on split
212380e3
AC
730 * or no create on split must be enabled for split checking.
731 * splitmode will be entered on either split users or split servers
732 * dropping below the limit.
733 *
734 * you may force splitmode to be permanent by /quote set splitmode on
735 */
736
737 /* split users: when the usercount is lower than this level, consider
738 * ourselves split. this must be set for automatic splitmode
739 */
740 default_split_user_count = 0;
741
742 /* split servers: when the amount of servers that have acknowledged
743 * theyve finished bursting is lower than this, consider ourselves
744 * split. this must be set for automatic splitmode
745 */
746 default_split_server_count = 0;
747
748 /* split: no create: disallow users creating channels on split */
749 no_create_on_split = no;
750
751 /* split: no join: disallow users joining channels at all on a split */
752 no_join_on_split = no;
753
754 /* burst topicwho: when bursting topics, also burst the topic setter */
755 burst_topicwho = yes;
756
757 /* kick on split riding: kick users riding splits to join +i or +k
758 * channels. more precisely, if a bursting server sends an SJOIN
759 * for a channel with a lower TS with either a +i mode or a +k
760 * mode with a different key, kick all local users.
761 *
762 * note: this does not take +r, +b, +e and +I into account.
212380e3
AC
763 */
764 kick_on_split_riding = no;
6865c0b0
JT
765
766 /* only ascii channels: disable local users joining channels
767 * containing characters outside the range 33-126 (non-printable
768 * or non-ASCII).
769 */
770 only_ascii_channels = no;
da1b891f 771
c2c25552
JT
772 /* resv_forcepart: force any local users to part a channel
773 * when a RESV is issued.
774 */
775 resv_forcepart = yes;
717238d2
JT
776
777 /* channel target change: restrict how many channels users can
778 * message per unit of time. IRC operators, channel operators and
779 * voiced users are exempt.
780 */
781 channel_target_change = yes;
341f971e
SB
782
783 /* disable local channels: if yes, then local channels will not be
784 * supported.
785 */
786 disable_local_channels = no;
212380e3
AC
787};
788
789
790/* The serverhide block contains the options regarding serverhiding */
791serverhide {
4acf2281
JT
792 /* flatten links: this option will hide various routing information
793 * and make all servers in /links appear that they are linked to
794 * this server.
212380e3
AC
795 */
796 flatten_links = no;
797
994544c2
JT
798 /* links delay: how long to wait before showing splits or new
799 * servers in a flattened /links output.
212380e3
AC
800 */
801 links_delay = 5 minutes;
802
4acf2281
JT
803 /* hidden: hide this server from a /links output on servers with
804 * flatten_links enabled. this allows hub servers to be hidden etc.
212380e3 805 */
da1b891f 806 hidden = no;
212380e3
AC
807
808 /* disable hidden: prevent servers hiding themselves from a
809 * /links ouput.
810 */
811 disable_hidden = no;
812};
813
814/* These are the blacklist settings.
815 * You can have multiple combinations of host and rejection reasons.
b2324470 816 * They are used in pairs of one host/rejection reason.
212380e3
AC
817 *
818 * These settings should be adequate for most networks, and are (presently)
765d839d 819 * required for use on StaticBox.
212380e3
AC
820 *
821 * Word to the wise: Do not use blacklists like SPEWS for blocking IRC
822 * connections.
823 *
92fb5c31
AC
824 * As of charybdis 2.2, you can do some keyword substitution on the rejection
825 * reason. The available keyword substitutions are:
826 *
827 * ${ip} - the user's IP
828 * ${host} - the user's canonical hostname
829 * ${dnsbl-host} - the dnsbl hostname the lookup was done against
830 * ${nick} - the user's nickname
831 * ${network-name} - the name of the network
832 *
0a1e77c2
EM
833 * As of charybdis 3.4, a type parameter is supported, which specifies the
834 * address families the blacklist supports. IPv4 and IPv6 are supported.
835 * IPv4 is currently the default as few blacklists support IPv6 operation
836 * as of this writing.
837 *
57b8cb0f 838 * Note: AHBL (the providers of the below *.ahbl.org BLs) request that they be
212380e3
AC
839 * contacted, via email, at admins@2mbit.com before using these BLs.
840 * See <http://www.ahbl.org/services.php> for more information.
841 */
57b8cb0f 842blacklist {
40e92fca 843 host = "rbl.efnetrbl.org";
0a1e77c2 844 type = ipv4;
40e92fca 845 reject_reason = "${nick}, your IP (${ip}) is listed in EFnet's RBL. For assistance, see http://efnetrbl.org/?i=${ip}";
57b8cb0f 846
212380e3 847# host = "ircbl.ahbl.org";
0a1e77c2 848# type = ipv4;
92fb5c31 849# reject_reason = "${nick}, your IP (${ip}) is listed in ${dnsbl-host} for having an open proxy. In order to protect ${network-name} from abuse, we are not allowing connections with open proxies to connect.";
212380e3
AC
850#
851# host = "tor.ahbl.org";
0a1e77c2 852# type = ipv4;
92fb5c31 853# reject_reason = "${nick}, your IP (${ip}) is listed as a TOR exit node. In order to protect ${network-name} from tor-based abuse, we are not allowing TOR exit nodes to connect to our network.";
0a1e77c2
EM
854#
855 /* Example of a blacklist that supports both IPv4 and IPv6 */
856# host = "foobl.blacklist.invalid";
857# type = ipv4, ipv6;
858# reject_reason = "${nick}, your IP (${ip}) is listed in ${dnsbl-host} for some reason. In order to protect ${network-name} from abuse, we are not allowing connections listed in ${dnsbl-host} to connect";
57b8cb0f 859};
212380e3
AC
860
861/*
862 * Alias blocks allow you to define custom commands. (Old m_sshortcut.c)
863 * They send PRIVMSG to the given target. A real command takes
864 * precedence above an alias.
865 */
866alias "NickServ" {
867 /* the name must go above */
868
869 /* target: the target nick (must be a network service) or
870 * user@server (cannot be this server, only opers can use
871 * user starting with "opers" reliably, interpreted on the target
872 * server only so you may need to use nick@server instead)
873 */
874 target = "NickServ";
875};
876
877alias "ChanServ" {
878 target = "ChanServ";
879};
880
881alias "OperServ" {
882 target = "OperServ";
883};
884
885alias "MemoServ" {
886 target = "MemoServ";
887};
888
889alias "NS" {
890 target = "NickServ";
891};
892
893alias "CS" {
894 target = "ChanServ";
895};
896
897alias "OS" {
898 target = "OperServ";
899};
900
901alias "MS" {
902 target = "MemoServ";
903};
904
905/* The general block contains many of the options that were once compiled
906 * in options in config.h. The general block is read at start time.
907 */
908general {
909 /* hide error messages: defines whether error messages from
922aa826
JT
910 * servers that are not deemed fully safe are hidden or not.
911 * These can sometimes contain IPs and can have an adverse
912 * effect on server ip hiding. Set to:
212380e3
AC
913 * yes: hide from opers and admin
914 * opers: hide from opers only
915 * no: do not hide error messages
922aa826 916 * Admins on other servers count as opers.
212380e3
AC
917 */
918 hide_error_messages = opers;
919
920 /* hide spoof ips: hide the real ips of auth{} spoofed users
921 * If disabled, local opers can see them.
922 * Dynamic spoofs (e.g. set by services) are unaffected by this;
923 * any oper (local and remote) can see the real ip.
924 * Warning: for whowas, this is checked when the client exits,
925 * not when the IP is shown.
926 */
927 hide_spoof_ips = yes;
928
929 /* default umodes: umodes to set upon connection
930 * If you have enabled the ip_cloaking extension, and you wish for
a8560aff 931 * incoming clients to be set +h or +x upon connection, add +h or +x to the umode
212380e3
AC
932 * string below.
933 */
934 default_umodes = "+i";
935
936 /* default operstring: defines the default oper response
937 * in /whois queries, eg "is an IRC Operator".
938 * After startup use /quote set operstring to change.
939 */
940 default_operstring = "is an IRC Operator";
941
942 /* default adminstring: defines the default admin response
943 * in /whois queries, eg "is a Server Administrator".
944 * After startup use /quote set adminstring to change.
945 */
946 default_adminstring = "is a Server Administrator";
947
948 /* servicestring: defines the response for opered services (+S)
949 * in /whois queries, eg "is a Network Service".
950 * This is updated on rehash.
951 */
952 servicestring = "is a Network Service";
953
954 /* disable fake channels: disable local users joining fake versions
955 * of channels, eg #foo^B^B. Disables bold, mirc colour, reverse,
956 * underline and hard space. (ASCII 2, 3, 22, 31, 160 respectively).
957 */
958 disable_fake_channels = no;
959
da1b891f
KB
960 /* tkline_expire_notices: give a notice to opers when a tkline
961 * expires
962 */
963 tkline_expire_notices = no;
212380e3
AC
964
965 /* floodcount: the default value of floodcount that is configurable
966 * via /quote set floodcount. This is the amount of lines a user
967 * may send to any other user/channel in one second.
968 */
da1b891f 969 default_floodcount = 10;
212380e3
AC
970
971 /* failed oper notice: send a notice to all opers on the server when
972 * someone tries to OPER and uses the wrong password, host or ident.
973 */
974 failed_oper_notice = yes;
975
976 /* dots in ident: the amount of '.' characters permitted in an ident
977 * reply before the user is rejected.
978 */
979 dots_in_ident=2;
980
da1b891f 981 /* min nonwildcard: the minimum non wildcard characters in k/d/g lines
212380e3
AC
982 * placed via the server. klines hand placed are exempt from limits.
983 * wildcard chars: '.' '*' '?' '@'
984 */
985 min_nonwildcard = 4;
986
987 /* min nonwildcard simple: the minimum non wildcard characters in
988 * xlines/resvs placed via the server.
989 * wildcard chars: '*' '?'
990 */
991 min_nonwildcard_simple = 3;
992
da1b891f
KB
993 /* max accept: maximum allowed /accept's for +g usermode */
994 max_accept = 20;
212380e3
AC
995
996 /* max monitor: the maximum amount of nicknames a client may have in
997 * their monitor (server-side notify) list.
998 */
999 max_monitor = 100;
1000
1001 /* nick flood: enable the nickflood control code */
1002 anti_nick_flood = yes;
1003
1004 /* nick flood: the nick changes allowed in the specified period */
1005 max_nick_time = 20 seconds;
1006 max_nick_changes = 5;
1007
da1b891f 1008 /* anti spam time: the minimum time a user must be connected before
212380e3
AC
1009 * custom quit messages are allowed.
1010 */
da1b891f 1011 anti_spam_exit_message_time = 5 minutes;
212380e3
AC
1012
1013 /* ts delta: the time delta allowed between server clocks before
1014 * a warning is given, or before the link is dropped. all servers
1015 * should run ntpdate/rdate to keep clocks in sync
1016 */
1017 ts_warn_delta = 30 seconds;
1018 ts_max_delta = 5 minutes;
1019
1020 /* client exit: prepend a users quit message with "Client exit: " */
1021 client_exit = yes;
1022
1023 /* collision fnc: change user's nick to their UID instead of
1024 * killing them, if possible. This setting only applies to nick
1025 * collisions detected on this server. Only enable this if
1026 * all servers on the network allow remote nicks to start with
1027 * a digit.
1028 */
1029 collision_fnc = yes;
1030
330692a1
KB
1031 /* resv fnc: change a user's nick to a nick they have recently used
1032 * (or their UID, if no such nick can be found) when a resv matching
1033 * them is set by services. Only enable this if all servers on the
1034 * network allow remote nicks to start with a digit.
1035 */
1036 resv_fnc = yes;
1037
212380e3
AC
1038 /* global snotices: send out certain snotices (most +b, +f, +y,
1039 * some +s) to other servers via ENCAP SNOTE. Received SNOTEs are
1040 * displayed unconditionally.
1041 */
1042 global_snotices = yes;
1043
1044 /* dline reason: show the user the dline reason when they connect
1045 * and are dlined.
1046 */
1047 dline_with_reason = yes;
1048
1049 /* kline delay: delay the checking of klines until a specified time.
1050 * Useful if large kline lists are applied often to prevent the
1051 * server eating CPU.
1052 */
1053 kline_delay = 0 seconds;
1054
170703fe 1055 /* kline reason: show the user the reason why they are k/dlined
212380e3
AC
1056 * on exit. may give away who set k/dline when set via tcm.
1057 */
1058 kline_with_reason = yes;
1059
1060 /* kline reason: make the users quit message on channels this
1061 * reason instead of the oper's reason.
1062 */
1063 kline_reason = "Connection closed";
1064
1065 /* identify to services via server password
1066 * if auth{} block had no password but the user specified a
1067 * server password anyway, send a PRIVMSG to <identify_service>
1068 * with as text <identify_command> <password>.
1069 */
1070 identify_service = "NickServ@services.int";
1071 identify_command = "IDENTIFY";
1072
1073 /* non redundant klines: flag and ignore redundant klines */
1074 non_redundant_klines = yes;
1075
1076 /* warn no nline: warn opers about servers that try to connect but
1077 * we dont have a connect {} block for. Twits with misconfigured
1078 * servers can get really annoying with this enabled.
1079 */
1080 warn_no_nline = yes;
1081
dca9e552 1082 /* use propagated bans: KLINE, XLINE and RESV set fully propagated bans.
3cbbfb25
JT
1083 * That means the bans are part of the netburst and restarted/split
1084 * servers will get them, but they will not apply to 3.2 and older
1085 * servers at all.
1702b694
JT
1086 */
1087 use_propagated_bans = yes;
1088
212380e3
AC
1089 /* stats e disabled: disable stats e. useful if server ips are
1090 * exempted and you dont want them listing on irc.
1091 */
1092 stats_e_disabled = no;
1093
1094 /* stats c oper only: make stats c (connect {}) oper only */
1095 stats_c_oper_only=no;
1096
1097 /* stats h oper only: make stats h (hub_mask/leaf_mask) oper only */
1098 stats_h_oper_only=no;
1099
1100 /* stats y oper only: make stats y (class {}) oper only */
1101 stats_y_oper_only=no;
1102
1103 /* stats o oper only: make stats o (opers) oper only */
1104 stats_o_oper_only=yes;
1105
1106 /* stats P oper only: make stats P (ports) oper only
1107 * NOTE: users doing stats P will never be given the ips that the
1108 * server listens on, simply the ports.
1109 */
1110 stats_P_oper_only=no;
1111
1112 /* stats i oper only: make stats i (auth {}) oper only. set to:
1113 * yes: show users no auth blocks, made oper only.
1114 * masked: show users first matching auth block
1115 * no: show users all auth blocks.
1116 */
1117 stats_i_oper_only=masked;
1118
1119 /* stats k/K oper only: make stats k/K (klines) oper only. set to:
1120 * yes: show users no auth blocks, made oper only
1121 * masked: show users first matching auth block
1122 * no: show users all auth blocks.
1123 */
1124 stats_k_oper_only=masked;
1125
da1b891f
KB
1126 /* map oper only: make /map oper only */
1127 map_oper_only = no;
212380e3
AC
1128
1129 /* operspy admin only: make operspy notices to +Z admin only */
1130 operspy_admin_only = no;
1131
1132 /* operspy dont care user info: treat /who mask as if there was
1133 * an '!' always; do not log or server notice about operspy
1134 * /who mask, /masktrace and /scan. channel information is still
1135 * protected. */
1136 operspy_dont_care_user_info = no;
1137
1138 /* caller id wait: time between notifying a +g user that somebody
1139 * is messaging them.
1140 */
1141 caller_id_wait = 1 minute;
1142
1143 /* pace wait simple: time between use of less intensive commands
1144 * (HELP, remote WHOIS, WHOWAS)
1145 */
1146 pace_wait_simple = 1 second;
1147
1148 /* pace wait: time between more intensive commands
1149 * (ADMIN, INFO, LIST, LUSERS, MOTD, STATS, VERSION)
1150 */
1151 pace_wait = 10 seconds;
1152
1153 /* short motd: send clients a notice telling them to read the motd
1154 * instead of forcing a motd to clients who may simply ignore it.
1155 */
1156 short_motd = no;
1157
1158 /* ping cookies: require clients to respond exactly to a ping command,
1159 * can help block certain types of drones and FTP PASV mode spoofing.
1160 */
1161 ping_cookie = no;
1162
1163 /* connect timeout: sets how long we should wait for a connection
1164 * request to succeed
1165 */
1166 connect_timeout = 30 seconds;
1167
0ffb8106
JH
1168 /* ident timeout: Amount of time (in seconds) that the IRCd will
1169 * wait for a user to respond to an ident request.
1170 */
944b0584 1171 default_ident_timeout = 5;
0ffb8106 1172
212380e3
AC
1173 /* disable auth: disables identd checking */
1174 disable_auth = no;
1175
1176 /* no oper flood: increase flood limits for opers. */
1177 no_oper_flood = yes;
1178
212380e3
AC
1179 /* REMOVE ME. The following line checks you've been reading. */
1180 havent_read_conf = yes;
1181
1182 /* max targets: the maximum amount of targets in a single
1183 * PRIVMSG/NOTICE. set to 999 NOT 0 for unlimited.
1184 */
1185 max_targets = 4;
1186
da1b891f
KB
1187 /* use_whois_actually: send clients requesting a whois a numeric
1188 * giving the real IP of non-spoofed clients to prevent DNS abuse.
1189 */
1190 use_whois_actually = yes;
212380e3
AC
1191
1192 /* usermodes configurable: a list of usermodes for the options below
1193 *
1194 * +g - callerid - Server Side Ignore
1195 * +D - deaf - Don't see channel messages
1196 * +i - invisible - Not shown in NAMES or WHO unless you share a
1197 * a channel
1198 * +l - locops - See LOCOPS messages
1199 * +Q - noforward - Unaffected by channel forwarding
1200 * +R - regonlymsg - No messages from unindentified
1201 * +s - servnotice - See server notices
1202 * +w - wallop - See oper and server generated WALLOPS
1203 * +z - operwall - See operwalls
1204 */
1205
1206 /* oper only umodes: usermodes only opers may set */
1207 oper_only_umodes = operwall, locops, servnotice;
1208
1209 /* oper umodes: default usermodes opers get when they /oper */
1210 oper_umodes = locops, servnotice, operwall, wallop;
1211
1212 /* oper snomask: default snomask opers get when they /oper,
1213 * provided they have umode +s set */
1214 oper_snomask = "+s";
1215
212380e3
AC
1216 /* use egd: if your system does not have *random devices yet you
1217 * want to use OpenSSL and encrypted links, enable this. Beware -
1218 * EGD is *very* CPU intensive when gathering data for its pool
1219 */
1220 #use_egd = yes;
1221
1222 /* egdpool path: path to EGD pool. Not necessary for OpenSSL >= 0.9.7
1223 * which automatically finds the path.
1224 */
1225 #egdpool_path = "/var/run/egd-pool";
1226
1227
1228 /* compression level: level of compression for compressed links between
1229 * servers.
1230 *
1231 * values are between: 1 (least compression, fastest)
1232 * and: 9 (most compression, slowest).
1233 */
1234 #compression_level = 6;
1235
da1b891f
KB
1236 /* burst_away: This enables bursting away messages to servers.
1237 * With this disabled, we will only propogate AWAY messages
1238 * as users send them, but never burst them. Be warned though
1239 * enabling this could increase the size of a burst significantly
1240 * for a large network, like EFnet.
1241 */
1242 burst_away = yes;
212380e3
AC
1243
1244 /* nick delay: This locks nicks of split clients for the given time
1245 * or until a remote client uses the nick. This significantly
1246 * reduces nick collisions on short splits but it can be annoying.
1247 * To make things as fair as possible, this should be the same on
1248 * all servers. If you enable this, the suggested value is 15 minutes.
1249 */
1250 nick_delay = 0 seconds;
1251
1252 /* reject time: the amount of rejections through klines/dlines etc
1253 * allowed in the given time before the rejection is cached and
1254 * a pseudo temp dline is placed
1255 */
1256 reject_ban_time = 1 minute;
1257 reject_after_count = 3;
1258
1259 /* reject duration: the amount of time to cache the rejection */
1260 reject_duration = 5 minutes;
54015b5f 1261
43946961
JT
1262 /* throttle_duration: Amount of time that throttling will be applied to an IP
1263 * address.
54015b5f 1264 */
43946961
JT
1265 throttle_duration = 60;
1266
1267 /* throttle_count: Number of connections within throttle_duration that it takes
1268 * for throttling to take effect */
1269 throttle_count = 4;
e6e54763 1270
da1b891f
KB
1271 /* client flood_max_lines: maximum number of lines in a clients queue before
1272 * they are dropped for flooding.
1273 */
1274 client_flood_max_lines = 20;
1275
1276 /* Flood control settings. DO NOT CHANGE THESE without extensive discussion
1277 * and testing by someone who knows exactly what they do.
1278 *
1279 * These settings replicate charybdis-3.3 behaviour.
1280 */
1281 client_flood_burst_rate = 40;
1282 client_flood_burst_max = 5;
1283 client_flood_message_time = 1;
1284 client_flood_message_num = 2;
e88a1f1b
KB
1285
1286 /* max_ratelimit_tokens: the maximum number of ratelimit tokens that one
1287 * user can accumulate. This attempts to limit the amount of outbound
1288 * bandwidth one user can consume. Do not change unless you know what
1289 * you're doing.
1290 */
1291 max_ratelimit_tokens = 30;
d42e6915
JT
1292
1293 /* away_interval: the minimum interval between AWAY commands. One
1294 * additional AWAY command is allowed, and only marking as away
1295 * counts.
1296 */
1297 away_interval = 30;
212380e3
AC
1298};
1299
1300modules {
1301 /* module path: paths to search for modules specified below and
1302 * in /modload.
1303 */
1304 path = "/usr/local/ircd/modules";
1305 path = "/usr/local/ircd/modules/autoload";
1306
1307 /* module: the name of a module to load on startup/rehash */
1308 #module = "some_module.so";
1309};