]> arthur.barton.de Git - ngircd-alex.git/blob - src/testsuite/ngircd-test1.conf
Make configure[.ng] compatible with autoconf 1.10 again
[ngircd-alex.git] / src / testsuite / ngircd-test1.conf
1 # ngIRCd test suite
2 # configuration file for test server #1
3
4 [Global]
5         Name = ngircd.test.server
6         Info = ngIRCd Test-Server 1
7         Listen = 127.0.0.1
8         Ports = 6789
9         MotdFile = ngircd-test1.motd
10         AdminEMail = admin@irc.server
11
12 [Limits]
13         MaxConnectionsIP = 0
14         MaxJoins = 4
15
16 [Options]
17         OperCanUseMode = yes
18         Ident = no
19         PAM = no
20
21 [Operator]
22         Name = TestOp
23         Password = 123
24
25 [Server]
26         Name = ngircd.test.server2
27         MyPassword = pwd1
28         PeerPassword = pwd2
29
30 [Channel]
31         Name = InviteChannel
32         Modes = i
33
34 [Channel]
35         Name = #FullKeyed
36         Modes = lk
37         MaxUsers = 0
38         Key = Secret
39
40 [Channel]
41         Name = #TopicChannel
42         Modes = t
43         Topic = the topic
44
45 [Channel]
46         Name = #SecretChannel
47         Modes = s
48         Topic = A secret Channel
49
50 [Channel]
51         Name = &LocalChannel
52         Topic = A local Channel
53
54 [Channel]
55         Name = +ModelessChannel
56         Topic = A modeless Channel
57
58 # -eof-