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