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