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