]> arthur.barton.de Git - ngircd-alex.git/blob - src/testsuite/ngircd-test1.conf
Test suite: start two servers and test server-server links
[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
14 [Operator]
15         Name = TestOp
16         Password = 123
17
18 [Server]
19         Name = ngircd.test.server2
20         MyPassword = pwd1
21         PeerPassword = pwd2
22
23 [Channel]
24         Name = #InviteChannel
25         Modes = i
26
27 [Channel]
28         Name = #FullKeyed
29         Modes = lk
30         MaxUsers = 0
31         Key = Secret
32
33 [Channel]
34         Name = #TopicChannel
35         Modes = t
36         Topic = the topic
37         
38 [Channel]
39         Name = #SecretChannel
40         Modes = s
41         Topic = A secret Channel
42
43 # -eof-