]> arthur.barton.de Git - ngircd-alex.git/blob - src/testsuite/ngircd-test1.conf
testsuite: add more predefined channels to server config
[ngircd-alex.git] / src / testsuite / ngircd-test1.conf
1 # ngIRCd test suite
2 # configuration file for test server #2
3
4 [Global]
5         Name = ngircd.test.server
6         Info = ngIRCd Test-Server 1
7         Ports = 6789
8         MotdFile = ngircd-test1.motd
9         AdminEMail = admin@irc.server
10         MaxConnectionsIP = 0
11         OperCanUseMode = yes
12         MaxJoins = 4
13         NoIdent = yes
14
15 [Operator]
16         Name = TestOp
17         Password = 123
18
19 [Server]
20         Name = ngircd.test.server2
21         MyPassword = pwd1
22         PeerPassword = pwd2
23
24 [Channel]
25 # This name should be accepted as '#InviteChannel' by ngircd.
26         Name = InviteChannel
27         Modes = i
28
29 [Channel]
30         Name = #FullKeyed
31         Modes = lk
32         MaxUsers = 0
33         Key = Secret
34
35 [Channel]
36         Name = #TopicChannel
37         Modes = t
38         Topic = the topic
39
40 [Channel]
41         Name = #SecretChannel
42         Modes = s
43         Topic = A secret Channel
44
45 [Channel]
46         Name = &LocalChannel
47         Topic = A local Channel
48
49 [Channel]
50         Name = +ModelessChannel
51         Topic = A modeless Channel
52 # -eof-