1 /* doc/example.conf - ircd-ratbox Example configuration file
3 * Copyright (C) 2000-2002 Hybrid Development Team
4 * Copyright (C) 2002-2003 ircd-ratbox development team
6 * Written by ejb, wcampbel, db, leeh and others
8 * $Id: example.conf 23955 2007-05-14 17:22:36Z leeh $
13 * class {} blocks MUST be specified before anything that uses them. That
14 * means they must be defined before auth {} and before connect {}.
16 * auth {} blocks MUST be specified in order of precedence. The first one
17 * that matches a user will be used. So place spoofs first, then specials,
18 * then general access, then restricted.
20 * Both shell style (#) and C style comments are supported.
22 * Files may be included by either:
26 * Times/durations are written as:
27 * 12 hours 30 minutes 1 second
29 * Valid units of time:
30 * month, week, day, hour, minute, second
32 * Valid units of size:
33 * megabyte/mbyte/mb, kilobyte/kbyte/kb, byte
35 * Sizes and times may be singular or plural.
40 * This config file is NOT suitable for EFNet. EFNet admins should use
44 /* serverinfo {}: Contains information about the server. (OLD M:) */
46 /* name: the name of our server */
49 /* use ts6: whether we want to use the TS6 protocol to other servers
54 /* sid: the unique server id of our server. This must be three
55 * characters long. The first character must be a digit [0-9], the
56 * remaining two chars may be letters [A-Z] or digits [0-9].
58 * This must be specified even if use_ts6 is set to no.
62 /* description: the description of our server. '[' and ']' may not
63 * be used here for compatibility with older servers.
65 description = "ircd-ratbox test server";
67 /* network info: the name and description of the network this server
68 * is on. Shown in the 005 reply and used with serverhiding.
70 network_name = "MyNet";
71 network_desc = "This is My Network";
73 /* hub: allow this server to act as a hub and have multiple servers
78 /* vhost: the IP to bind to when we connect outward to ipv4 servers.
79 * This should be an ipv4 IP only.
81 #vhost = "192.169.0.1";
83 /* vhost6: the IP to bind to when we connect outward to ipv6 servers.
84 * This should be an ipv6 IP only.
86 #vhost6 = "3ffe:80e8:546::2";
88 /* default max clients: the default maximum number of clients
89 * allowed to connect. This can be changed once ircd has started by
91 * /quote set maxclients <limit>
93 default_max_clients = 10000;
96 /* admin {}: contains admin information about the server. (OLD A:) */
98 name = "Smurf target";
99 description = "Main Server Administrator";
100 email = "<syn@packets.r.us>";
103 /* log {}: contains information about logfiles. */
105 /* logfiles: the logfiles to use for specific activity. if these
106 * paths are defined, then ircd will log to them, otherwise it wont.
108 * The confs are, in order:
109 * - userlog: user exits
110 * - fuserlog: failed user connections
111 * - operlog: /oper usage
112 * - foperlog: failed /oper usage
113 * - serverlog: server connects/disconnects
115 * - klinelog: klines, etc
117 * - operspylog: operspy usage
118 * - ioerrorlog: IO errors
120 fname_userlog = "logs/userlog";
121 #fname_fuserlog = "logs/fuserlog";
122 fname_operlog = "logs/operlog";
123 #fname_foperlog = "logs/foperlog";
124 fname_serverlog = "logs/serverlog";
125 fname_glinelog = "logs/glinelog";
126 #fname_klinelog = "logs/klinelog";
127 fname_killlog = "logs/killlog";
128 fname_operspylog = "logs/operspylog";
129 #fname_ioerrorlog = "logs/ioerror";
132 /* class {}: contain information about classes for users (OLD Y:) */
134 /* class name must go above */
136 /* ping time: how often a client must reply to a PING from the
137 * server before they are dropped.
139 ping_time = 2 minutes;
141 /* number per ident: the number of users per user@host networkwide
142 * allowed to connect. Unidented connections are classified as
145 number_per_ident = 2;
147 /* number per ip: the number of local users per host allowed */
150 /* number per ip global: the number of network wide connections
151 * per host allowed for a user, including connections to the
154 number_per_ip_global = 5;
156 /* cidr_bitlen: Limits numbers of connections from a subnet size
157 * the following example makes the subnet /64 this is useful
158 * for IPv6 connections in particular
159 * Also note that the way ircd-ratbox is written if you have
160 * compiled support for IPv6, IPv4 cidr bitlens need to be modified
161 * Basically to get the approriate length add 96 to the IPv4 length
162 * For example for a /24 do 96+24 = 120
167 /* number_per_cidr: Number of connections to allow from a subnet of the
168 * size given in cidr_bitlen. 4 seems to be a good default to me.
172 /* max number: the maximum number of users allowed in this class */
175 /* sendq: the amount of data allowed in a clients queue before
182 ping_time = 1 minute 30 seconds;
189 ping_time = 5 minutes;
196 ping_time = 5 minutes;
198 /* connectfreq: only used in server classes. specifies the delay
199 * between autoconnecting to servers.
201 connectfreq = 5 minutes;
203 /* max number: the amount of servers to autoconnect to */
206 /* sendq: servers need a higher sendq as they send more data */
210 /* listen {}: contain information about the ports ircd listens on (OLD P:) */
212 /* port: the specific port to listen on. if no host is specified
213 * before, it will listen on all available IPs.
215 * ports are seperated via a comma, a range may be specified using ".."
218 /* port: listen on all available IPs, ports 5000 and 6665 to 6669 */
219 port = 5000, 6665 .. 6669;
221 /* host: set a specific IP/host the ports after the line will listen
222 * on. This may be ipv4 or ipv6.
227 host = "3ffe:1234:a:b:c::d";
231 /* auth {}: allow users to connect to the ircd (OLD I:) */
233 /* user: the user@host allowed to connect. multiple IPv4/IPv6 user
234 * lines are permitted per auth block.
236 user = "*@172.16.0.0/12";
237 user = "*test@123D:B567:*";
239 /* password: an optional password that is required to use this block.
240 * By default this is not encrypted, specify the flag "encrypted" in
241 * flags = ...; below if it is.
243 password = "letmein";
245 /* spoof: fake the users user@host to be be this. You may either
246 * specify a host or a user@host to spoof to. This is free-form,
247 * just do everyone a favour and dont abuse it. (OLD I: = flag)
249 spoof = "I.still.hate.packets";
251 /* Possible flags in auth:
253 * encrypted | password is encrypted with mkpasswd
254 * spoof_notice | give a notice when spoofing hosts
255 * exceed_limit (old > flag) | allow user to exceed class user limits
256 * kline_exempt (old ^ flag) | exempt this user from k/g/xlines
257 * gline_exempt (old _ flag) | exempt this user from glines
258 * spambot_exempt | exempt this user from spambot checks
259 * shide_exempt | exempt this user from serverhiding
260 * jupe_exempt | exempt this user from generating
261 * warnings joining juped channels
262 * resv_exempt | exempt this user from resvs
263 * flood_exempt | exempt this user from flood limits
265 * no_tilde (old - flag) | don't prefix ~ to username if no ident
266 * need_ident (old + flag) | require ident for user in this class
268 flags = kline_exempt, exceed_limit;
270 /* class: the class the user is placed in */
275 /* redirect: the server and port to redirect a user to. A user does
276 * not have to obey the redirection, the ircd just suggests to them
277 * an alternative server.
279 redirserv = "irc.ircd-ratbox.org";
282 user = "*.ircd-ratbox.org";
284 /* class: a class is required even though it is not used */
293 /* operator {}: defines ircd operators. (OLD O:)
294 * ircd-ratbox no longer supports local operators, privileges are
295 * controlled via flags.
298 /* name: the name of the oper must go above */
300 /* user: the user@host required for this operator. CIDR *is*
302 * multiple user="" lines are supported.
305 user = "*@127.0.0.1";
307 /* password: the password required to oper. Unless ~encrypted is
308 * contained in flags = ...; this will need to be encrypted using
309 * mkpasswd, MD5 is supported
311 password = "etcnjl8juSU1E";
313 /* rsa key: the public key for this oper when using Challenge.
314 * A password should not be defined when this is used, see
315 * doc/challenge.txt for more information.
317 #rsa_public_key_file = "/usr/local/ircd/etc/oper.pub";
319 /* umodes: the specific umodes this oper gets when they oper.
320 * If this is specified an oper will not be given oper_umodes
321 * These are described above oper_only_umodes in general {};
323 #umodes = locops, servnotice, operwall, wallop;
325 /* privileges: controls the activities and commands an oper is
326 * allowed to do on the server. You may prefix an option with ~ to
327 * disable it, ie ~operwall
329 * Default flags are operwall, remoteban and encrypted.
333 * encrypted: the password specified above is encrypted [DEFAULT]
334 * local_kill: allows local users to be /KILL'd
335 * global_kill: allows local and remote users to be
336 * /KILL'd (OLD 'O' flag)
337 * remote: allows remote SQUIT and CONNECT (OLD 'R' flag)
338 * kline: allows KILL, KLINE and DLINE (OLD 'K' flag)
339 * unkline: allows UNKLINE and UNDLINE (OLD 'U' flag)
340 * gline: allows GLINE (OLD 'G' flag)
341 * nick_changes: allows oper to see nickchanges (OLD 'N' flag)
343 * rehash: allows oper to REHASH config (OLD 'H' flag)
344 * die: allows DIE and RESTART (OLD 'D' flag)
345 * admin: gives admin privileges. admins
346 * may (un)load modules and see the
347 * real IPs of servers.
348 * hidden_admin: gives admin privileges except
349 * will not have the admin lines in
351 * xline: allows use of /quote xline/unxline
352 * operwall: allows the oper to send operwalls [DEFAULT]
353 * oper_spy: allows 'operspy' features to see through +s
354 * channels etc. see /quote help operspy
355 * hidden_oper: hides the oper from /stats p (OLD UMODE +p)
356 * remoteban: allows remote kline etc [DEFAULT]
358 flags = global_kill, remote, kline, unkline, gline,
359 die, rehash, admin, xline, operwall;
362 /* connect {}: controls servers we connect to (OLD C:, N:, H:, L:) */
363 connect "irc.uplink.com" {
364 /* the name must go above */
366 /* host: the host or IP to connect to. If a hostname is used it
367 * must match the reverse dns of the server.
369 host = "192.168.0.1";
371 /* vhost: the host or IP to bind to for this connection. If this
372 * is not specified, the default vhost (in serverinfo {}) is used.
374 #vhost = "192.168.0.50";
376 /* passwords: the passwords we send (OLD C:) and accept (OLD N:).
377 * The remote server will have these passwords reversed.
379 send_password = "password";
380 accept_password = "anotherpassword";
382 /* port: the port to connect to this server on */
385 /* hub mask: the mask of servers that this server may hub. Multiple
386 * entries are permitted
390 /* leaf mask: the mask of servers this server may not hub. Multiple
391 * entries are permitted. Useful for forbidding EU -> US -> EU routes.
395 /* class: the class this server is in */
398 /* flags: controls special options for this server
399 * encrypted - marks the accept_password as being crypt()'d
400 * autoconn - automatically connect to this server
401 * compressed - compress traffic via ziplinks
402 * topicburst - burst topics between servers
404 flags = compressed, topicburst;
407 connect "ipv6.some.server" {
408 host = "3ffd:dead:beef::1";
409 send_password = "password";
410 accept_password = "password";
413 /* aftype: controls whether the connection uses "ipv4" or "ipv6".
420 /* cluster {}; servers that we propagate things to automatically.
421 * NOTE: This does NOT grant them privileges to apply anything locally,
422 * you must add a seperate shared block for that. Clustering will
423 * only be done for actions by LOCAL opers, that arent directed
427 /* name: the server to share with, this can be a wildcard and may be
430 /* flags: list of what to share, all the name lines above this (up
431 * until another flags entry) will receive these flags.
433 * kline - share perm klines
434 * tkline - share temp klines
435 * unkline - share unklines
436 * locops - share locops
437 * xline - share perm xlines
438 * txline - share temp xlines
439 * unxline - share unxlines
440 * resv - share perm resvs
441 * tresv - share temp resvs
442 * unresv - share unresvs
443 * all - share all of the above
446 /* share klines/unklines/xlines with *.lan */
448 flags = kline, unkline, xline;
450 /* share locops with irc.ircd-ratbox.org and ircd.ircd-ratbox.org */
451 name = "irc.ircd-ratbox.org";
452 name = "ircd.ircd-ratbox.org";
456 /* If you are using the ratbox-services compatibility code, uncomment this. */
457 /* service{}: privileged servers (services). These servers have extra
458 * privileges such as setting login names on users and introducing clients
459 * with umode +S (unkickable). This does not allow them to set bans, you
460 * need a separate shared{} for that.
461 * Do not place normal servers here.
462 * There may be only one service{} block.
465 # /* name: the server name. These may be stacked. */
466 # name = "ratbox.services";
469 /* shared {}: users that are allowed to place remote bans on our server.
470 * NOTE: These are ordered top down. The first one the user@host and server
471 * matches will be used. Their access will then be decided on that
472 * block and will not fall back to another block that matches.
475 /* oper: the user@host and server the user must be on to set klines.
476 * The first field must be a user@host, the second field is an
477 * optional server. These may be stacked.
479 /* flags: list of what to allow them to place, all the oper lines
480 * above this (up until another flags entry) will receive these
481 * flags. This *must* be present.
483 * kline - allow setting perm/temp klines
484 * tkline - allow setting temp klines
485 * unkline - allow removing klines
486 * xline - allow setting perm/temp xlines
487 * txline - allow setting temp xlines
488 * unxline - allow removing xlines
489 * resv - allow setting perm/temp resvs
490 * tresv - allow setting temp resvs
491 * unresv - allow removing xlines
492 * all - allow oper/server to do all of above (not locops)
493 * locops - allow locops - only used for servers who cluster
494 * none - disallow everything
497 /* allow flame@*.leeh.co.uk on server irc.ircd-ratbox.org and
498 * allow leeh@*.leeh.co.uk on server ircd.ircd-ratbox.org to kline
500 oper = "flame@*.leeh.co.uk", "irc.ircd-ratbox.org";
501 oper = "leeh@*.leeh.co.uk", "ircd.ircd-ratbox.org";
504 /* you may forbid certain opers/servers from doing anything */
505 oper = "irc@vanity.oper", "*";
506 oper = "*@*", "irc.vanity.server";
507 oper = "irc@another.vanity.oper", "bigger.vanity.server";
510 /* or allow everyone to place temp klines */
515 /* exempt {}: IPs that are exempt from deny {} and Dlines. (OLD d:) */
517 ip = "192.168.0.0/16";
519 /* these may be stacked */
524 /* The channel block contains options pertaining to channels */
526 /* invex: Enable/disable channel mode +I, a n!u@h list of masks
527 * that can join a +i channel without an invite.
531 /* except: Enable/disable channel mode +e, a n!u@h list of masks
532 * that can join a channel through a ban (+b).
536 /* knock: Allows users to request an invite to a channel that
537 * is locked somehow (+ikl). If the channel is +p or you are banned
538 * the knock will not be sent.
542 /* invite ops only: Restrict /invite to ops on channels, rather than
543 * allowing unopped users to invite people to a -i channel.
545 invite_ops_only = yes;
547 /* knock delay: The amount of time a user must wait between issuing
550 knock_delay = 5 minutes;
552 /* knock channel delay: How often a knock to any specific channel
553 * is permitted, regardless of the user sending the knock.
555 knock_delay_channel = 1 minute;
557 /* max chans: The maximum number of channels a user can join/be on. */
558 max_chans_per_user = 15;
560 /* quiet on ban: stop banned people talking in channels. */
563 /* max bans: maximum number of +b/e/I modes in a channel */
566 /* splitcode: split users, split servers and either no join on split
567 * or no create on split must be enabled for split checking.
568 * splitmode will be entered on either split users or split servers
569 * dropping below the limit.
571 * you may force splitmode to be permanent by /quote set splitmode on
574 /* split users: when the usercount is lower than this level, consider
575 * ourselves split. this must be set for automatic splitmode
577 default_split_user_count = 0;
579 /* split servers: when the amount of servers that have acknowledged
580 * theyve finished bursting is lower than this, consider ourselves
581 * split. this must be set for automatic splitmode
583 default_split_server_count = 0;
585 /* split: no create: disallow users creating channels on split */
586 no_create_on_split = no;
588 /* split: no join: disallow users joining channels at all on a split */
589 no_join_on_split = no;
591 /* burst topicwho: when bursting topics, also burst the topic setter */
592 burst_topicwho = yes;
596 /* The serverhide block contains the options regarding serverhiding */
598 /* flatten links: this option will show all servers in /links appear
599 * that they are linked to this current server
603 /* links delay: how often to update the links file when it is
606 links_delay = 5 minutes;
608 /* hidden: hide this server from a /links output on servers that
609 * support it. this allows hub servers to be hidden etc.
613 /* disable hidden: prevent servers hiding themselves from a
619 /* The general block contains many of the options that were once compiled
620 * in options in config.h. The general block is read at start time.
623 /* hide error messages: defines whether error messages from
624 * servers are hidden or not. These can sometimes contain IPs and
625 * can have an adverse effect on server ip hiding. Set to:
626 * yes: hide from opers and admin
627 * opers: hide from opers only
628 * no: do not hide error messages
630 hide_error_messages = opers;
632 /* hide spoof ips: hide the real ips of spoofed users */
633 hide_spoof_ips = yes;
635 /* default invisible: set clients +i on connect */
636 default_invisible = no;
638 /* default operstring: defines the default oper response
639 * in /whois queries, eg "is an IRC Operator"
641 default_operstring = "is an IRC Operator";
643 /* default adminstring: defines the default admin response
644 * in /whois queries, eg "is a Server Administrator"
646 default_adminstring = "is a Server Administrator";
648 /* tkline_expire_notices: give a notice to opers when a tkline
651 tkline_expire_notices = no;
653 /* floodcount: the default value of floodcount that is configurable
654 * via /quote set floodcount. This is the amount of lines a user
655 * may send to any other user/channel in one second.
657 default_floodcount = 10;
659 /* disable fake channels: disable local users joining fake versions
660 * of channels, eg #foo^B^B. Disables bold, mirc colour, reverse,
661 * underline and hard space. (ASCII 2, 3, 22, 31, 160 respectively).
663 disable_fake_channels = no;
665 /* failed oper notice: send a notice to all opers on the server when
666 * someone tries to OPER and uses the wrong password, host or ident.
668 failed_oper_notice = yes;
670 /* dots in ident: the amount of '.' characters permitted in an ident
671 * reply before the user is rejected.
675 /* dot in ipv6: ircd-hybrid-6.0 and earlier will disallow hosts
676 * without a '.' in them. this will add one to the end. only needed
679 dot_in_ip6_addr = no;
681 /* min nonwildcard: the minimum non wildcard characters in k/d/g lines
682 * placed via the server. klines hand placed are exempt from limits.
683 * wildcard chars: '.' '*' '?' '@'
687 /* min nonwildcard simple: the minimum non wildcard characters in
688 * xlines/resvs placed via the server.
689 * wildcard chars: '*' '?'
691 min_nonwildcard_simple = 3;
693 /* max accept: maximum allowed /accept's for +g usermode */
696 /* max monitor: the maximum amount of nicknames a client may have in
697 * their monitor (server-side notify) list.
701 /* nick flood: enable the nickflood control code */
702 anti_nick_flood = yes;
704 /* nick flood: the nick changes allowed in the specified period */
705 max_nick_time = 20 seconds;
706 max_nick_changes = 5;
708 /* anti spam time: the minimum time a user must be connected before
709 * custom quit messages are allowed.
711 anti_spam_exit_message_time = 5 minutes;
713 /* ts delta: the time delta allowed between server clocks before
714 * a warning is given, or before the link is dropped. all servers
715 * should run ntpdate/rdate to keep clocks in sync
717 ts_warn_delta = 30 seconds;
718 ts_max_delta = 5 minutes;
720 /* client exit: prepend a users quit message with "Client exit: " */
723 /* dline reason: show the user the dline reason when they connect
726 dline_with_reason = yes;
728 /* kline delay: delay the checking of klines until a specified time.
729 * Useful if large kline lists are applied often to prevent the
732 kline_delay = 0 seconds;
734 /* kline reason: show the user the reason why they are k/d/glined
735 * on exit. may give away who set k/dline when set via tcm.
737 kline_with_reason = yes;
739 /* kline reason: make the users quit message on channels this
740 * reason instead of the oper's reason.
742 kline_reason = "Connection closed";
744 /* non redundant klines: flag and ignore redundant klines */
745 non_redundant_klines = yes;
747 /* warn no nline: warn opers about servers that try to connect but
748 * we dont have a connect {} block for. Twits with misconfigured
749 * servers can get really annoying with this enabled.
753 /* stats e disabled: disable stats e. useful if server ips are
754 * exempted and you dont want them listing on irc.
756 stats_e_disabled = no;
758 /* stats c oper only: make stats c (connect {}) oper only */
759 stats_c_oper_only=no;
761 /* stats h oper only: make stats h (hub_mask/leaf_mask) oper only */
762 stats_h_oper_only=no;
764 /* stats y oper only: make stats y (class {}) oper only */
765 stats_y_oper_only=no;
767 /* stats o oper only: make stats o (opers) oper only */
768 stats_o_oper_only=yes;
770 /* stats P oper only: make stats P (ports) oper only
771 * NOTE: users doing stats P will never be given the ips that the
772 * server listens on, simply the ports.
774 stats_P_oper_only=no;
776 /* stats i oper only: make stats i (auth {}) oper only. set to:
777 * yes: show users no auth blocks, made oper only.
778 * masked: show users first matching auth block
779 * no: show users all auth blocks.
781 stats_i_oper_only=masked;
783 /* stats k/K oper only: make stats k/K (klines) oper only. set to:
784 * yes: show users no auth blocks, made oper only
785 * masked: show users first matching auth block
786 * no: show users all auth blocks.
788 stats_k_oper_only=masked;
790 /* map oper only: make /map oper only */
793 /* operspy admin only: make operspy notices to +Z admin only */
794 operspy_admin_only = no;
796 /* caller id wait: time between notifying a +g user that somebody
799 caller_id_wait = 1 minute;
801 /* pace wait simple: time between use of less intensive commands
802 * (HELP, remote WHOIS, WHOWAS)
804 pace_wait_simple = 1 second;
806 /* pace wait: time between more intensive commands
807 * (ADMIN, INFO, LIST, LUSERS, MOTD, STATS, VERSION)
809 pace_wait = 10 seconds;
811 /* short motd: send clients a notice telling them to read the motd
812 * instead of forcing a motd to clients who may simply ignore it.
816 /* ping cookies: require clients to respond exactly to a ping command,
817 * can help block certain types of drones and FTP PASV mode spoofing.
821 /* connect timeout: sets how long we should wait for a connection
824 connect_timeout = 30 seconds;
826 /* disable auth: disables identd checking */
829 /* no oper flood: increase flood limits for opers. */
832 /* glines: enable glines, network wide temp klines */
835 /* gline time: the amount of time a gline will remain before expiring */
838 /* gline_min_cidr: If using a CIDR gline, the minimum length the
843 /* idletime: the maximum amount of time a user may idle before
844 * they are disconnected
848 /* REMOVE ME. The following line checks you've been reading. */
849 havent_read_conf = yes;
851 /* max targets: the maximum amount of targets in a single
852 * PRIVMSG/NOTICE. set to 999 NOT 0 for unlimited.
856 /* client flood: maximum number of lines in a clients queue before
857 * they are dropped for flooding.
861 /* use_whois_actually: send clients requesting a whois a numeric
862 * giving the real IP of non-spoofed clients to prevent DNS abuse.
864 use_whois_actually = yes;
866 /* usermodes configurable: a list of usermodes for the options below
868 * +b - bots - See bot and drone flooding notices
869 * +c - cconn - Client connection/quit notices
870 * +C - cconnext - Extended client connection/quit notices
871 * +d - debug - See debugging notices
872 * +f - full - See I: line full notices
873 * +g - callerid - Server Side Ignore
874 * +i - invisible - Not shown in NAMES or WHO unless you share a
876 * +k - skill - See server generated KILL messages
877 * +l - locops - See LOCOPS messages
878 * +n - nchange - See client nick changes
879 * +r - rej - See rejected client notices
880 * +s - servnotice - See general server notices
881 * +u - unauth - See unauthorised client notices
882 * +w - wallop - See server generated WALLOPS
883 * +x - external - See remote server connection and split notices
884 * +y - spy - See LINKS, STATS, TRACE notices etc.
885 * +z - operwall - See oper generated WALLOPS
886 * +Z - operspy - See operspy notices
889 /* oper only umodes: usermodes only opers may set */
890 oper_only_umodes = bots, cconn, debug, full, skill, nchange,
891 rej, spy, external, operwall, locops, unauth, idlehide;
893 /* oper umodes: default usermodes opers get when they /oper */
894 oper_umodes = locops, servnotice, operwall, wallop;
896 /* servlink path: path to 'servlink' program used by ircd to handle
897 * encrypted/compressed server <-> server links.
899 * only define if servlink is not in same directory as ircd itself.
901 #servlink_path = "/usr/local/ircd/bin/servlink";
903 /* use egd: if your system does not have *random devices yet you
904 * want to use OpenSSL and encrypted links, enable this. Beware -
905 * EGD is *very* CPU intensive when gathering data for its pool
909 /* egdpool path: path to EGD pool. Not necessary for OpenSSL >= 0.9.7
910 * which automatically finds the path.
912 #egdpool_path = "/var/run/egd-pool";
915 /* compression level: level of compression for compressed links between
918 * values are between: 1 (least compression, fastest)
919 * and: 9 (most compression, slowest).
921 #compression_level = 6;
923 /* burst_away: This enables bursting away messages to servers.
924 * With this disabled, we will only propogate AWAY messages
925 * as users send them, but never burst them. Be warned though
926 * enabling this could increase the size of a burst significantly
927 * for a large network, like EFnet.
931 /* reject time: the amount of rejections through klines/dlines etc
932 * allowed in the given time before the rejection is cached and
933 * a pseudo temp dline is placed
935 reject_ban_time = 1 minute;
936 reject_after_count = 3;
938 /* reject duration: the amount of time to cache the rejection */
939 reject_duration = 5 minutes;
941 /* max_unknown_ip: maximum number of pending connections to the server
942 * that are allowed per IP address
948 /* module path: paths to search for modules specified below and
951 path = "/usr/local/ircd/modules";
952 path = "/usr/local/ircd/modules/autoload";
954 /* module: the name of a module to load on startup/rehash */
955 #module = "some_module.so";