]> jfr.im git - irc/freenode/solanum.git/blame - doc/ircd.conf.example
Get rid of hub_mask/leaf_mask
[irc/freenode/solanum.git] / doc / ircd.conf.example
CommitLineData
3514f17e 1/* doc/ircd.conf.example - brief example configuration file
212380e3
WP
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 *
212380e3
WP
7 * See reference.conf for more information.
8 */
9
10/* Extensions */
cdc31cc5 11#loadmodule "extensions/chm_nonotice";
9abdcf1c
EM
12#loadmodule "extensions/chm_operpeace";
13#loadmodule "extensions/createauthonly";
14#loadmodule "extensions/extb_account";
15#loadmodule "extensions/extb_canjoin";
16#loadmodule "extensions/extb_channel";
17#loadmodule "extensions/extb_combi";
18#loadmodule "extensions/extb_extgecos";
19#loadmodule "extensions/extb_hostmask";
20#loadmodule "extensions/extb_oper";
21#loadmodule "extensions/extb_realname";
22#loadmodule "extensions/extb_server";
23#loadmodule "extensions/extb_ssl";
ed2efe76 24#loadmodule "extensions/extb_usermode";
9abdcf1c
EM
25#loadmodule "extensions/hurt";
26#loadmodule "extensions/m_extendchans";
27#loadmodule "extensions/m_findforwards";
28#loadmodule "extensions/m_identify";
0ed0a9fe 29#loadmodule "extensions/m_locops";
9abdcf1c
EM
30#loadmodule "extensions/no_oper_invis";
31#loadmodule "extensions/sno_farconnect";
32#loadmodule "extensions/sno_globalkline";
33#loadmodule "extensions/sno_globalnickchange";
34#loadmodule "extensions/sno_globaloper";
9abdcf1c
EM
35#loadmodule "extensions/override";
36#loadmodule "extensions/no_kill_services";
212380e3 37
a8560aff
WP
38/*
39 * IP cloaking extensions: use ip_cloaking_4.0
40 * if you're linking 3.2 and later, otherwise use
30da589e 41 * ip_cloaking, for compatibility with older 3.x
a8560aff
WP
42 * releases.
43 */
44
9abdcf1c
EM
45#loadmodule "extensions/ip_cloaking_4.0";
46#loadmodule "extensions/ip_cloaking";
a8560aff 47
212380e3
WP
48serverinfo {
49 name = "hades.arpa";
212380e3
WP
50 sid = "42X";
51 description = "charybdis test server";
765d839d 52 network_name = "StaticBox";
212380e3
WP
53
54 /* On multi-homed hosts you may need the following. These define
55 * the addresses we connect from to other servers. */
56 /* for IPv4 */
cba8bbc3 57 #vhost = "192.0.2.6";
212380e3 58 /* for IPv6 */
cba8bbc3 59 #vhost6 = "2001:db8:2::6";
5c0df0e7 60
70a70462 61 /* ssl_cert: certificate (and optionally key) for our ssl server */
b3c4dfd7 62 ssl_cert = "etc/ssl.pem";
b8730cbf 63
70a70462
AJ
64 /* ssl_private_key: our ssl private key (if not contained in ssl_cert file) */
65 #ssl_private_key = "etc/ssl.key";
66
654caa84
WP
67 /* ssl_dh_params: DH parameters, generate with openssl dhparam -out dh.pem 2048
68 * In general, the DH parameters size should be the same as your key's size.
69 * However it has been reported that some clients have broken TLS implementations which may
70 * choke on keysizes larger than 2048-bit, so we would recommend using 2048-bit DH parameters
71 * for now if your keys are larger than 2048-bit.
9d6b870d
AJ
72 *
73 * If you do not provide parameters, some TLS backends will fail on DHE- ciphers,
74 * and some will succeed but use weak, common DH groups! */
b8730cbf
VY
75 ssl_dh_params = "etc/dh.pem";
76
fa1a7bef
JT
77 /* ssld_count: number of ssld processes you want to start, if you
78 * have a really busy server, using N-1 where N is the number of
79 * cpu/cpu cores you have might be useful. A number greater than one
80 * can also be useful in case of bugs in ssld and because ssld needs
81 * two file descriptors per SSL connection.
b8730cbf
VY
82 */
83 ssld_count = 1;
84
85 /* default max clients: the default maximum number of clients
86 * allowed to connect. This can be changed once ircd has started by
87 * issuing:
88 * /quote set maxclients <limit>
c2d96fcb 89 */
101db4c4 90 default_max_clients = 1024;
b583faf9 91
b225bf93
JT
92 /* nicklen: enforced nickname length (for this server only; must not
93 * be longer than the maximum length set while building).
94 */
b583faf9 95 nicklen = 30;
212380e3
WP
96};
97
98admin {
99 name = "Lazy admin (lazya)";
765d839d 100 description = "StaticBox client server";
212380e3
WP
101 email = "nobody@127.0.0.1";
102};
103
104log {
105 fname_userlog = "logs/userlog";
106 #fname_fuserlog = "logs/fuserlog";
107 fname_operlog = "logs/operlog";
108 #fname_foperlog = "logs/foperlog";
109 fname_serverlog = "logs/serverlog";
212380e3
WP
110 #fname_klinelog = "logs/klinelog";
111 fname_killlog = "logs/killlog";
112 fname_operspylog = "logs/operspylog";
113 #fname_ioerrorlog = "logs/ioerror";
114};
115
116/* class {} blocks MUST be specified before anything that uses them. That
117 * means they must be defined before auth {} and before connect {}.
118 */
119class "users" {
120 ping_time = 2 minutes;
dffb83aa
JT
121 number_per_ident = 10;
122 number_per_ip = 10;
123 number_per_ip_global = 50;
e33e589c
JT
124 cidr_ipv4_bitlen = 24;
125 cidr_ipv6_bitlen = 64;
dffb83aa 126 number_per_cidr = 200;
212380e3
WP
127 max_number = 3000;
128 sendq = 400 kbytes;
129};
130
131class "opers" {
132 ping_time = 5 minutes;
133 number_per_ip = 10;
134 max_number = 1000;
135 sendq = 1 megabyte;
136};
137
138class "server" {
139 ping_time = 5 minutes;
140 connectfreq = 5 minutes;
141 max_number = 1;
142 sendq = 4 megabytes;
143};
144
145listen {
02270e96
WP
146 /* defer_accept: wait for clients to send IRC handshake data before
147 * accepting them. if you intend to use software which depends on the
148 * server replying first, such as BOPM, you should disable this feature.
149 * otherwise, you probably want to leave it on.
150 */
151 defer_accept = yes;
152
212380e3
WP
153 /* If you want to listen on a specific IP only, specify host.
154 * host definitions apply only to the following port line.
155 */
cba8bbc3 156 #host = "192.0.2.6";
212380e3 157 port = 5000, 6665 .. 6669;
f42c7be6 158 sslport = 6697;
212380e3
WP
159
160 /* Listen on IPv6 (if you used host= above). */
cba8bbc3 161 #host = "2001:db8:2::6";
da1b891f 162 #port = 5000, 6665 .. 6669;
be2447b8
WP
163 #sslport = 6697;
164
165 /* wsock: listeners defined with this option enabled will be websocket listeners,
166 * and will not accept normal clients.
167 */
168 wsock = yes;
169 sslport = 9999;
212380e3
WP
170};
171
172/* auth {}: allow users to connect to the ircd (OLD I:)
173 * auth {} blocks MUST be specified in order of precedence. The first one
174 * that matches a user will be used. So place spoofs first, then specials,
175 * then general access, then restricted.
176 */
177auth {
b0dc8e03
JT
178 /* user: the user@host allowed to connect. Multiple IPv4/IPv6 user
179 * lines are permitted per auth block. This is matched against the
180 * hostname and IP address (using :: shortening for IPv6 and
181 * prepending a 0 if it starts with a colon) and can also use CIDR
182 * masks.
212380e3 183 */
cba8bbc3
JT
184 user = "*@198.51.100.0/24";
185 user = "*test@2001:db8:1:*";
212380e3
WP
186
187 /* password: an optional password that is required to use this block.
188 * By default this is not encrypted, specify the flag "encrypted" in
189 * flags = ...; below if it is.
190 */
191 password = "letmein";
5c0df0e7 192
212380e3
WP
193 /* spoof: fake the users user@host to be be this. You may either
194 * specify a host or a user@host to spoof to. This is free-form,
195 * just do everyone a favour and dont abuse it. (OLD I: = flag)
196 */
da1b891f 197 spoof = "I.still.hate.packets";
212380e3 198
81a05933
EM
199 /* Possible flags in auth:
200 *
201 * encrypted | password is encrypted with mkpasswd
202 * spoof_notice | give a notice when spoofing hosts
203 * exceed_limit (old > flag) | allow user to exceed class user limits
204 * kline_exempt (old ^ flag) | exempt this user from k/g/xlines,
205 * | dnsbls, and proxies
206 * proxy_exempt | exempt this user from proxies
207 * dnsbl_exempt | exempt this user from dnsbls
208 * spambot_exempt | exempt this user from spambot checks
209 * shide_exempt | exempt this user from serverhiding
210 * jupe_exempt | exempt this user from generating
211 * warnings joining juped channels
212 * resv_exempt | exempt this user from resvs
213 * flood_exempt | exempt this user from flood limits
214 * USE WITH CAUTION.
215 * no_tilde (old - flag) | don't prefix ~ to username if no ident
216 * need_ident (old + flag) | require ident for user in this class
217 * need_ssl | require SSL/TLS for user in this class
218 * need_sasl | require SASL id for user in this class
219 */
212380e3 220 flags = kline_exempt, exceed_limit;
5c0df0e7 221
212380e3
WP
222 /* class: the class the user is placed in */
223 class = "opers";
224};
225
226auth {
227 user = "*@*";
228 class = "users";
229};
230
da77b103
JT
231/* privset {} blocks MUST be specified before anything that uses them. That
232 * means they must be defined before operator {}.
233 */
be525828 234privset "local_op" {
7d84719d 235 privs = oper:general, oper:privs, oper:testline, oper:kill, oper:operwall, usermode:servnotice,
734e7747 236 auspex:oper, auspex:hostname, auspex:umodes, auspex:cmodes;
be525828
WP
237};
238
b5010970
WP
239privset "server_bot" {
240 extends = "local_op";
d9e7ca49 241 privs = oper:kline, oper:remoteban, snomask:nick_changes;
b5010970
WP
242};
243
be525828
WP
244privset "global_op" {
245 extends = "local_op";
7d84719d 246 privs = oper:routing, oper:kline, oper:unkline, oper:xline,
80303ab7 247 oper:resv, oper:cmodes, oper:mass_notice, oper:remoteban;
be525828
WP
248};
249
250privset "admin" {
251 extends = "global_op";
fe749d37 252 privs = oper:admin, oper:die, oper:rehash, oper:spy, oper:grant;
be525828
WP
253};
254
212380e3
WP
255operator "god" {
256 /* name: the name of the oper must go above */
257
258 /* user: the user@host required for this operator. CIDR *is*
259 * supported now. auth{} spoofs work here, other spoofs do not.
260 * multiple user="" lines are supported.
261 */
262 user = "*god@127.0.0.1";
263
264 /* password: the password required to oper. Unless ~encrypted is
5c0df0e7 265 * contained in flags = ...; this will need to be encrypted using
212380e3
WP
266 * mkpasswd, MD5 is supported
267 */
268 password = "etcnjl8juSU1E";
269
270 /* rsa key: the public key for this oper when using Challenge.
5c0df0e7 271 * A password should not be defined when this is used, see
212380e3
WP
272 * doc/challenge.txt for more information.
273 */
274 #rsa_public_key_file = "/usr/local/ircd/etc/oper.pub";
275
276 /* umodes: the specific umodes this oper gets when they oper.
277 * If this is specified an oper will not be given oper_umodes
278 * These are described above oper_only_umodes in general {};
279 */
280 #umodes = locops, servnotice, operwall, wallop;
281
ff31db84
WP
282 /* fingerprint: if specified, the oper's client certificate
283 * fingerprint will be checked against the specified fingerprint
284 * below.
285 */
286 #fingerprint = "c77106576abf7f9f90cca0f63874a60f2e40a64b";
287
212380e3
WP
288 /* snomask: specific server notice mask on oper up.
289 * If this is specified an oper will not be given oper_snomask.
290 */
291 snomask = "+Zbfkrsuy";
292
da77b103
JT
293 /* flags: misc options for the operator. You may prefix an option
294 * with ~ to disable it, e.g. ~encrypted.
212380e3 295 *
10847f65 296 * Default flags are encrypted.
212380e3
WP
297 *
298 * Available options:
299 *
300 * encrypted: the password above is encrypted [DEFAULT]
3e664be3 301 * need_ssl: must be using SSL/TLS to oper up
da1b891f 302 */
da77b103 303 flags = encrypted;
be525828 304
da77b103 305 /* privset: privileges set to grant */
be525828 306 privset = "admin";
212380e3
WP
307};
308
309connect "irc.uplink.com" {
cba8bbc3 310 host = "203.0.113.3";
212380e3
WP
311 send_password = "password";
312 accept_password = "anotherpassword";
313 port = 6666;
212380e3
WP
314 class = "server";
315 flags = compressed, topicburst;
316
ff0cc1e6 317 #fingerprint = "c77106576abf7f9f90cca0f63874a60f2e40a64b";
212380e3
WP
318};
319
b8730cbf 320connect "ssl.uplink.com" {
cba8bbc3 321 host = "203.0.113.129";
b8730cbf
VY
322 send_password = "password";
323 accept_password = "anotherpassword";
324 port = 9999;
b8730cbf
VY
325 class = "server";
326 flags = ssl, topicburst;
327};
328
212380e3
WP
329service {
330 name = "services.int";
331};
332
333cluster {
334 name = "*";
335 flags = kline, tkline, unkline, xline, txline, unxline, resv, tresv, unresv;
336};
337
d1239f61
EK
338secure {
339 ip = "127.0.0.1";
340};
341
b808adf9 342/* exempt {}: IPs that are exempt from Dlines and rejectcache. (OLD d:) */
212380e3
WP
343exempt {
344 ip = "127.0.0.1";
345};
346
347channel {
348 use_invex = yes;
349 use_except = yes;
2da6f6eb 350 use_forward = yes;
212380e3 351 use_knock = yes;
212380e3
WP
352 knock_delay = 5 minutes;
353 knock_delay_channel = 1 minute;
354 max_chans_per_user = 15;
a4721f5e 355 max_chans_per_user_large = 60;
da1b891f
KB
356 max_bans = 100;
357 max_bans_large = 500;
212380e3
WP
358 default_split_user_count = 0;
359 default_split_server_count = 0;
360 no_create_on_split = no;
361 no_join_on_split = no;
362 burst_topicwho = yes;
363 kick_on_split_riding = no;
6865c0b0 364 only_ascii_channels = no;
c2c25552 365 resv_forcepart = yes;
717238d2 366 channel_target_change = yes;
341f971e 367 disable_local_channels = no;
63eb8567 368 autochanmodes = "+nt";
d513218a 369 displayed_usercount = 3;
14482679 370 strip_topic_colors = no;
04e5ed6c 371 opmod_send_statusmsg = no;
212380e3
WP
372};
373
374serverhide {
375 flatten_links = yes;
376 links_delay = 5 minutes;
da1b891f 377 hidden = no;
212380e3
WP
378 disable_hidden = no;
379};
380
043f2c90 381/* These are the DNSBL settings.
212380e3 382 * You can have multiple combinations of host and rejection reasons.
b2324470 383 * They are used in pairs of one host/rejection reason.
212380e3 384 *
043f2c90 385 * The default settings should be adequate for most networks.
212380e3 386 *
043f2c90
AC
387 * It is not recommended to use DNSBL services designed for e-mail spam
388 * prevention, such as SPEWS for blocking IRC connections.
212380e3 389 *
0a1e77c2 390 * As of charybdis 2.2, you can do some keyword substitution on the rejection
92fb5c31
WP
391 * reason. The available keyword substitutions are:
392 *
393 * ${ip} - the user's IP
394 * ${host} - the user's canonical hostname
395 * ${dnsbl-host} - the dnsbl hostname the lookup was done against
396 * ${nick} - the user's nickname
397 * ${network-name} - the name of the network
398 *
0a1e77c2
EM
399 * As of charybdis 3.4, a type parameter is supported, which specifies the
400 * address families the blacklist supports. IPv4 and IPv6 are supported.
401 * IPv4 is currently the default as few blacklists support IPv6 operation
402 * as of this writing.
403 *
3c93d380 404 * As of charybdis 3.5, a matches parameter is allowed; if omitted, any result
5c0df0e7 405 * is considered a match. If included, a comma-separated list of *quoted*
3c93d380
EM
406 * strings is allowed to match queries. They may be of the format "0" to "255"
407 * to match the final octet (e.g. 127.0.0.1) or "127.x.y.z" to explicitly match
043f2c90 408 * an A record. The DNSBL match is only applied if it matches anything in the
f0bce9d9
EM
409 * list. You may freely mix full IP's and final octets.
410 *
043f2c90
AC
411 * Consult your DNSBL provider for the meaning of these parameters; they
412 * are usually used to denote different block reasons.
212380e3 413 */
043f2c90 414dnsbl {
40e92fca 415 host = "rbl.efnetrbl.org";
0a1e77c2 416 type = ipv4;
40e92fca 417 reject_reason = "${nick}, your IP (${ip}) is listed in EFnet's RBL. For assistance, see http://efnetrbl.org/?i=${ip}";
57b8cb0f 418
3c93d380 419 /* Example of a blacklist that supports both IPv4 and IPv6 and using matches */
0a1e77c2
EM
420# host = "foobl.blacklist.invalid";
421# type = ipv4, ipv6;
3c93d380 422# matches = "4", "6", "127.0.0.10";
0a1e77c2 423# reject_reason = "${nick}, your IP (${ip}) is listed in ${dnsbl-host} for some reason. In order to protect ${network-name} from abuse, we are not allowing connections listed in ${dnsbl-host} to connect";
57b8cb0f 424};
212380e3 425
8275e270
EM
426/* These are the OPM settings.
427 * This is similar to the functionality provided by BOPM. It will scan incoming
428 * connections for open proxies by connecting to clients and attempting several
429 * different open proxy handshakes. If they connect back to us (via a dedicated
430 * listening port), and send back the data we send them, they are considered
431 * an open proxy. For politeness reasons (users may be confused by the incoming
432 * connection attempts if they are logging incoming connections), the user is
433 * notified upon connect if they are being scanned.
434 *
435 * WARNING:
cfb92536
EM
436 * These settings are considered experimental. Only the most common proxy types
437 * are checked for (Charybdis is immune from POST and GET proxies). If you are
28f87746 438 * not comfortable with experimental code, do not use this feature.
8275e270 439 */
28f87746 440#opm {
8275e270
EM
441 /* IPv4 address to listen on. This must be a publicly facing IP address
442 * to be effective.
443 * If omitted, it defaults to serverinfo::vhost.
444 */
445 #listen_ipv4 = "127.0.0.1";
446
447 /* IPv4 port to listen on.
448 * This should not be the same as any existing listeners.
449 */
e2a06878 450 #port_v4 = 32000;
8275e270
EM
451
452 /* IPv6 address to listen on. This must be a publicly facing IP address
453 * to be effective.
454 * If omitted, it defaults to serverinfo::vhost6.
455 */
d4214e94 456 #listen_ipv6 = "::1";
8275e270
EM
457
458 /* IPv6 port to listen on.
459 * This should not be the same as any existing listeners.
460 */
e2a06878 461 #port_v6 = 32000;
8275e270 462
4dbed1ed
EM
463 /* You can also set the listen_port directive which will set both the
464 * IPv4 and IPv6 ports at once.
8275e270 465 */
28f87746 466 #listen_port = 32000;
51fa2ab8 467
9bba0f61
EM
468 /* This sets the timeout in seconds before ending open proxy scans.
469 * Values less than 1 or greater than 60 are ignored.
470 * It is advisable to keep it as short as feasible, so clients do not
471 * get held up by excessively long scan times.
472 */
28f87746 473 #timeout = 5;
9bba0f61 474
51fa2ab8
EM
475 /* These are the ports to scan for SOCKS4 proxies on. They may overlap
476 * with other scan types. Sensible defaults are given below.
477 */
28f87746 478 #socks4_ports = 1080, 10800, 443, 80, 8080, 8000;
51fa2ab8
EM
479
480 /* These are the ports to scan for SOCKS5 proxies on. They may overlap
481 * with other scan types. Sensible defaults are given below.
482 */
28f87746 483 #socks5_ports = 1080, 10800, 443, 80, 8080, 8000;
fabe8b94
EM
484
485 /* These are the ports to scan for HTTP connect proxies on (plaintext).
486 * They may overlap with other scan types. Sensible defaults are given
487 * below.
488 */
28f87746 489 #httpconnect_ports = 80, 8080, 8000;
eb0814b3
EM
490
491 /* These are the ports to scan for HTTPS CONNECT proxies on (SSL).
492 * They may overlap with other scan types. Sensible defaults are given
493 * below.
494 */
28f87746
AJ
495 #httpsconnect_ports = 443, 4443;
496#};
8275e270 497
212380e3
WP
498alias "NickServ" {
499 target = "NickServ";
500};
501
502alias "ChanServ" {
503 target = "ChanServ";
504};
505
506alias "OperServ" {
507 target = "OperServ";
508};
509
510alias "MemoServ" {
511 target = "MemoServ";
512};
513
514alias "NS" {
515 target = "NickServ";
516};
517
518alias "CS" {
519 target = "ChanServ";
520};
521
522alias "OS" {
523 target = "OperServ";
524};
525
526alias "MS" {
527 target = "MemoServ";
528};
529
530general {
531 hide_error_messages = opers;
532 hide_spoof_ips = yes;
533
534 /*
535 * default_umodes: umodes to enable on connect.
a8560aff
WP
536 * If you have enabled the new ip_cloaking_4.0 module, and you want
537 * to make use of it, add +x to this option, i.e.:
538 * default_umodes = "+ix";
539 *
540 * If you have enabled the old ip_cloaking module, and you want
212380e3
WP
541 * to make use of it, add +h to this option, i.e.:
542 * default_umodes = "+ih";
543 */
544 default_umodes = "+i";
545
546 default_operstring = "is an IRC Operator";
547 default_adminstring = "is a Server Administrator";
548 servicestring = "is a Network Service";
7d33cce8
MT
549
550 /*
551 * Nick of the network's SASL agent. Used to check whether services are here,
552 * SASL credentials are only sent to its server. Needs to be a service.
553 *
554 * Defaults to SaslServ if unspecified.
555 */
556 sasl_service = "SaslServ";
212380e3 557 disable_fake_channels = no;
da1b891f
KB
558 tkline_expire_notices = no;
559 default_floodcount = 10;
212380e3 560 failed_oper_notice = yes;
3bb3dcf7 561 dots_in_ident = 2;
212380e3
WP
562 min_nonwildcard = 4;
563 min_nonwildcard_simple = 3;
da1b891f 564 max_accept = 100;
5f8fb56d 565 max_monitor = 100;
212380e3
WP
566 anti_nick_flood = yes;
567 max_nick_time = 20 seconds;
568 max_nick_changes = 5;
da1b891f 569 anti_spam_exit_message_time = 5 minutes;
212380e3
WP
570 ts_warn_delta = 30 seconds;
571 ts_max_delta = 5 minutes;
572 client_exit = yes;
573 collision_fnc = yes;
330692a1 574 resv_fnc = yes;
212380e3
WP
575 global_snotices = yes;
576 dline_with_reason = yes;
212380e3 577 kline_with_reason = yes;
6292d72b 578 hide_tkdline_duration = no;
212380e3
WP
579 kline_reason = "K-Lined";
580 identify_service = "NickServ@services.int";
581 identify_command = "IDENTIFY";
582 non_redundant_klines = yes;
583 warn_no_nline = yes;
1702b694 584 use_propagated_bans = yes;
212380e3 585 stats_e_disabled = no;
3bb3dcf7 586 stats_c_oper_only = no;
3bb3dcf7
MM
587 stats_y_oper_only = no;
588 stats_o_oper_only = yes;
589 stats_P_oper_only = no;
590 stats_i_oper_only = masked;
591 stats_k_oper_only = masked;
da1b891f 592 map_oper_only = no;
212380e3
WP
593 operspy_admin_only = no;
594 operspy_dont_care_user_info = no;
595 caller_id_wait = 1 minute;
596 pace_wait_simple = 1 second;
597 pace_wait = 10 seconds;
598 short_motd = no;
599 ping_cookie = no;
600 connect_timeout = 30 seconds;
944b0584 601 default_ident_timeout = 5;
212380e3
WP
602 disable_auth = no;
603 no_oper_flood = yes;
212380e3 604 max_targets = 4;
e6e54763 605 client_flood_max_lines = 20;
b3a00991 606 post_registration_delay = 0 seconds;
da1b891f 607 use_whois_actually = no;
212380e3
WP
608 oper_only_umodes = operwall, locops, servnotice;
609 oper_umodes = locops, servnotice, operwall, wallop;
610 oper_snomask = "+s";
da1b891f 611 burst_away = yes;
212380e3
WP
612 nick_delay = 0 seconds; # 15 minutes if you want to enable this
613 reject_ban_time = 1 minute;
614 reject_after_count = 3;
615 reject_duration = 5 minutes;
cc49daee
JT
616 throttle_duration = 60;
617 throttle_count = 4;
e88a1f1b 618 max_ratelimit_tokens = 30;
d42e6915 619 away_interval = 30;
7380ded5 620 certfp_method = spki_sha256;
71c95533 621 hide_opers_in_whois = no;
fff4f763 622 tls_ciphers_oper_only = no;
212380e3
WP
623};
624
625modules {
626 path = "modules";
627 path = "modules/autoload";
628};