ircu2.10.12 pk910 fork
[ircu2.10.12-pk.git] / tests / ircd.conf
1 General {
2         name = "irc.example.net";
3         vhost = "127.0.0.1";
4         description = "Test IRC server";
5         numeric = 1;
6 };
7
8 Admin {
9         Location = "Right Here, Right Now";
10         Location = "Testbench IRC server";
11         Contact = "root@localhost";
12 };
13
14 Class {
15         name = "Server";
16         pingfreq = 90 seconds;
17         connectfreq = 5 minutes;
18         sendq = 9 megabytes;
19         maxlinks = 10;
20 };
21
22 Connect { name = "irc-2.example.net"; host = "127.0.0.1"; port = 7610; password = "password"; class = "Server"; autoconnect = no; };
23 Connect { name = "irc-3.example.net"; host = "127.0.0.1"; port = 7620; password = "password"; class = "Server"; autoconnect = no; };
24
25 Class {
26         name = "Local";
27         pingfreq = 1 minutes 30 seconds;
28         sendq = 160000;
29         maxlinks = 100;
30 };
31
32 Client { ip = "127.*"; class = "Local"; };
33 Operator { local = no; class = "Local"; host = "*@127.*"; password = "$PLAIN$oper"; name = "oper"; };
34 Port { server = yes; port = 7600; };
35 Port { port = 7601; };
36
37 Features {
38         "HUB" = "TRUE";
39 };