]> jfr.im git - solanum.git/blame - doc/reference.conf
ircd: conf: properly calculate the number of wsockd to start
[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
81a05933
EM
370 * kline_exempt (old ^ flag) | exempt this user from k/g/xlines,
371 * | dnsbls, and proxies
212380e3 372 * dnsbl_exempt | exempt this user from dnsbls
81a05933 373 * proxy_exempt | exempt this user from proxies
212380e3
AC
374 * spambot_exempt | exempt this user from spambot checks
375 * shide_exempt | exempt this user from serverhiding
376 * jupe_exempt | exempt this user from generating
377 * warnings joining juped channels
378 * resv_exempt | exempt this user from resvs
da1b891f
KB
379 * flood_exempt | exempt this user from flood limits
380 * USE WITH CAUTION.
212380e3
AC
381 * no_tilde (old - flag) | don't prefix ~ to username if no ident
382 * need_ident (old + flag) | require ident for user in this class
b1594414 383 * need_ssl | require SSL/TLS for user in this class
212380e3 384 * need_sasl | require SASL id for user in this class
a4721f5e 385 * extend_chans | allow this user to join more channels than normal
212380e3
AC
386 */
387 flags = kline_exempt, exceed_limit;
5c0df0e7 388
212380e3
AC
389 /* class: the class the user is placed in */
390 class = "opers";
391};
392
393auth {
394 /* redirect: the server and port to redirect a user to. A user does
395 * not have to obey the redirection, the ircd just suggests to them
396 * an alternative server.
397 */
cba8bbc3 398 redirserv = "irc.example.net";
212380e3 399 redirport = 6667;
5c0df0e7 400
cba8bbc3 401 user = "*.example.com";
212380e3
AC
402
403 /* class: a class is required even though it is not used */
404 class = "users";
405};
406
407auth {
408 user = "*@*";
409 class = "users";
212380e3
AC
410};
411
da77b103
JT
412/* privset{}: defines operator privilege sets. */
413privset "local_op" {
414 /* privs: controls the activities and commands an oper is
415 * allowed to do on the server
416 *
417 * Available options:
418 *
419 * oper:local_kill: allows local users to be /KILL'd
420 * oper:global_kill: allows local and remote users to be /KILL'd
3eae266c 421 * oper:routing: allows remote SQUIT and CONNECT
da77b103
JT
422 * oper:kline: allows KLINE and DLINE
423 * oper:unkline: allows UNKLINE and UNDLINE
424 * snomask:nick_changes: allows oper to see nickchanges via snomask +n
425 * oper:rehash: allows oper to REHASH config
426 * oper:die: allows DIE and RESTART
427 * oper:admin: gives admin privileges. admins
428 * may (un)load modules and see various
429 * additional information.
430 * oper:hidden_admin: gives admin privileges except
431 * will not have the admin lines in
432 * whois.
433 * oper:xline: allows use of /quote xline/unxline
434 * oper:resv: allows /quote resv/unresv and cmode +LP
435 * oper:operwall: allows the oper to send/receive operwalls
436 * oper:spy: allows 'operspy' features to see through +s
437 * channels etc. see /quote help operspy
438 * oper:hidden: hides the oper from /stats p
439 * oper:remoteban: allows remote kline etc
440 * oper:mass_notice: allows sending wallops and mass notices
fe749d37 441 * oper:grant: allows using the GRANT command
da77b103
JT
442 */
443 privs = oper:local_kill, oper:operwall;
444};
445
446privset "server_bot" {
447 /* extends: a privset to inherit in this privset */
448 extends = "local_op";
d9e7ca49 449 privs = oper:kline, oper:remoteban, snomask:nick_changes;
da77b103
JT
450};
451
452privset "global_op" {
453 extends = "local_op";
454 privs = oper:global_kill, oper:routing, oper:kline, oper:unkline, oper:xline,
455 oper:resv, oper:mass_notice, oper:remoteban;
456};
457
458privset "admin" {
459 extends = "global_op";
fe749d37 460 privs = oper:admin, oper:die, oper:rehash, oper:spy, oper:grant;
da77b103
JT
461};
462
463/* operator {}: defines ircd operators. (OLD O:) */
212380e3
AC
464operator "god" {
465 /* name: the name of the oper must go above */
466
467 /* user: the user@host required for this operator. CIDR *is*
468 * supported now. auth{} spoofs work here, other spoofs do not.
da1b891f 469 * multiple user="" lines are supported.
212380e3
AC
470 */
471 user = "*god@*";
472 user = "*@127.0.0.1";
473
474 /* password: the password required to oper. Unless ~encrypted is
5c0df0e7 475 * contained in flags = ...; this will need to be encrypted using
212380e3
AC
476 * mkpasswd, MD5 is supported
477 */
478 password = "etcnjl8juSU1E";
479
480 /* rsa key: the public key for this oper when using Challenge.
5c0df0e7 481 * A password should not be defined when this is used, see
212380e3
AC
482 * doc/challenge.txt for more information.
483 */
484 #rsa_public_key_file = "/usr/local/ircd/etc/oper.pub";
485
ff31db84
AC
486 /* fingerprint: if specified, the oper's client certificate
487 * fingerprint will be checked against the specified fingerprint
488 * below.
489 */
490 #fingerprint = "c77106576abf7f9f90cca0f63874a60f2e40a64b";
491
212380e3
AC
492 /* umodes: the specific umodes this oper gets when they oper.
493 * If this is specified an oper will not be given oper_umodes
494 * These are described above oper_only_umodes in general {};
495 */
496 #umodes = locops, servnotice, operwall, wallop;
497
498 /* snomask: specific server notice mask on oper up.
499 * If this is specified an oper will not be given oper_snomask.
500 */
501 snomask = "+Zbfkrsuy";
502
da77b103
JT
503 /* flags: misc options for the operator. You may prefix an option
504 * with ~ to disable it, e.g. ~encrypted.
212380e3 505 *
da77b103 506 * Default flags are encrypted.
212380e3
AC
507 *
508 * Available options:
509 *
510 * encrypted: the password above is encrypted [DEFAULT]
b1594414 511 * need_ssl: must be using SSL/TLS to oper up
da1b891f 512 */
da77b103
JT
513 flags = encrypted;
514
515 /* privset: privileges set to grant */
516 privset = "admin";
212380e3
AC
517};
518
519/* connect {}: controls servers we connect to (OLD C:, N:, H:, L:) */
520connect "irc.uplink.com" {
521 /* the name must go above */
522
523 /* host: the host or IP to connect to. If a hostname is used it
524 * must match the reverse dns of the server.
525 */
cba8bbc3 526 host = "203.0.113.3";
212380e3
AC
527
528 /* vhost: the host or IP to bind to for this connection. If this
529 * is not specified, the default vhost (in serverinfo {}) is used.
530 */
cba8bbc3 531 #vhost = "192.0.2.131";
212380e3
AC
532
533 /* passwords: the passwords we send (OLD C:) and accept (OLD N:).
534 * The remote server will have these passwords reversed.
535 */
536 send_password = "password";
537 accept_password = "anotherpassword";
538
ff0cc1e6
AC
539 /* fingerprint: if specified, the server's client certificate
540 * fingerprint will be checked against the specified fingerprint
541 * below.
542 */
543 #fingerprint = "c77106576abf7f9f90cca0f63874a60f2e40a64b";
544
212380e3
AC
545 /* port: the port to connect to this server on */
546 port = 6666;
547
548 /* hub mask: the mask of servers that this server may hub. Multiple
549 * entries are permitted
550 */
551 hub_mask = "*";
552
553 /* leaf mask: the mask of servers this server may not hub. Multiple
554 * entries are permitted. Useful for forbidding EU -> US -> EU routes.
555 */
556 #leaf_mask = "*.uk";
557
558 /* class: the class this server is in */
559 class = "server";
560
561 /* flags: controls special options for this server
562 * encrypted - marks the accept_password as being crypt()'d
563 * autoconn - automatically connect to this server
564 * compressed - compress traffic via ziplinks
565 * topicburst - burst topics between servers
b8730cbf 566 * ssl - ssl/tls encrypted server connections
212380e3
AC
567 */
568 flags = compressed, topicburst;
569};
570
0e1f3667 571connect "ipv6.lame.server" {
b0dc8e03
JT
572 /* Hosts that are IPv6 addresses must be in :: shortened form
573 * if applicable. Addresses starting with a colon get an extra
574 * zero prepended, for example: 0::1
575 */
cba8bbc3 576 host = "2001:db8:3::8";
da1b891f
KB
577 send_password = "password";
578 accept_password = "password";
579 port = 6666;
212380e3
AC
580
581 /* aftype: controls whether the connection uses "ipv4" or "ipv6".
582 * Default is ipv4.
583 */
584 aftype = ipv6;
da1b891f 585 class = "server";
212380e3
AC
586};
587
b8730cbf
VY
588connect "ssl.uplink.com" {
589 /* Example of ssl server-to-server connection, ssl flag doesn't need
590 * compressed flag, 'cause it uses own compression
591 */
cba8bbc3 592 host = "203.0.113.129";
b8730cbf
VY
593 send_password = "password";
594 accept_password = "anotherpassword";
595 port = 9999;
596 hub_mask = "*";
597 class = "server";
598 flags = ssl, topicburst;
599};
600
212380e3
AC
601/* cluster {}; servers that we propagate things to automatically.
602 * NOTE: This does NOT grant them privileges to apply anything locally,
603 * you must add a seperate shared block for that. Clustering will
604 * only be done for actions by LOCAL opers, that arent directed
605 * remotely.
606 */
607cluster {
608 /* name: the server to share with, this can be a wildcard and may be
609 * stacked.
610 */
611 /* flags: list of what to share, all the name lines above this (up
612 * until another flags entry) will receive these flags.
613 *
614 * kline - share perm klines
615 * tkline - share temp klines
616 * unkline - share unklines
617 * locops - share locops
618 * xline - share perm xlines
619 * txline - share temp xlines
620 * unxline - share unxlines
621 * resv - share perm resvs
622 * tresv - share temp resvs
623 * unresv - share unresvs
624 * all - share all of the above
625 */
626
0e1f3667
EM
627 /* share klines/unklines/xlines with *.lan */
628 name = "*.lan";
212380e3
AC
629 flags = kline, unkline, xline;
630
631 /* share locops with irc.ircd-ratbox.org and ircd.ircd-ratbox.org */
632 name = "irc.ircd-ratbox.org";
633 name = "ircd.ircd-ratbox.org";
634 flags = locops;
635};
636
637/* service{}: privileged servers (services). These servers have extra
638 * privileges such as setting login names on users and introducing clients
639 * with umode +S (unkickable, hide channels, etc). This does not allow them
640 * to set bans, you need a separate shared{} for that.
641 * Do not place normal servers here.
642 * There may be only one service{} block.
643 */
644service {
645 /* name: the server name. These may be stacked. */
646 name = "services.int";
647};
648
649/* shared {}: users that are allowed to place remote bans on our server.
650 * NOTE: These are ordered top down. The first one the user@host and server
651 * matches will be used. Their access will then be decided on that
652 * block and will not fall back to another block that matches.
653 */
654shared {
655 /* oper: the user@host and server the user must be on to set klines.
656 * The first field must be a user@host, the second field is an
657 * optional server. These may be stacked.
658 */
659 /* flags: list of what to allow them to place, all the oper lines
660 * above this (up until another flags entry) will receive these
661 * flags. This *must* be present.
662 *
663 * kline - allow setting perm/temp klines
664 * tkline - allow setting temp klines
665 * unkline - allow removing klines
666 * xline - allow setting perm/temp xlines
667 * txline - allow setting temp xlines
668 * unxline - allow removing xlines
669 * resv - allow setting perm/temp resvs
670 * tresv - allow setting temp resvs
671 * unresv - allow removing xlines
672 * all - allow oper/server to do all of above.
673 * locops - allow locops - only used for servers who cluster
da1b891f 674 * rehash - allow rehashing
d8d2cb0a
JT
675 * dline - allow setting perm/temp dlines
676 * tdline - allow setting temp dlines
677 * undline - allow removing dlines
fe749d37 678 * grant - allow granting operator status
cc7ae51c 679 * die - allow remote DIE/RESTART
15feac53 680 * module - allow remote module commands
212380e3
AC
681 * none - disallow everything
682 */
683
684 /* allow flame@*.leeh.co.uk on server irc.ircd-ratbox.org and
685 * allow leeh@*.leeh.co.uk on server ircd.ircd-ratbox.org to kline
686 */
687 oper = "flame@*.leeh.co.uk", "irc.ircd-ratbox.org";
688 oper = "leeh@*.leeh.co.uk", "ircd.ircd-ratbox.org";
689 flags = kline;
690
691 /* you may forbid certain opers/servers from doing anything */
692 oper = "irc@vanity.oper", "*";
693 oper = "*@*", "irc.vanity.server";
694 oper = "irc@another.vanity.oper", "bigger.vanity.server";
695 flags = none;
696
697 /* or allow everyone to place temp klines */
698 oper = "*@*";
699 flags = tkline;
700};
701
b808adf9 702/* exempt {}: IPs that are exempt from Dlines and rejectcache. (OLD d:) */
212380e3 703exempt {
cba8bbc3 704 ip = "192.0.2.0/24";
212380e3
AC
705
706 /* these may be stacked */
707 ip = "127.0.0.1";
212380e3
AC
708};
709
710/* The channel block contains options pertaining to channels */
711channel {
712 /* invex: Enable/disable channel mode +I, a n!u@h list of masks
713 * that can join a +i channel without an invite.
714 */
715 use_invex = yes;
716
717 /* except: Enable/disable channel mode +e, a n!u@h list of masks
718 * that can join a channel through a ban (+b).
719 */
720 use_except = yes;
721
2da6f6eb
JT
722 /* forward: Enable/disable channel mode +f, a channel to forward
723 * users to if they can't join because of +i etc. Also enables ban
724 * forwarding, <mask>$<channel>.
725 */
726 use_forward = yes;
727
212380e3
AC
728 /* knock: Allows users to request an invite to a channel that
729 * is locked somehow (+ikl). If the channel is +p or you are banned
730 * the knock will not be sent.
731 */
732 use_knock = yes;
733
212380e3
AC
734 /* knock delay: The amount of time a user must wait between issuing
735 * the knock command.
736 */
737 knock_delay = 5 minutes;
738
739 /* knock channel delay: How often a knock to any specific channel
740 * is permitted, regardless of the user sending the knock.
741 */
742 knock_delay_channel = 1 minute;
743
744 /* max chans: The maximum number of channels a user can join/be on. */
745 max_chans_per_user = 15;
746
a4721f5e
AC
747 /* max chans (large): The extended maximum number of channels a user can join. */
748 max_chans_per_user_large = 60;
749
da1b891f
KB
750 /* max bans: maximum number of +b/e/I/q modes in a channel */
751 max_bans = 100;
212380e3 752
da1b891f
KB
753 /* max bans: maximum number of +b/e/I/q modes in a +L channel */
754 max_bans_large = 500;
212380e3 755
da1b891f 756 /* splitcode: split users, split servers and either no join on split
212380e3
AC
757 * or no create on split must be enabled for split checking.
758 * splitmode will be entered on either split users or split servers
759 * dropping below the limit.
760 *
761 * you may force splitmode to be permanent by /quote set splitmode on
762 */
763
764 /* split users: when the usercount is lower than this level, consider
765 * ourselves split. this must be set for automatic splitmode
766 */
767 default_split_user_count = 0;
768
769 /* split servers: when the amount of servers that have acknowledged
5c0df0e7 770 * theyve finished bursting is lower than this, consider ourselves
212380e3
AC
771 * split. this must be set for automatic splitmode
772 */
773 default_split_server_count = 0;
774
775 /* split: no create: disallow users creating channels on split */
776 no_create_on_split = no;
777
778 /* split: no join: disallow users joining channels at all on a split */
779 no_join_on_split = no;
780
781 /* burst topicwho: when bursting topics, also burst the topic setter */
782 burst_topicwho = yes;
783
784 /* kick on split riding: kick users riding splits to join +i or +k
785 * channels. more precisely, if a bursting server sends an SJOIN
786 * for a channel with a lower TS with either a +i mode or a +k
787 * mode with a different key, kick all local users.
788 *
789 * note: this does not take +r, +b, +e and +I into account.
212380e3
AC
790 */
791 kick_on_split_riding = no;
6865c0b0
JT
792
793 /* only ascii channels: disable local users joining channels
794 * containing characters outside the range 33-126 (non-printable
795 * or non-ASCII).
796 */
797 only_ascii_channels = no;
da1b891f 798
c2c25552
JT
799 /* resv_forcepart: force any local users to part a channel
800 * when a RESV is issued.
801 */
802 resv_forcepart = yes;
717238d2
JT
803
804 /* channel target change: restrict how many channels users can
805 * message per unit of time. IRC operators, channel operators and
806 * voiced users are exempt.
807 */
808 channel_target_change = yes;
341f971e
SB
809
810 /* disable local channels: if yes, then local channels will not be
811 * supported.
812 */
813 disable_local_channels = no;
63eb8567
AC
814
815 /* autochanmodes: the channel modes that should be automatically set
816 * when a channel is created.
817 */
818 autochanmodes = "+nt";
d513218a
AC
819
820 /* displayed_usercount: the minimum amount of users on a channel before it
821 * is displayed in LIST. this parameter can be overridden using ELIST parameters,
822 * such as LIST >0.
823 */
824 displayed_usercount = 3;
14482679
AC
825
826 /* strip_topic_colors: whether or not color codes in TOPIC should be stripped. */
827 strip_topic_colors = no;
212380e3
AC
828};
829
830
831/* The serverhide block contains the options regarding serverhiding */
832serverhide {
4acf2281
JT
833 /* flatten links: this option will hide various routing information
834 * and make all servers in /links appear that they are linked to
835 * this server.
212380e3
AC
836 */
837 flatten_links = no;
838
994544c2
JT
839 /* links delay: how long to wait before showing splits or new
840 * servers in a flattened /links output.
212380e3
AC
841 */
842 links_delay = 5 minutes;
843
4acf2281
JT
844 /* hidden: hide this server from a /links output on servers with
845 * flatten_links enabled. this allows hub servers to be hidden etc.
212380e3 846 */
da1b891f 847 hidden = no;
212380e3
AC
848
849 /* disable hidden: prevent servers hiding themselves from a
850 * /links ouput.
851 */
852 disable_hidden = no;
853};
854
855/* These are the blacklist settings.
856 * You can have multiple combinations of host and rejection reasons.
b2324470 857 * They are used in pairs of one host/rejection reason.
212380e3 858 *
f105844a 859 * These settings should be adequate for most networks.
212380e3
AC
860 *
861 * Word to the wise: Do not use blacklists like SPEWS for blocking IRC
862 * connections.
863 *
92fb5c31
AC
864 * As of charybdis 2.2, you can do some keyword substitution on the rejection
865 * reason. The available keyword substitutions are:
866 *
867 * ${ip} - the user's IP
868 * ${host} - the user's canonical hostname
869 * ${dnsbl-host} - the dnsbl hostname the lookup was done against
870 * ${nick} - the user's nickname
871 * ${network-name} - the name of the network
872 *
0a1e77c2
EM
873 * As of charybdis 3.4, a type parameter is supported, which specifies the
874 * address families the blacklist supports. IPv4 and IPv6 are supported.
875 * IPv4 is currently the default as few blacklists support IPv6 operation
876 * as of this writing.
877 *
3c93d380
EM
878 * As of charybdis 3.5, a matches parameter is allowed; if omitted, any result
879 * is considered a match. If included, a comma-separated list of *quoted*
880 * strings is allowed to match queries. They may be of the format "0" to "255"
881 * to match the final octet (e.g. 127.0.0.1) or "127.x.y.z" to explicitly match
882 * an A record. The blacklist is only applied if it matches anything in the
f0bce9d9 883 * list. You may freely mix full IP's and final octets.
5c0df0e7 884 *
f0bce9d9
EM
885 * Consult your blacklist provider for the meaning of these parameters; they
886 * are usually used to denote different ban types.
212380e3 887 */
57b8cb0f 888blacklist {
40e92fca 889 host = "rbl.efnetrbl.org";
0a1e77c2 890 type = ipv4;
40e92fca 891 reject_reason = "${nick}, your IP (${ip}) is listed in EFnet's RBL. For assistance, see http://efnetrbl.org/?i=${ip}";
57b8cb0f 892
3c93d380 893 /* Example of a blacklist that supports both IPv4 and IPv6 and using matches */
0a1e77c2 894# host = "foobl.blacklist.invalid";
3c93d380 895# matches = "4", "6", "127.0.0.10";
0a1e77c2
EM
896# type = ipv4, ipv6;
897# 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 898};
212380e3 899
8275e270
EM
900/* These are the OPM settings.
901 * This is similar to the functionality provided by BOPM. It will scan incoming
902 * connections for open proxies by connecting to clients and attempting several
903 * different open proxy handshakes. If they connect back to us (via a dedicated
904 * listening port), and send back the data we send them, they are considered
905 * an open proxy. For politeness reasons (users may be confused by the incoming
906 * connection attempts if they are logging incoming connections), the user is
907 * notified upon connect if they are being scanned.
908 *
909 * WARNING:
910 * These settings are considered experimental, and as of this writing, the
911 * Charybdis scanner is not as comprehensive as the one available in HOPM. Only
912 * basic SOCKS4 and SOCKS5 scanning is performed on a few well-known ports. You
913 * may disable the open proxy scanning feature by deleting this block if you are
914 * uncomfortable with this.
915 */
916opm {
917 /* IPv4 address to listen on. This must be a publicly facing IP address
918 * to be effective.
919 * If omitted, it defaults to serverinfo::vhost.
920 */
921 #listen_ipv4 = "127.0.0.1";
922
923 /* IPv4 port to listen on.
924 * This should not be the same as any existing listeners.
925 */
926 #port_ipv4 = 32000;
927
928 /* IPv6 address to listen on. This must be a publicly facing IP address
929 * to be effective.
930 * If omitted, it defaults to serverinfo::vhost6.
931 */
932 #listen_ipv6 = "0::1";
933
934 /* IPv6 port to listen on.
935 * This should not be the same as any existing listeners.
936 */
937 #port_ipv6 = 32000;
938
939 /* You can also set a port directive which will set both the IPv4 and
940 * IPv6 ports at once.
941 */
942 port = 32000;
51fa2ab8
EM
943
944 /* These are the ports to scan for SOCKS4 proxies on. They may overlap
945 * with other scan types. Sensible defaults are given below.
946 */
947 socks4_ports = 80, 443, 1080, 8000, 8080, 10800;
948
949 /* These are the ports to scan for SOCKS5 proxies on. They may overlap
950 * with other scan types. Sensible defaults are given below.
951 */
952 socks5_ports = 80, 443, 1080, 8000, 8080, 10800;
fabe8b94
EM
953
954 /* These are the ports to scan for HTTP connect proxies on (plaintext).
955 * They may overlap with other scan types. Sensible defaults are given
956 * below.
957 */
958 httpconnect_ports = 80, 8080, 8000;
8275e270
EM
959};
960
212380e3
AC
961/*
962 * Alias blocks allow you to define custom commands. (Old m_sshortcut.c)
963 * They send PRIVMSG to the given target. A real command takes
964 * precedence above an alias.
965 */
966alias "NickServ" {
967 /* the name must go above */
968
969 /* target: the target nick (must be a network service) or
970 * user@server (cannot be this server, only opers can use
971 * user starting with "opers" reliably, interpreted on the target
972 * server only so you may need to use nick@server instead)
973 */
974 target = "NickServ";
975};
976
977alias "ChanServ" {
978 target = "ChanServ";
979};
980
981alias "OperServ" {
982 target = "OperServ";
983};
984
985alias "MemoServ" {
986 target = "MemoServ";
987};
988
989alias "NS" {
990 target = "NickServ";
991};
992
993alias "CS" {
994 target = "ChanServ";
995};
996
997alias "OS" {
998 target = "OperServ";
999};
1000
1001alias "MS" {
1002 target = "MemoServ";
1003};
1004
1005/* The general block contains many of the options that were once compiled
1006 * in options in config.h. The general block is read at start time.
1007 */
1008general {
1009 /* hide error messages: defines whether error messages from
922aa826
JT
1010 * servers that are not deemed fully safe are hidden or not.
1011 * These can sometimes contain IPs and can have an adverse
1012 * effect on server ip hiding. Set to:
212380e3
AC
1013 * yes: hide from opers and admin
1014 * opers: hide from opers only
1015 * no: do not hide error messages
922aa826 1016 * Admins on other servers count as opers.
212380e3
AC
1017 */
1018 hide_error_messages = opers;
1019
1020 /* hide spoof ips: hide the real ips of auth{} spoofed users
1021 * If disabled, local opers can see them.
1022 * Dynamic spoofs (e.g. set by services) are unaffected by this;
1023 * any oper (local and remote) can see the real ip.
212380e3
AC
1024 */
1025 hide_spoof_ips = yes;
1026
1027 /* default umodes: umodes to set upon connection
1028 * If you have enabled the ip_cloaking extension, and you wish for
a8560aff 1029 * incoming clients to be set +h or +x upon connection, add +h or +x to the umode
212380e3
AC
1030 * string below.
1031 */
1032 default_umodes = "+i";
1033
1034 /* default operstring: defines the default oper response
1035 * in /whois queries, eg "is an IRC Operator".
1036 * After startup use /quote set operstring to change.
1037 */
1038 default_operstring = "is an IRC Operator";
1039
1040 /* default adminstring: defines the default admin response
1041 * in /whois queries, eg "is a Server Administrator".
1042 * After startup use /quote set adminstring to change.
1043 */
1044 default_adminstring = "is a Server Administrator";
1045
1046 /* servicestring: defines the response for opered services (+S)
1047 * in /whois queries, eg "is a Network Service".
1048 * This is updated on rehash.
1049 */
1050 servicestring = "is a Network Service";
1051
7d33cce8
MT
1052 /*
1053 * Nick of the network's SASL agent. Used to check whether services are here,
1054 * SASL credentials are only sent to its server. Needs to be a service.
1055 *
1056 * Defaults to SaslServ if unspecified.
1057 */
1058 sasl_service = "SaslServ";
1059
212380e3
AC
1060 /* disable fake channels: disable local users joining fake versions
1061 * of channels, eg #foo^B^B. Disables bold, mirc colour, reverse,
1062 * underline and hard space. (ASCII 2, 3, 22, 31, 160 respectively).
1063 */
1064 disable_fake_channels = no;
1065
da1b891f
KB
1066 /* tkline_expire_notices: give a notice to opers when a tkline
1067 * expires
1068 */
1069 tkline_expire_notices = no;
212380e3
AC
1070
1071 /* floodcount: the default value of floodcount that is configurable
1072 * via /quote set floodcount. This is the amount of lines a user
1073 * may send to any other user/channel in one second.
1074 */
da1b891f 1075 default_floodcount = 10;
212380e3 1076
5c0df0e7 1077 /* failed oper notice: send a notice to all opers on the server when
212380e3
AC
1078 * someone tries to OPER and uses the wrong password, host or ident.
1079 */
1080 failed_oper_notice = yes;
1081
1082 /* dots in ident: the amount of '.' characters permitted in an ident
1083 * reply before the user is rejected.
1084 */
1085 dots_in_ident=2;
1086
da1b891f 1087 /* min nonwildcard: the minimum non wildcard characters in k/d/g lines
212380e3
AC
1088 * placed via the server. klines hand placed are exempt from limits.
1089 * wildcard chars: '.' '*' '?' '@'
1090 */
1091 min_nonwildcard = 4;
1092
1093 /* min nonwildcard simple: the minimum non wildcard characters in
1094 * xlines/resvs placed via the server.
1095 * wildcard chars: '*' '?'
1096 */
1097 min_nonwildcard_simple = 3;
1098
da1b891f
KB
1099 /* max accept: maximum allowed /accept's for +g usermode */
1100 max_accept = 20;
212380e3 1101
5f8fb56d
AW
1102 /* max monitor: the maximum amount of nicknames a client may have in
1103 * their monitor (server-side notify) list.
1104 */
1105 max_monitor = 100;
1106
212380e3
AC
1107 /* nick flood: enable the nickflood control code */
1108 anti_nick_flood = yes;
1109
1110 /* nick flood: the nick changes allowed in the specified period */
1111 max_nick_time = 20 seconds;
1112 max_nick_changes = 5;
1113
da1b891f 1114 /* anti spam time: the minimum time a user must be connected before
212380e3
AC
1115 * custom quit messages are allowed.
1116 */
da1b891f 1117 anti_spam_exit_message_time = 5 minutes;
212380e3
AC
1118
1119 /* ts delta: the time delta allowed between server clocks before
1120 * a warning is given, or before the link is dropped. all servers
1121 * should run ntpdate/rdate to keep clocks in sync
1122 */
1123 ts_warn_delta = 30 seconds;
1124 ts_max_delta = 5 minutes;
1125
f09c28e1 1126 /* client exit: prepend a user's quit message with "Quit: " */
212380e3
AC
1127 client_exit = yes;
1128
1129 /* collision fnc: change user's nick to their UID instead of
1130 * killing them, if possible. This setting only applies to nick
1131 * collisions detected on this server. Only enable this if
1132 * all servers on the network allow remote nicks to start with
1133 * a digit.
1134 */
1135 collision_fnc = yes;
1136
330692a1
KB
1137 /* resv fnc: change a user's nick to a nick they have recently used
1138 * (or their UID, if no such nick can be found) when a resv matching
1139 * them is set by services. Only enable this if all servers on the
1140 * network allow remote nicks to start with a digit.
1141 */
1142 resv_fnc = yes;
1143
212380e3
AC
1144 /* global snotices: send out certain snotices (most +b, +f, +y,
1145 * some +s) to other servers via ENCAP SNOTE. Received SNOTEs are
1146 * displayed unconditionally.
1147 */
1148 global_snotices = yes;
5c0df0e7
MU
1149
1150 /* dline reason: show the user the dline reason when they connect
212380e3
AC
1151 * and are dlined.
1152 */
1153 dline_with_reason = yes;
5c0df0e7 1154
212380e3
AC
1155 /* kline delay: delay the checking of klines until a specified time.
1156 * Useful if large kline lists are applied often to prevent the
1157 * server eating CPU.
1158 */
1159 kline_delay = 0 seconds;
1160
5c0df0e7 1161 /* kline reason: show the user the reason why they are k/dlined
212380e3
AC
1162 * on exit. may give away who set k/dline when set via tcm.
1163 */
1164 kline_with_reason = yes;
1165
1166 /* kline reason: make the users quit message on channels this
1167 * reason instead of the oper's reason.
1168 */
1169 kline_reason = "Connection closed";
1170
1171 /* identify to services via server password
1172 * if auth{} block had no password but the user specified a
1173 * server password anyway, send a PRIVMSG to <identify_service>
1174 * with as text <identify_command> <password>.
1175 */
1176 identify_service = "NickServ@services.int";
1177 identify_command = "IDENTIFY";
1178
1179 /* non redundant klines: flag and ignore redundant klines */
1180 non_redundant_klines = yes;
1181
1182 /* warn no nline: warn opers about servers that try to connect but
5c0df0e7 1183 * we dont have a connect {} block for. Twits with misconfigured
212380e3
AC
1184 * servers can get really annoying with this enabled.
1185 */
1186 warn_no_nline = yes;
1187
dca9e552 1188 /* use propagated bans: KLINE, XLINE and RESV set fully propagated bans.
3cbbfb25
JT
1189 * That means the bans are part of the netburst and restarted/split
1190 * servers will get them, but they will not apply to 3.2 and older
1191 * servers at all.
1702b694
JT
1192 */
1193 use_propagated_bans = yes;
1194
212380e3
AC
1195 /* stats e disabled: disable stats e. useful if server ips are
1196 * exempted and you dont want them listing on irc.
1197 */
1198 stats_e_disabled = no;
1199
1200 /* stats c oper only: make stats c (connect {}) oper only */
1201 stats_c_oper_only=no;
1202
1203 /* stats h oper only: make stats h (hub_mask/leaf_mask) oper only */
1204 stats_h_oper_only=no;
1205
1206 /* stats y oper only: make stats y (class {}) oper only */
1207 stats_y_oper_only=no;
1208
1209 /* stats o oper only: make stats o (opers) oper only */
1210 stats_o_oper_only=yes;
1211
1212 /* stats P oper only: make stats P (ports) oper only
5c0df0e7 1213 * NOTE: users doing stats P will never be given the ips that the
212380e3
AC
1214 * server listens on, simply the ports.
1215 */
1216 stats_P_oper_only=no;
1217
1218 /* stats i oper only: make stats i (auth {}) oper only. set to:
1219 * yes: show users no auth blocks, made oper only.
1220 * masked: show users first matching auth block
1221 * no: show users all auth blocks.
1222 */
1223 stats_i_oper_only=masked;
1224
1225 /* stats k/K oper only: make stats k/K (klines) oper only. set to:
1226 * yes: show users no auth blocks, made oper only
1227 * masked: show users first matching auth block
1228 * no: show users all auth blocks.
1229 */
1230 stats_k_oper_only=masked;
1231
da1b891f
KB
1232 /* map oper only: make /map oper only */
1233 map_oper_only = no;
212380e3
AC
1234
1235 /* operspy admin only: make operspy notices to +Z admin only */
1236 operspy_admin_only = no;
1237
1238 /* operspy dont care user info: treat /who mask as if there was
1239 * an '!' always; do not log or server notice about operspy
1240 * /who mask, /masktrace and /scan. channel information is still
1241 * protected. */
1242 operspy_dont_care_user_info = no;
1243
1244 /* caller id wait: time between notifying a +g user that somebody
1245 * is messaging them.
1246 */
1247 caller_id_wait = 1 minute;
1248
1249 /* pace wait simple: time between use of less intensive commands
1250 * (HELP, remote WHOIS, WHOWAS)
1251 */
1252 pace_wait_simple = 1 second;
1253
1254 /* pace wait: time between more intensive commands
1255 * (ADMIN, INFO, LIST, LUSERS, MOTD, STATS, VERSION)
1256 */
1257 pace_wait = 10 seconds;
1258
1259 /* short motd: send clients a notice telling them to read the motd
1260 * instead of forcing a motd to clients who may simply ignore it.
1261 */
1262 short_motd = no;
1263
1264 /* ping cookies: require clients to respond exactly to a ping command,
1265 * can help block certain types of drones and FTP PASV mode spoofing.
1266 */
1267 ping_cookie = no;
1268
1269 /* connect timeout: sets how long we should wait for a connection
1270 * request to succeed
1271 */
1272 connect_timeout = 30 seconds;
1273
0ffb8106
JH
1274 /* ident timeout: Amount of time (in seconds) that the IRCd will
1275 * wait for a user to respond to an ident request.
1276 */
944b0584 1277 default_ident_timeout = 5;
0ffb8106 1278
212380e3
AC
1279 /* disable auth: disables identd checking */
1280 disable_auth = no;
1281
1282 /* no oper flood: increase flood limits for opers. */
1283 no_oper_flood = yes;
1284
212380e3
AC
1285 /* REMOVE ME. The following line checks you've been reading. */
1286 havent_read_conf = yes;
5c0df0e7
MU
1287
1288 /* max targets: the maximum amount of targets in a single
212380e3
AC
1289 * PRIVMSG/NOTICE. set to 999 NOT 0 for unlimited.
1290 */
1291 max_targets = 4;
1292
da1b891f
KB
1293 /* use_whois_actually: send clients requesting a whois a numeric
1294 * giving the real IP of non-spoofed clients to prevent DNS abuse.
1295 */
1296 use_whois_actually = yes;
212380e3
AC
1297
1298 /* usermodes configurable: a list of usermodes for the options below
1299 *
1300 * +g - callerid - Server Side Ignore
1301 * +D - deaf - Don't see channel messages
5c0df0e7 1302 * +i - invisible - Not shown in NAMES or WHO unless you share a
212380e3
AC
1303 * a channel
1304 * +l - locops - See LOCOPS messages
1305 * +Q - noforward - Unaffected by channel forwarding
1306 * +R - regonlymsg - No messages from unindentified
1307 * +s - servnotice - See server notices
1308 * +w - wallop - See oper and server generated WALLOPS
1309 * +z - operwall - See operwalls
1310 */
5c0df0e7 1311
212380e3
AC
1312 /* oper only umodes: usermodes only opers may set */
1313 oper_only_umodes = operwall, locops, servnotice;
1314
1315 /* oper umodes: default usermodes opers get when they /oper */
1316 oper_umodes = locops, servnotice, operwall, wallop;
1317
1318 /* oper snomask: default snomask opers get when they /oper,
1319 * provided they have umode +s set */
1320 oper_snomask = "+s";
1321
212380e3 1322 /* compression level: level of compression for compressed links between
5c0df0e7 1323 * servers.
212380e3
AC
1324 *
1325 * values are between: 1 (least compression, fastest)
1326 * and: 9 (most compression, slowest).
1327 */
1328 #compression_level = 6;
1329
da1b891f
KB
1330 /* burst_away: This enables bursting away messages to servers.
1331 * With this disabled, we will only propogate AWAY messages
1332 * as users send them, but never burst them. Be warned though
1333 * enabling this could increase the size of a burst significantly
1334 * for a large network, like EFnet.
1335 */
1336 burst_away = yes;
212380e3
AC
1337
1338 /* nick delay: This locks nicks of split clients for the given time
1339 * or until a remote client uses the nick. This significantly
1340 * reduces nick collisions on short splits but it can be annoying.
1341 * To make things as fair as possible, this should be the same on
1342 * all servers. If you enable this, the suggested value is 15 minutes.
1343 */
1344 nick_delay = 0 seconds;
1345
1346 /* reject time: the amount of rejections through klines/dlines etc
1347 * allowed in the given time before the rejection is cached and
1348 * a pseudo temp dline is placed
1349 */
1350 reject_ban_time = 1 minute;
1351 reject_after_count = 3;
1352
1353 /* reject duration: the amount of time to cache the rejection */
1354 reject_duration = 5 minutes;
54015b5f 1355
43946961
JT
1356 /* throttle_duration: Amount of time that throttling will be applied to an IP
1357 * address.
54015b5f 1358 */
43946961
JT
1359 throttle_duration = 60;
1360
1361 /* throttle_count: Number of connections within throttle_duration that it takes
1362 * for throttling to take effect */
1363 throttle_count = 4;
e6e54763 1364
da1b891f
KB
1365 /* client flood_max_lines: maximum number of lines in a clients queue before
1366 * they are dropped for flooding.
1367 */
1368 client_flood_max_lines = 20;
1369
1370 /* Flood control settings. DO NOT CHANGE THESE without extensive discussion
1371 * and testing by someone who knows exactly what they do.
1372 *
1373 * These settings replicate charybdis-3.3 behaviour.
1374 */
1375 client_flood_burst_rate = 40;
1376 client_flood_burst_max = 5;
1377 client_flood_message_time = 1;
1378 client_flood_message_num = 2;
e88a1f1b
KB
1379
1380 /* max_ratelimit_tokens: the maximum number of ratelimit tokens that one
1381 * user can accumulate. This attempts to limit the amount of outbound
1382 * bandwidth one user can consume. Do not change unless you know what
1383 * you're doing.
1384 */
1385 max_ratelimit_tokens = 30;
d42e6915
JT
1386
1387 /* away_interval: the minimum interval between AWAY commands. One
1388 * additional AWAY command is allowed, and only marking as away
1389 * counts.
1390 */
1391 away_interval = 30;
13d8f0ed
AC
1392
1393 /* certfp_method: the method that should be used for computing certificate fingerprints.
1394 * Acceptable options are sha1, sha256 and sha512. Networks running versions of charybdis
1395 * prior to charybdis 3.5 MUST use sha1 for certfp_method.
1396 */
1397 certfp_method = sha1;
71c95533
AC
1398
1399 /* hide_opers_in_whois: if set to YES, then oper status will be hidden in /WHOIS output. */
1400 hide_opers_in_whois = no;
212380e3
AC
1401};
1402
1403modules {
5c0df0e7 1404 /* module path: paths to search for modules specified below and
212380e3
AC
1405 * in /modload.
1406 */
1407 path = "/usr/local/ircd/modules";
1408 path = "/usr/local/ircd/modules/autoload";
1409
1410 /* module: the name of a module to load on startup/rehash */
9abdcf1c 1411 #module = "some_module";
212380e3 1412};