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