]> arthur.barton.de Git - ngircd-alex.git/blob - src/testsuite/ngircd-test1.conf
Testsuite: update configuration files for new config file format
[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         Ports = 6789
8         MotdFile = ngircd-test1.motd
9         AdminEMail = admin@irc.server
10
11 [Limits]
12         MaxConnectionsIP = 0
13         MaxJoins = 4
14
15 [Options]
16         OperCanUseMode = yes
17         Ident = no
18         PAM = no
19
20 [Operator]
21         Name = TestOp
22         Password = 123
23
24 [Server]
25         Name = ngircd.test.server2
26         MyPassword = pwd1
27         PeerPassword = pwd2
28
29 [Channel]
30         Name = InviteChannel
31         Modes = i
32
33 [Channel]
34         Name = #FullKeyed
35         Modes = lk
36         MaxUsers = 0
37         Key = Secret
38
39 [Channel]
40         Name = #TopicChannel
41         Modes = t
42         Topic = the topic
43
44 [Channel]
45         Name = #SecretChannel
46         Modes = s
47         Topic = A secret Channel
48
49 [Channel]
50         Name = &LocalChannel
51         Topic = A local Channel
52
53 [Channel]
54         Name = +ModelessChannel
55         Topic = A modeless Channel
56
57 # -eof-