]> jfr.im git - irc/rqf/shadowircd.git/blame - doc/example.conf
Update CREDITS. spb is now a charybdis core developer and i'm a charybdis contributor...
[irc/rqf/shadowircd.git] / doc / example.conf
CommitLineData
212380e3 1/* doc/example.conf - brief 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 *
407b1826 7 * $Id: example.conf 3582 2007-11-17 21:55:48Z jilles $
212380e3 8 *
9 * See reference.conf for more information.
10 */
11
12/* Extensions */
e4322741
G
13#loadmodule "extensions/chm_adminonly.so";
14loadmodule "extensions/chm_operonly.so";
15#loadmodule "extensions/chm_sslonly.so";
95dc1251
VY
16#loadmodule "extensions/chm_operonly_compat.so";
17#loadmodule "extensions/chm_quietunreg_compat.so";
18#loadmodule "extensions/chm_sslonly_compat.so";
212380e3 19#loadmodule "extensions/createauthonly.so";
28ba4f8f
G
20loadmodule "extensions/extb_account.so";
21loadmodule "extensions/extb_canjoin.so";
22loadmodule "extensions/extb_channel.so";
23loadmodule "extensions/extb_extgecos.so";
24loadmodule "extensions/extb_oper.so";
25loadmodule "extensions/extb_realname.so";
212380e3 26#loadmodule "extensions/extb_server.so";
95dc1251 27#loadmodule "extensions/extb_ssl.so";
212380e3 28#loadmodule "extensions/hurt.so";
28ba4f8f 29loadmodule "extensions/ip_cloaking.so";
212380e3 30#loadmodule "extensions/m_findforwards.so";
28ba4f8f 31loadmodule "extensions/m_identify.so";
77f41d51 32loadmodule "extensions/m_mkpasswd.so";
82e5490f 33loadmodule "extensions/m_webirc.so";
85305853 34#loadmodule "extensions/m_cycle.so";
1fbf6db6 35#loadmodule "extensions/m_oaccept.so";
77f41d51
G
36#loadmodule "extensions/m_opme.so";
37#loadmodule "extensions/m_ojoin.so";
38#loadmodule "extensions/m_omode.so";
39#loadmodule "extensions/m_olist.so";
3c0f8334 40#loadmodule "extensions/m_okick.so";
77f41d51 41#loadmodule "extensions/m_force.so";
212380e3 42#loadmodule "extensions/no_oper_invis.so";
28ba4f8f
G
43loadmodule "extensions/sno_farconnect.so";
44loadmodule "extensions/sno_globalkline.so";
45loadmodule "extensions/sno_globaloper.so";
446d88dd 46#loadmodule "extensions/sno_whois.so";
790bfe43 47
212380e3 48serverinfo {
49 name = "hades.arpa";
212380e3 50 sid = "42X";
f34794d0 51 description = "shadowircd test server";
212380e3 52 network_name = "AthemeNET";
53 network_desc = "Your IRC network.";
ef07b59a
JH
54 helpchan = "#help";
55 helpurl = "http://www.mynet.net/help";
212380e3 56 hub = yes;
57
58 /* On multi-homed hosts you may need the following. These define
59 * the addresses we connect from to other servers. */
60 /* for IPv4 */
61 #vhost = "192.169.0.1";
62 /* for IPv6 */
63 #vhost6 = "3ffe:80e8:546::2";
8db00894 64
9b1b4a97 65 /* ssl_private_key: our ssl private key */
ac10b333 66 ssl_private_key = "etc/ssl.key";
9b1b4a97
VY
67
68 /* ssl_cert: certificate for our ssl server */
ac10b333 69 ssl_cert = "etc/ssl.cert";
9b1b4a97
VY
70
71 /* ssl_dh_params: DH parameters, generate with openssl dhparam -out dh.pem 1024 */
72 ssl_dh_params = "etc/dh.pem";
73
29e3823d
JT
74 /* ssld_count: number of ssld processes you want to start, if you
75 * have a really busy server, using N-1 where N is the number of
76 * cpu/cpu cores you have might be useful. A number greater than one
77 * can also be useful in case of bugs in ssld and because ssld needs
78 * two file descriptors per SSL connection.
9b1b4a97
VY
79 */
80 ssld_count = 1;
81
82 /* default max clients: the default maximum number of clients
83 * allowed to connect. This can be changed once ircd has started by
84 * issuing:
85 * /quote set maxclients <limit>
c2d96fcb 86 */
3fe90825 87 default_max_clients = 1024;
212380e3 88};
89
90admin {
91 name = "Lazy admin (lazya)";
92 description = "AthemeNET client server";
93 email = "nobody@127.0.0.1";
94};
95
96log {
97 fname_userlog = "logs/userlog";
98 #fname_fuserlog = "logs/fuserlog";
99 fname_operlog = "logs/operlog";
100 #fname_foperlog = "logs/foperlog";
101 fname_serverlog = "logs/serverlog";
212380e3 102 #fname_klinelog = "logs/klinelog";
103 fname_killlog = "logs/killlog";
104 fname_operspylog = "logs/operspylog";
105 #fname_ioerrorlog = "logs/ioerror";
106};
107
108/* class {} blocks MUST be specified before anything that uses them. That
109 * means they must be defined before auth {} and before connect {}.
110 */
111class "users" {
112 ping_time = 2 minutes;
76514a0b
JT
113 number_per_ident = 10;
114 number_per_ip = 10;
115 number_per_ip_global = 50;
c8d85889
JT
116 cidr_ipv4_bitlen = 24;
117 cidr_ipv6_bitlen = 64;
76514a0b 118 number_per_cidr = 200;
212380e3 119 max_number = 3000;
120 sendq = 400 kbytes;
121};
122
123class "opers" {
124 ping_time = 5 minutes;
125 number_per_ip = 10;
126 max_number = 1000;
127 sendq = 1 megabyte;
128};
129
130class "server" {
131 ping_time = 5 minutes;
132 connectfreq = 5 minutes;
133 max_number = 1;
134 sendq = 4 megabytes;
135};
136
137listen {
138 /* If you want to listen on a specific IP only, specify host.
139 * host definitions apply only to the following port line.
140 */
141 #host = "192.169.0.1";
142 port = 5000, 6665 .. 6669;
f4db473c 143 sslport = 6697;
212380e3 144
145 /* Listen on IPv6 (if you used host= above). */
146 #host = "3ffe:1234:a:b:c::d";
147 #port = 5000, 6665 .. 6669;
9b1b4a97 148 #sslport = 9999;
212380e3 149};
150
151/* auth {}: allow users to connect to the ircd (OLD I:)
152 * auth {} blocks MUST be specified in order of precedence. The first one
153 * that matches a user will be used. So place spoofs first, then specials,
154 * then general access, then restricted.
155 */
156auth {
b0dc8e03 157 /* user: the user@host allowed to connect. Multiple IPv4/IPv6 user
158 * lines are permitted per auth block. This is matched against the
159 * hostname and IP address (using :: shortening for IPv6 and
160 * prepending a 0 if it starts with a colon) and can also use CIDR
161 * masks.
212380e3 162 */
163 user = "*@172.16.0.0/12";
164 user = "*test@123D:B567:*";
165
f5ed1007
JH
166 /* auth_user: The username (authenticated via SASL or PASS) allowed
167 * to connect. You are able to put multiple auth_user lines. If people
168 * are authenticating via SASL in this way, it is recommended to comment
169 * out the password option below. You will also *NEED* to specify a user
170 * line above auth_user, this can safely be "*@*", however.
171 */
172 auth_user = "jilles";
173 auth_user = "jdhore";
174
212380e3 175 /* password: an optional password that is required to use this block.
176 * By default this is not encrypted, specify the flag "encrypted" in
177 * flags = ...; below if it is.
178 */
179 password = "letmein";
180
181 /* spoof: fake the users user@host to be be this. You may either
182 * specify a host or a user@host to spoof to. This is free-form,
183 * just do everyone a favour and dont abuse it. (OLD I: = flag)
184 */
185 spoof = "I.still.hate.packets";
186
fa72cee1
JH
187 /* autojoin: Channel (or channels, comma-seperated) to join users
188 * in this auth block to on connect. Note that this won't join
189 * the user through any bans or otherwise restrictive chmodes.
190 */
191 autojoin = "#shadowircd,#test";
192
87f58b4f
JH
193 /* autojoin_opers : Channel (or channels, comma-seperated) to join
194 * opers to on oper-up.
195 */
196 autojoin_opers = "#opers,#help";
197
212380e3 198 /* Possible flags in auth:
199 *
200 * encrypted | password is encrypted with mkpasswd
201 * spoof_notice | give a notice when spoofing hosts
202 * exceed_limit (old > flag) | allow user to exceed class user limits
203 * kline_exempt (old ^ flag) | exempt this user from k/g/xlines&dnsbls
204 * dnsbl_exempt | exempt this user from dnsbls
212380e3 205 * spambot_exempt | exempt this user from spambot checks
206 * shide_exempt | exempt this user from serverhiding
207 * jupe_exempt | exempt this user from generating
208 * warnings joining juped channels
209 * resv_exempt | exempt this user from resvs
210 * flood_exempt | exempt this user from flood limits
211 * USE WITH CAUTION.
212 * no_tilde (old - flag) | don't prefix ~ to username if no ident
213 * need_ident (old + flag) | require ident for user in this class
92ee45c4 214 * need_ssl | require SSL/TLS for user in this class
212380e3 215 * need_sasl | require SASL id for user in this class
216 */
217 flags = kline_exempt, exceed_limit;
218
219 /* class: the class the user is placed in */
220 class = "opers";
221};
222
82e5490f
JH
223/* Example WEBIRC authblock */
224auth {
225 /* user: webirc@IP.OF.YOUR.WEBIRC . the webirc@ part is required */
226 user = "webirc@192.168.1.1";
227
228 /* password: password the webirc client sends in the WEBIRC command.
229 * You can use a encrypted password here (see above auth block).
230 */
231 password = "<password>";
232
233 /* spoof: This is required to keep it what it is currently if you
234 * want the webirc client to show the users' real host as their
235 * host on IRC.
236 */
237 spoof = "webirc.";
238 class = "users";
239};
240
212380e3 241auth {
242 user = "*@*";
243 class = "users";
244};
245
ebe56017
JT
246/* privset {} blocks MUST be specified before anything that uses them. That
247 * means they must be defined before operator {}.
248 */
48de3c18
WP
249privset "local_op" {
250 privs = oper:local_kill, oper:operwall;
251};
252
6e915bfe
WP
253privset "server_bot" {
254 extends = "local_op";
29ef4e88 255 privs = oper:kline, oper:remoteban, snomask:nick_changes;
6e915bfe
WP
256};
257
48de3c18
WP
258privset "global_op" {
259 extends = "local_op";
260 privs = oper:global_kill, oper:routing, oper:kline, oper:unkline, oper:xline,
44d450f2 261 oper:resv, oper:mass_notice, oper:remoteban;
48de3c18
WP
262};
263
264privset "admin" {
265 extends = "global_op";
4ebf6862 266 privs = oper:admin, oper:die, oper:rehash, oper:spy, oper:override;
48de3c18
WP
267};
268
212380e3 269operator "god" {
270 /* name: the name of the oper must go above */
271
272 /* user: the user@host required for this operator. CIDR *is*
273 * supported now. auth{} spoofs work here, other spoofs do not.
274 * multiple user="" lines are supported.
275 */
276 user = "*god@127.0.0.1";
277
278 /* password: the password required to oper. Unless ~encrypted is
279 * contained in flags = ...; this will need to be encrypted using
280 * mkpasswd, MD5 is supported
281 */
282 password = "etcnjl8juSU1E";
283
284 /* rsa key: the public key for this oper when using Challenge.
285 * A password should not be defined when this is used, see
286 * doc/challenge.txt for more information.
287 */
288 #rsa_public_key_file = "/usr/local/ircd/etc/oper.pub";
289
290 /* umodes: the specific umodes this oper gets when they oper.
291 * If this is specified an oper will not be given oper_umodes
292 * These are described above oper_only_umodes in general {};
293 */
294 #umodes = locops, servnotice, operwall, wallop;
295
d8a023ed
WP
296 /* fingerprint: if specified, the oper's client certificate
297 * fingerprint will be checked against the specified fingerprint
298 * below.
299 */
300 #fingerprint = "c77106576abf7f9f90cca0f63874a60f2e40a64b";
301
212380e3 302 /* snomask: specific server notice mask on oper up.
303 * If this is specified an oper will not be given oper_snomask.
304 */
305 snomask = "+Zbfkrsuy";
306
08e35f66
G
307 /* vhost: defines the vhost that this oper will get on oper up.
308 * this must be a valid hostmask. If this is specified the oper
309 * will not be given default_operhost.
310 */
311 vhost = "is.an.oper";
312
e787d3a2
G
313 /* swhois: defines an additional line that will be displayed
314 * whenever someone does /whois on the oper in question.
315 */
f11e5895 316 swhois = "is wearing pants.";
e787d3a2
G
317
318 /* operstring: defines a custom operstring for this oper,
319 * which will be shown in whois instead of default_operstring
320 * or default_adminstring.
321 */
f11e5895 322 operstring = "is a lazy IRC Operator";
e787d3a2 323
ebe56017
JT
324 /* flags: misc options for the operator. You may prefix an option
325 * with ~ to disable it, e.g. ~encrypted.
212380e3 326 *
850b23f3 327 * Default flags are encrypted.
212380e3 328 *
329 * Available options:
330 *
331 * encrypted: the password above is encrypted [DEFAULT]
92ee45c4 332 * need_ssl: must be using SSL/TLS to oper up
212380e3 333 */
ebe56017 334 flags = encrypted;
48de3c18 335
ebe56017 336 /* privset: privileges set to grant */
48de3c18 337 privset = "admin";
212380e3 338};
339
340connect "irc.uplink.com" {
341 host = "192.168.0.1";
342 send_password = "password";
343 accept_password = "anotherpassword";
344 port = 6666;
345 hub_mask = "*";
346 class = "server";
347 flags = compressed, topicburst;
348
b0dc8e03 349 /* If the connection is IPv6, uncomment below.
350 * Use 0::1, not ::1, for IPv6 localhost. */
212380e3 351 #aftype = ipv6;
352};
353
9b1b4a97
VY
354connect "ssl.uplink.com" {
355 host = "192.168.0.1";
356 send_password = "password";
357 accept_password = "anotherpassword";
358 port = 9999;
359 hub_mask = "*";
360 class = "server";
361 flags = ssl, topicburst;
362};
363
212380e3 364service {
365 name = "services.int";
366};
367
368cluster {
369 name = "*";
370 flags = kline, tkline, unkline, xline, txline, unxline, resv, tresv, unresv;
371};
372
373shared {
374 oper = "*@*", "*";
baca17ae 375 flags = all;
212380e3 376};
377
b808adf9 378/* exempt {}: IPs that are exempt from Dlines and rejectcache. (OLD d:) */
212380e3 379exempt {
380 ip = "127.0.0.1";
381};
382
383channel {
4c16b692 384 #disabledmodes = "ME";
13ec57db 385 autochanmodes = "nt";
d7a3d23c 386 admin_on_channel_create = no;
5ad94b50 387 exemptchanops = "NT";
46f0c518 388 use_halfop = yes;
c1c91f94 389 use_admin = yes;
212380e3 390 use_knock = yes;
0eceaff1 391 use_local_channels = yes;
212380e3 392 knock_delay = 5 minutes;
393 knock_delay_channel = 1 minute;
394 max_chans_per_user = 15;
395 max_bans = 100;
396 max_bans_large = 500;
397 default_split_user_count = 0;
398 default_split_server_count = 0;
399 no_create_on_split = no;
400 no_join_on_split = no;
401 burst_topicwho = yes;
402 kick_on_split_riding = no;
dea418e9 403 only_ascii_channels = no;
c3a0fde2 404 cycle_host_change = yes;
45b9f1cb 405 host_in_topic = yes;
100563e8 406 resv_forcepart = yes;
9e94d9ea 407 channel_target_change = yes;
212380e3 408};
409
410serverhide {
411 flatten_links = yes;
412 links_delay = 5 minutes;
413 hidden = no;
414 disable_hidden = no;
415};
416
417/* These are the blacklist settings.
418 * You can have multiple combinations of host and rejection reasons.
6abfcc55 419 * They are used in pairs of one host/rejection reason.
212380e3 420 *
421 * These settings should be adequate for most networks, and are (presently)
422 * required for use on AthemeNet.
423 *
424 * Word to the wise: Do not use blacklists like SPEWS for blocking IRC
425 * connections.
426 *
1e56e993 427 * As of charybdis 2.1.3, you can do some keyword substitution on the rejection
92fb5c31 428 * reason. The available keyword substitutions are:
429 *
430 * ${ip} - the user's IP
431 * ${host} - the user's canonical hostname
432 * ${dnsbl-host} - the dnsbl hostname the lookup was done against
433 * ${nick} - the user's nickname
434 * ${network-name} - the name of the network
435 *
57b8cb0f 436 * Note: AHBL (the providers of the below *.ahbl.org BLs) request that they be
212380e3 437 * contacted, via email, at admins@2mbit.com before using these BLs.
438 * See <http://www.ahbl.org/services.php> for more information.
439 */
57b8cb0f 440blacklist {
4ea91f08
WP
441 host = "rbl.efnetrbl.org";
442 reject_reason = "${nick}, your IP (${ip}) is listed in EFnet's RBL. For assistance, see http://efnetrbl.org/?i=${ip}";
57b8cb0f 443
9f1913e7
JH
444 host = "dnsbl.dronebl.org";
445 reject_reason = "${nick}, your IP (${ip}) is listed in DroneBL. For assistance, see http://dronebl.org/lookup_branded.do?ip=${ip}&network=${network-name}";
446
212380e3 447# host = "ircbl.ahbl.org";
92fb5c31 448# 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 449#
450# host = "tor.ahbl.org";
92fb5c31 451# 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 452};
212380e3 453
454alias "NickServ" {
455 target = "NickServ";
456};
457
458alias "ChanServ" {
459 target = "ChanServ";
460};
461
462alias "OperServ" {
463 target = "OperServ";
464};
465
466alias "MemoServ" {
467 target = "MemoServ";
468};
469
4efc8651
G
470alias "HostServ" {
471 target = "HostServ";
472};
473
474alias "BotServ" {
475 target = "BotServ";
476};
477
b25b4a7c
JH
478alias "InfoServ" {
479 target = "InfoServ";
480};
481
9fc5811f
JH
482alias "GroupServ" {
483 target = "GroupServ";
484};
485
212380e3 486alias "NS" {
487 target = "NickServ";
488};
489
490alias "CS" {
491 target = "ChanServ";
492};
493
494alias "OS" {
495 target = "OperServ";
496};
497
498alias "MS" {
499 target = "MemoServ";
500};
501
4efc8651
G
502alias "HS" {
503 target = "HostServ";
504};
505
506alias "BS" {
507 target = "BotServ";
508};
509
b25b4a7c
JH
510alias "IS" {
511 target = "InfoServ";
512};
513
9fc5811f
JH
514alias "GS" {
515 target = "GroupServ";
516};
517
212380e3 518general {
519 hide_error_messages = opers;
520 hide_spoof_ips = yes;
521
522 /*
60e16d64
G
523 * default umodes: umodes to set upon connection
524 * If you have enabled the ip_cloaking extension, and you wish for
525 * incoming clients to be cloaked upon connection, +x must be in
526 * the umode string below.
212380e3 527 */
60e16d64 528 default_umodes = "+ix";
212380e3 529
530 default_operstring = "is an IRC Operator";
531 default_adminstring = "is a Server Administrator";
220c9db5 532 default_operhost = "staff.testnet.net";
c0e2aa60 533 #static_quit = "I like turtles!";
212380e3 534 servicestring = "is a Network Service";
535 disable_fake_channels = no;
6898ce9d 536 hide_channel_below_users = 3;
212380e3 537 tkline_expire_notices = no;
538 default_floodcount = 10;
539 failed_oper_notice = yes;
540 dots_in_ident=2;
212380e3 541 min_nonwildcard = 4;
542 min_nonwildcard_simple = 3;
543 max_accept = 100;
544 max_monitor = 100;
545 anti_nick_flood = yes;
546 max_nick_time = 20 seconds;
547 max_nick_changes = 5;
548 anti_spam_exit_message_time = 5 minutes;
e78f6850 549 use_part_messages = yes;
212380e3 550 ts_warn_delta = 30 seconds;
551 ts_max_delta = 5 minutes;
552 client_exit = yes;
553 collision_fnc = yes;
554 global_snotices = yes;
555 dline_with_reason = yes;
556 kline_delay = 0 seconds;
557 kline_with_reason = yes;
558 kline_reason = "K-Lined";
559 identify_service = "NickServ@services.int";
560 identify_command = "IDENTIFY";
561 non_redundant_klines = yes;
562 warn_no_nline = yes;
504f309e 563 use_propagated_bans = yes;
212380e3 564 stats_e_disabled = no;
565 stats_c_oper_only=no;
566 stats_h_oper_only=no;
567 stats_y_oper_only=no;
568 stats_o_oper_only=yes;
569 stats_P_oper_only=no;
570 stats_i_oper_only=masked;
571 stats_k_oper_only=masked;
572 map_oper_only = no;
573 operspy_admin_only = no;
574 operspy_dont_care_user_info = no;
837a020a 575 secret_channels_in_whois = no;
212380e3 576 caller_id_wait = 1 minute;
577 pace_wait_simple = 1 second;
578 pace_wait = 10 seconds;
579 short_motd = no;
580 ping_cookie = no;
581 connect_timeout = 30 seconds;
14340828 582 default_ident_timeout = 5;
212380e3 583 disable_auth = no;
584 no_oper_flood = yes;
1cc810d3 585 true_no_oper_flood = no;
212380e3 586 max_targets = 4;
587 client_flood = 20;
588 use_whois_actually = no;
589 oper_only_umodes = operwall, locops, servnotice;
590 oper_umodes = locops, servnotice, operwall, wallop;
591 oper_snomask = "+s";
592 burst_away = yes;
593 nick_delay = 0 seconds; # 15 minutes if you want to enable this
594 reject_ban_time = 1 minute;
595 reject_after_count = 3;
596 reject_duration = 5 minutes;
c3a82957
JT
597 throttle_duration = 60;
598 throttle_count = 4;
9ace21a7 599 expire_override_time = 5 minutes;
212380e3 600};
601
602modules {
603 path = "modules";
604 path = "modules/autoload";
605};