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