Author: Andres Miller <a1kmm@mware.virtualave.net>
[ircu2.10.12-pk.git] / doc / example.conf
1 # ircd.conf - configuration file for ircd version ircu2.10
2 #
3 # Last Updated:  20, March 2002.
4 #
5 # Written by Niels <niels@undernet.org>, based on the original example.conf,
6 # server code and some real-life (ahem) experience.
7 #
8 # Updated and heavily modified by Braden <dbtem@yahoo.com>.
9 #
10 # Rewritten by A1kmm(Andrew Miller)<a1kmm@mware.virtualave.net> to support
11 # the new flex/bison configuration parser.
12 #
13 # Rewritten by A1kmm(Andrew Miller)<a1kmm@mware.virtualave.net> to support
14 # the new flex/bison configuration parser.
15 #
16 # Thanks and credits to: Run, Trillian, Cym, Morrissey, Chaos, Flynn,
17 #                        Xorath, WildThang, Mmmm, SeKs, Ghostwolf and
18 #                        all other Undernet IRC Admins and Operators,
19 #                        and programmers working on the Undernet ircd.
20 #
21 # This is an example of the configuration file used by the Undernet ircd.
22 #
23 # This document is based on a (fictious) server in Europe with a
24 # connection to the Undernet IRC network. It is primarily a leaf server,
25 # but if all the other hubs in Europe aren't in service, it can connect
26 # to one in the US by itself.
27 #
28 # The configuration format consists of a number of blocks in the format
29 #  BlockName { setting = number; setting2 = "string"; setting3 = yes; };
30 # Note that comments start from a #(hash) and go to the end of the line.
31 # Whitespace(space, tab, or carriage return/linefeed) are ignored and may
32 # be used to make the configuration file more readable.
33 #
34 # Please note that when ircd puts the configuration lines into practice,
35 # it parses them exactly the other way round than they are listed here.
36 # It uses the blocks in reverse order.
37 #
38 # This means that you should start your Client blocks with the
39 # "fall through", most vanilla one, and end with the most detailed.
40 #
41 # There is a difference between the "hostname" and the "server name"
42 # of the machine that the server is run on. For example, the host can
43 # have "veer.cs.vu.nl" as FQDN, and "Amsterdam.NL.EU.undernet.org" as
44 # server name.
45 # A "server mask" is something like "*.EU.UnderNet.org", which is
46 # matched by "Amsterdam.NL.EU.undernet.org" but not by
47 # "Manhattan.KS.US.undernet.org".
48 #
49 # Please do NOT just rename the example.conf to ircd.conf and expect
50 # it to work.
51
52
53 # [General]
54 #
55 # First some information about the server.
56 # General {
57 #         name = "servername";
58 #         vhost = "virtualhost";
59 #         description = "description";
60 #         numeric = numericnumber;
61 # };
62 #
63 # <virtual host> must contain either a * or a valid IPv4 address in
64 # dotted quad notation. (127.0.0.1) The address MUST be the address
65 # of a physical interface on the host. This address is used for outgoing
66 # connections only, see Port{} for listener virtual hosting.
67 # If in doubt put a * or the IP of your primary interface here.
68 # The server must be compiled with virtual hosting turned on to get this
69 # to work correctly.
70 #
71 # Note that <server numeric> has to be unique on the network your server
72 # is running on, must be between 0 and 4095, and is not updated on a rehash.
73 General {
74          name = "London.UK.Eu.UnderNet.org";
75          description = "University of London, England";
76          numeric = 1;
77 };
78
79 # [Admin]
80 #
81 # This sets information that can be retrieved with the /ADMIN command.
82 # It should contain at least an admin Email contact address.
83 Admin {
84   Location = "The University of London";
85   # At most two contact lines are allowed...
86   Contact = "Undernet IRC server";
87 # Note that times can be specified as a number, or by giving something
88 # like: 1 minutes 20 seconds, or 1*60+20.
89   Contact = "IRC Admins <irc@london.ac.uk>";
90 };
91
92 # [Classes]
93 #
94 # All connections to the server are associated with a certain "connection
95 # class", be they incoming or outgoing (initiated by the server), be they
96 # clients, servers or Martians. (Note that ircd doesn't have direct support
97 # Recommended client classes:
98 # for Martians (yet?); they will have to register as normal users. ;-)
99 # Take the following class blocks only as a guide.
100 # Class {
101 #  name = "<class>";
102 #  pingfreq = time;
103 #  connectfreq = time;
104 #  maxlinks = number;
105 #  sendq = size;
106 # };
107 #
108 # <connect freq> applies only to servers, and specifies the frequency 
109 # that the server tries to autoconnect. setting this to 0 will cause
110 # the server to attempt to connect repeatedly with no delay until the 
111 # <maximum links> condition is satisfied. This is a Bad Thing(tm).
112 # Note that times can be specified as a number, or by giving something
113 # like: 1 minutes 20 seconds, or 1*60+20.
114 # Client {
115 #  host = "user@host";
116 #  ip = "ip@host";
117 #  password = "password";
118 #  class = "classname";
119 # };
120 #
121 # <maximum links> should be set at either 0 or 1.
122 #
123 # Recommended server classes:
124 # All your server uplinks you are not a hub for.
125 Class {
126  name = "Server";
127  pingfreq = 1 minutes 30 seconds;
128  connectfreq = 5 minutes;
129  maxlinks = 1;
130  sendq = 9000000;
131 };
132 # All the leaf servers you hub for.
133 Class {
134  name = "LeafServer";
135  pingfreq = 1 minutes 30 seconds;
136  connectfreq = 5 minutes;
137  maxlinks = 0;
138  sendq = 9000000;
139 };
140
141 # Recommended client classes:
142 # Client classes. 10 = locals; 2 = for all .net and .com that are not
143 # in Europe; 1 = for everybody.
144 Class {
145  name = "Local";
146  pingfreq = 1 minutes 30 seconds;
147  sendq = 160000;
148  maxlinks = 100;
149 };
150 Client
151 {
152  class = "Other";
153  host = "*@*";
154 };
155 Class {
156  name = "America";
157  pingfreq = 1 minutes 30 seconds;
158  sendq = 80000;
159  maxlinks = 5;
160 };
161 Class {
162  name = "Other";
163  pingfreq = 1 minutes 30 seconds;
164  sendq = 160000;
165  maxlinks = 400;
166 };
167
168 # [Client]
169 #
170 # To allow clients to connect, they need authorization. This can be
171 # done based on hostmask, address mask, and/or with a password.
172 # With intelligent use of classes and the maxconnections field in the
173 # Client blocks, you can let in a specific domain, but get rid of all other
174 # domains in the same toplevel, thus setting up some sort of "reverse
175 # Kill block".
176 # Client {
177 #  host = "user@host";
178 #  ip = "ip@host";
179 #  password = "password";
180 #  class = "classname";
181 # };
182 #
183 # Technical description (for examples, see below):
184 # For every connecting client, the IP address is known.  A reverse lookup
185 # on this IP-number is done to get the (/all) hostname(s).
186 # Each hostname that belongs to this IP-number is matched to <hostmask>,
187 # and the Client {} is used when any matches; the client will then show
188 # with this particular hostname.  If none of the hostnames match, then
189 # the IP-number is matched against the <IP mask ...> field, if this matches
190 # then the Client{} is used nevertheless and the client will show with the
191 # first (main) hostname if any; if the IP-number did not resolve then the
192 # client will show with the dot notation of the IP-number.
193 # There is a special case for the UNIX domain sockets and localhost connections
194 # though; in this case the <IP mask ...> field is compared with the
195 # name of the server (thus not with any IP-number representation). The name
196 # of the server is the one returned in the numeric 002 reply, for example:
197 # 002 Your host is 2.undernet.org[jolan.ppro], running version ...
198 # Then the "jolan.ppro" is the name used for matching.
199 # Therefore, unix domain sockets, and connections to localhost would
200 # match this block:
201 # host = "*@jolan.ppro";
202 #
203 # This is the "fallback" entry. All .uk, .nl, and all unresolved are
204 # in these two lines.
205 # By using two different lines, multiple connections from a single IP
206 # are only allowed from hostnames which have both valid forward and
207 # reverse DNS mappings.
208 Client
209 {
210  class = "Other";
211  ip = "*@*";
212 };
213
214
215 Client
216 {
217  class = "Other";
218  host = "*@*";
219 };
220 # If you don't want unresolved dudes to be able to connect to your
221 # server, do not specify any "ip = " settings.
222 #
223 # Here, take care of all American ISPs.
224 Client
225 {
226  host = "*@*.com";
227  class = "America";
228 };
229
230 Client
231 {
232  host = "*@*.net";
233  class = "America";
234 };
235 # Now list all the .com / .net domains that you wish to have access...
236 # actually it's less work to do it this way than to do it the other
237 # way around - K-lining every single ISP in the US.
238 # I wish people in Holland just got a .nl domain, and not try to be
239 # cool and use .com...
240 Client { host = "*@*.wirehub.net"; class = "Other";};
241 Client { host = "*@*.planete.net"; class = "Other";};
242 Client { host = "*@*.ivg.com"; class = "Other";};
243 Client { host = "*@*.ib.com"; class = "Other";};
244 Client { host = "*@*.ibm.net"; class = "Other";};
245 Client { host = "*@*.hydro.com"; class = "Other";};
246 Client { host = "*@*.nl.net"; class = "Local";};
247
248 # You can request a more complete listing, including the "list of standard
249 # Kill blocks" from the Routing Committee; it will also be sent to you if
250 # you apply for a server and get accepted.
251 #
252 # Ourselves - this makes sure that we can get in, no matter how full
253 # the server is (hopefully).
254 Client
255 {
256  host = "*@*.london.ac.uk";
257  ip = "*@193.37.*";
258  class = "Local";
259 };
260
261 # You can put a digit (0..9) in the password value, which will make ircd
262 # only accept a client when the total number of connections to the network
263 # from the same IP number doesn't exceed this number.
264 # The following example would accept at most one connection per IP number
265 # from "*.swipnet.se" and at most two connections from dial up accounts
266 # that have "dial??.*" as host mask:
267 # Client {
268 #  host = "*@*.swipnet.se";
269 #  password = "1";
270 #  class = "Other";
271 # };
272 # Client {
273 #  host = "*@dial??.*";
274 #  password = "2";
275 #  class = "Other";
276 # };
277 #
278 # If you are not worried about who connects, this line will allow everyone
279 # to connect.
280 Client {
281  host = "*@*";
282  ip = "*@*";
283  class = "Other";
284 };
285
286
287 # [motd]
288 #
289 # It is possible to show a different Message of the Day to a connecting
290 # client depending on its origin.
291 # motd {
292 #  # Note: host can also be a classname.
293 #  host = "Other";
294 #  file = "path/to/motd/file";
295 # };
296 #
297 # DPATH/net_com.motd contains a special MOTD where users are encouraged
298 # to register their domains and get their own client{} lines if they're in
299 # Europe, or move to US.UnderNet.org if they're in the USA.
300 motd {
301  host = "*.net";
302  file = "net_com.motd";
303 };
304 motd {
305  host = "*.com";
306  file = "net_com.motd";
307 };
308 motd {
309  host = "America";
310  file = "net_com.motd";
311 };
312
313 # A different MOTD for ourselves, where we point out that the helpdesk
314 # better not be bothered with questions regarding irc...
315 motd {
316  host = "*.london.ac.uk";
317  file = "london.motd";
318 };
319
320 # [Server]
321 #
322 # One of the many nice features of Undernet is "Uworld", a program
323 # connected to the net as a server. This allows it to broadcast any mode
324 # change, thus allowing opers to, for example, "unlock" a channel that
325 # has been taken over.
326 # There is only one slight problem: the TimeStamp protocol prevents this.
327 # So there is a configuration option to allow them anyway from a certain
328 # server.
329 # Server {
330 #  # The servername or wildcard mask for it that this applies to.
331 #  name = "relservername";
332 #  # The mask of servers they are allowed to introduce(for hub=yes;) or
333 #  # not allowed to introduce(for leaf=yes).
334 #  mask = "servermask";
335 #  # No is assumed for these unless you set it to yes.
336 #  uworld = no;
337 #  leaf = no;
338 #  hub = yes;
339 # };
340 #
341 # Note: (1) These lines are agreed on by every server admin on Undernet;
342 # (2) These lines must be the same on every single server, or results
343 # will be disasterous; (3) This is a useful feature, not something that
344 # is a liability and abused regularly (well... :-)
345 # If you're on Undernet, you MUST have these lines. I cannnot stress
346 # this enough.  If all of the servers don't have the same lines, the
347 # servers will try to undo the mode hacks that Uworld does.  Make SURE that
348 # all of the servers have the EXACT same Ulines.
349 #
350 # If your server starts on a bit larger network, you'll probably get
351 # assigned one or two uplinks to which your server can connect.
352 # If your uplink(s) also connect to other servers than yours (which is
353 # probable), you need to define your uplink as being allowed to "hub".
354 # To do this, set "hub = yes;"
355 # You can also force a server(even one that doesn't connect to you)
356 # to be a leaf with "leaf = yes;"
357
358 Server {
359  name = "uworld.eu.undernet.org";
360  mask = "*";
361  uworld = yes;
362  hub = yes;
363 };
364 Server {
365  name = "uworld2.undernet.org";
366  mask = "*";
367  uworld = yes;
368  hub = yes;
369 };
370 Server {
371  name = "uworld.undernet.org";
372  mask = "*";
373  uworld = yes;
374  hub = yes;
375 };
376 Server {
377  name = "channels.undernet.org";
378  mask = "*";
379  uworld = yes;
380  hub = yes;
381 };
382 Server {
383  name = "channels2.undernet.org";
384  mask = "*";
385  uworld = yes;
386  hub = yes;
387 };
388 Server {
389  name = "channels3.undernet.org";
390  mask = "*";
391  uworld = yes;
392  hub = yes;
393 };
394 Server {
395  name = "channels4.undernet.org";
396  mask = "*";
397  uworld = yes;
398  hub = yes;
399 };
400 Server {
401  name = "channels5.undernet.org";
402  mask = "*";
403  uworld = yes;
404  hub = yes;
405 };
406 Server {
407  name = "channels6.undernet.org";
408  mask = "*";
409  uworld = yes;
410  hub = yes;
411 };
412 Server {
413  name = "Amsterdam.NL.Eu.UnderNet.org";
414  mask = "*";
415  hub = yes;
416 };
417 # An example just to make sure IRCnet doesn't get on undernet...
418 Server {
419  name = "*";
420  mask = "eris.berkeley.edu";
421  hub = yes;
422 };
423
424 # As of ircu2.10.05 is it possible to Jupe nicks. As per CFV-0095, the
425 # following nicks must be juped, it is not allowed to jupe others as well.
426 Jupe {
427  nick = "EuWorld,E,StatServ,NoteServ";
428  nick = "UWorld2,ChanSvr,ChanSaver,ChanServ";
429  nick = "Uworld,NickSvr,NickSaver,NickServ";
430  nick = "LPT1,X,login,LPT2,W,Undernet,COM1,V,protocol,COM2";
431  nick = "U,pass,COM3,Y,AUX,COM4,Z,newpass";
432 };
433
434 # [Kill]
435 #
436 # While running your server, you will most probably encounter individuals
437 # or groups of persons that you do not wish to have access to your server.
438 #
439 # For this purpose, the ircd understands "kill blocks". These are also
440 # known as K-lines, by virtue of the former config file format.
441 # Kill
442 # {
443 #   host = "user@host";
444 #   reason = "The reason the user will see";
445 # };
446 # It is possible to ban on the basis of the real name.
447 # It is also possible to use a file as comment for the ban, using
448 # file = "file":
449 # Kill
450 # {
451 #   realname = "realnametoban";
452 #   file = "path/to/file/with/reason/to/show";
453 # };
454 #
455 #
456 # The default reason is: "You are banned from this server"
457 # Note that K-lines are local to the server; if you ban a person or a
458 # whole domain from your server, they can get on IRC via any other server
459 # that doesn't have them K-lined (yet).
460 #
461 # With a simple comment, using quotes:
462 Kill { host = "*.au"; reason = "Please use a nearer server"; };
463 Kill { host = "*.edu"; reason = "Please use a nearer server"; };
464
465 # The file can contain for example, a reason, a link to the
466 # server rules and a contact address.
467 Kill
468 {
469  host = "*luser@unixbox.flooder.co.uk";
470  file = "kline/youflooded.txt";
471 };
472
473 # IP-based kill lines apply to all hosts, even if an IP address has a
474 # properly resolving host name.
475 Kill
476 {
477  host = "192.168.*";
478  file = "klines/martians";
479 };
480
481 # The realname field lets you ban by realname...
482 Kill
483 {
484  host = "*sub7*";
485  reason = "You are infected with a Trojan";
486 };
487
488 # [Connect]
489 #
490 # You probably want your server connected to other servers, so your users
491 # have other users to chat with.
492 # IRC servers connect to other servers forming a network with a star or
493 # tree topology. Loops are not allowed.
494 # In this network, two servers can be distinguished: "hub" and "leaf"
495 # servers. Leaf servers connect to hubs; hubs connect to each other.
496 # Of course, many servers can't be directly classified in one of these
497 # categories. Both a fixed and a rule-based decision making system for
498 # server links is provided for ircd to decide what links to allow, what
499 # to let humans do themselves, and what links to (forcefully) disallow.
500 #
501 # The Connect blocks
502 # define what servers the server connect to, and which servers are
503 # allowed to connect.
504 # Connect {
505 #  name = "servername";
506 #  host = "hostnameORip";
507 #  password = "passwd";
508 #  port = portno;
509 #  class = "classname";
510 # };
511 #
512 # The "port" field defines the default port the server tries to connect
513 # to if an operator uses /connect without specifying a port. This is also
514 # the port used when the server attempts to auto-connect to the remote 
515 # server. (See Class blocks for more informationa about auto-connects).
516 #
517 # Our primary uplink.
518 Connect {
519  name = "Amsterdam.NL.Eu.UnderNet.org";
520  host = "1.2.3.4";
521  password = "passwd";
522  port = 4400;
523  class = "Servers";
524 };
525
526 # [crule]
527 #
528 # For an advanced, real-time rule-based routing decision making system
529 # you can use crule blocks. For more information, see doc/readme.crules.
530 # CRULE
531 # {
532 #  server = "servermask";
533 #  rule = "connectrule";
534 #  # Setting all to yes makes the rule always apply. Otherwise it only
535 #  # applies to autoconnects.
536 #  all = yes;
537 # };
538 CRULE
539 {
540  server = "*.US.UnderNet.org";
541  rule = "connected(*.US.UnderNet.org)";
542 };
543 CRULE
544 {
545  server = "*.EU.UnderNet.org";
546  rule = "connected(Amsterdam.NL.EU.*)";
547 };
548
549 # The following block is recommended for leaf servers:
550 CRULE
551 {
552  server = "*";
553  rule = "directcon(*)";
554 };
555
556 # [Operator]
557 #
558 # Inevitably, you have reached the part about "IRC Operators". Oper status
559 # grants some special privileges to a user, like the power to make the
560 # server break or (try to) establish a connection with another server,
561 # and to "kill" users off IRC.
562 # I can write many pages about this; I will restrict myself to saying that
563 # if you want to appoint somebody as IRC Operator on your server, that
564 # person should be aware of his/her responsibilities, and that you, being
565 # the admin, will be held accountable for their actions.
566 #
567 # There are two sorts of IRC Operators: "local" and "global". Local opers
568 # can squit, connect and kill - but only locally: their +o user mode
569 # is not not passed along to other servers. On Undernet, this prevents
570 # them from using Uworld as well.
571 # Depending on some defines in include/config.h, local operators are also
572 # not allowed to /DIE and /RESTART the server.
573 # Operator {
574 #  local = no;
575 #  host = "host/IP mask";
576 #  name = "opername";
577 #  password = "encryptedpass";
578 #  class = "classname";
579 # };
580 #
581 # The encrypted password is optional.  If you wish to encrypt your password,
582 # there is a utility in the ircd.  Please read the file tools/README.  
583 Operator {
584  local = no;
585  host = "*@*.cs.vu.nl";
586  password = "VRKLKuGKn0jLt";
587  name = "Niels";
588  class = "Local";
589 };
590 Operator {
591  local = yes;
592  host = "*@*.uu.net";
593  password = "notencryptedpass";
594  name = "Niels";
595  class = "Local";
596 };
597
598 # Note that the <connection class> is optional, but leaving it away
599 # puts the opers in class "default", which usually only accepts one
600 # connection at a time.  If you want users to Oper up more then once per
601 # block, then use a connection class that allows more then one connection,
602 # for example (using class Local as in the example above):
603 #
604 # Once you OPER your connection class changes no matter where you are or
605 # your previous connection classes.  If the defined connection class is
606 # Local for the operator block, then your new connection class is Local.
607
608 # [Port]
609 # When your server gets more full, you will notice delays when trying to
610 # connect to your server's primary listening port. It is possible via the
611 # Port lines to specify additional ports for the ircd to listen to.
612 # De facto ports are: 6667 - standard; 6660-6669 - additional client
613 # ports;
614 # Undernet uses 4400 for server listener ports.
615 # These are just hints, they are in no way official IANA or IETF policies.
616 # IANA says we should use port 194, but that requires us to run as root,
617 # so we don't do that.
618 #
619 # Port {
620 #  port = number;
621 #  mask = "ipmask";
622 #  # Use this to control the interface you bind to.
623 #  vhost = "virtualhostip";
624 #  # Setting to yes makes this server only.
625 #  server = yes;
626 #  # Setting to yes makes the port "hidden" from stats.
627 #  hidden = yes;
628 # };
629 #
630 # The mask setting allows you to specify a range of IP addresses that
631 # you will allow connections from. This should only contain IP addresses
632 # and '*' if used. This field only uses IP addresses. This does not use
633 # DNS in any way so you can't use it to allow *.nl or *.uk. Attempting
634 # to specify anything other than numbers, dots and stars [0-9.*] will result
635 # in the port allowing connections from anyone.
636 #
637 # The interface setting allows multiply homed hosts to specify which
638 # interface to use on a port by port basis, if an interface is not specified
639 # the default interface will be used. The interface MUST be the complete
640 # IP address for a real hardware interface on the machine running ircd.
641 # If you want to use virtual hosting *YOU* *MUST* *USE* *THIS* otherwise it
642 # WILL bind to all interfaces - not what most people seem to expect.
643 #
644 Port {
645  server = yes;
646  port = 4400;
647 };
648
649 # This is a Server port that is Hidden
650 Port {
651  server = yes;
652  hidden = yes;
653  port = 4401;
654 };
655
656 # The following are normal client ports
657 Port { port = 6667; };
658 Port { port = 6668; };
659 Port {
660  mask = "192.168.*";
661  port = 6666;
662 };
663
664 # This is a hidden client port, listening on the interface associated
665 # with the IP address 168.8.21.107
666 Port {
667  mask = "168.8.21.107";
668  hidden = yes;
669  port = 7000;
670 };
671
672 # [features]
673 # IRC servers have a large number of options and features.  Most of these
674 # are set at compile time through the use of #define's--see "make config"
675 # for more details--but we are working to move many of these into the
676 # configuration file.  Features let you configure these at runtime.
677 # You only need one feature block in which you use
678 # "featurename" = "value1" , "value2", ..., "valuen-1", "valuen";
679 #
680 # The entire purpose of F:lines are so that you do not have to recompile
681 # the IRCD everytime you want to change a feature.  All of the features
682 # are listed below, and at the bottom is how to set logging.
683 #
684 # A Special Thanks to Kev for writing the documentation of F:lines.  It can
685 # be found at doc/readme.features and the logging documentation can be
686 # found at doc/readme.log.  The defaults used by the Undernet network are
687 # below.
688 #
689 features
690 {
691 #  "DOMAINNAME"="<obtained from /etc/resolv.conf by ./configure>";
692 #  "RELIABLE_CLOCK"="FALSE";
693 #  "BUFFERPOOL"="27000000";
694 #  "HAS_FERGUSON_FLUSHER"="FALSE";
695 #  "CLIENT_FLOOD"="1024";
696 #  "SERVER_PORT"="4400";
697 #  "NODEFAULTMOTD"="TRUE";
698 #  "MOTD_BANNER"="TRUE";
699 #  "KILL_IPMISMATCH"="FALSE";
700 #  "IDLE_FROM_MSG"="TRUE";
701 #  "HUB"="FALSE";
702 #  "WALLOPS_OPER_ONLY"="FALSE";
703 #  "NODNS"="FALSE";
704 #  "RANDOM_SEED"="<you should set one explicitly>";
705 #  "DEFAULT_LIST_PARAM"="TRUE";
706 #  "NICKNAMEHISTORYLENGTH"="800";
707 #  "HOST_HIDING"="FALSE";
708 #  "HIDDEN_HOST"="users.undernet.org";
709 #  "KILLCHASETIMELIMIT"="30";
710 #  "MAXCHANNELSPERUSER"="10";
711 #  "AVBANLEN"="40";
712 #  "MAXBANS"="30";
713 #  "MAXSILES"="15";
714 #  "HANGONGOODLINK="300";
715 # "HANGONRETRYDELAY" = "10";
716 # "CONNECTTIMEOUT" = "90";
717 # "TIMESEC" = "60";
718 # "MAXIMUM_LINKS" = "1";
719 # "PINGFREQUENCY" = "120";
720 # "CONNECTFREQUENCY" = "600";
721 # "DEFAULTMAXSENDQLENGTH" = "40000";
722 # "GLINEMAXUSERCOUNT" = "20";
723 # "MPATH" = "ircd.motd";
724 # "RPATH" = "remote.motd";
725 # "PPATH" = "ircd.pid";
726 # "VIRTUAL_HOST" = "FALSE";
727 # "TOS_SERVER" = "0x08";
728 # "TOS_CLIENT" = "0x08";
729 # "POLLS_PER_LOOP" = "200";
730 # "CRYPT_OPER_PASSWORD" = "TRUE";
731 # "OPER_NO_CHAN_LIMIT" = "TRUE";
732 # "OPER_MODE_LCHAN" = "TRUE";
733 # "OPER_WALK_THROUGH_LMODES" = "FALSE";
734 # "NO_OPER_DEOP_LCHAN" = "FALSE";
735 # "SHOW_INVISIBLE_USERS" = "TRUE";
736 # "SHOW_ALL_INVISIBLE_USERS" = "TRUE";
737 # "UNLIMIT_OPER_QUERY" = "FALSE";
738 # "LOCAL_KILL_ONLY" = "FALSE";
739 # "CONFIG_OPERCMDS" = "FALSE";
740 # "OPER_KILL" = "TRUE";
741 # "OPER_REHASH" = "TRUE";
742 # "OPER_RESTART" = "TRUE";
743 # "OPER_DIE" = "TRUE";
744 # "OPER_GLINE" = "TRUE";
745 # "OPER_LGLINE" = "TRUE";
746 # "OPER_JUPE" = "TRUE";
747 # "OPER_LJUPE" = "TRUE";
748 # "OPER_OPMODE" = "TRUE";
749 # "OPER_LOPMODE" = "TRUE";
750 # "OPER_BADCHAN" = "FALSE";
751 # "OPER_LBADCHAN" = "FALSE";
752 # "OPER_SET" = "FALSE";
753 # "OPERS_SEE_IN_SECRET_CHANNELS" = "TRUE";
754 # "OPER_WIDE_GLINE" = "TRUE";
755 # "OPER_LIST_CHAN" = "TRUE";
756 # "LOCOP_KILL" = "TRUE";
757 # "LOCOP_REHASH" = "TRUE";
758 # "LOCOP_RESTART" = "FALSE";
759 # "LOCOP_DIE" = "FALSE";
760 # "LOCOP_LGLINE" = "TRUE";
761 # "LOCOP_LJUPE" = "TRUE";
762 # "LOCOP_LOPMODE" = "TRUE";
763 # "LOCOP_LBADCHAN" = "FALSE";
764 # "LOCOP_SET" = "FALSE";
765 # "LOCOP_SEE_IN_SECRET_CHANNELS" = "FALSE";
766 # "LOCOP_WIDE_GLINE" = "FALSE";
767 # "LOCOP_LIST_CHAN" = "FALSE";
768 };
769
770 # Well, you have now reached the end of this sample configuration
771 # file. If you have any questions, feel free to mail
772 # <coder-com@undernet.org>.  If you are interested in linking your
773 # server to the Undernet IRC network visit
774 # http://www.routing-com.undernet.org/, and if there are any
775 # problems then contact <routing-com@undernet.org> asking for
776 # information. Upgrades of the Undernet ircd can be found on
777 # http://coder-com.undernet.org/.
778 #
779 # For the rest:  Good Luck!
780 #
781 #       -- Niels.