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