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