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