]> arthur.barton.de Git - ngircd-alex.git/blob - src/testsuite/ngircd-test1.conf
5cb7db7c7ad45dab1c4fc28e80e8527eb1872e8b
[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         IncludeDir = /var/empty
20         DNS = no
21         PAM = no
22
23 [Operator]
24         Name = TestOp
25         Password = 123
26
27 [Server]
28         Name = ngircd.test.server2
29         MyPassword = pwd1
30         PeerPassword = pwd2
31
32 [Server]
33         Name = ngircd.test.server3
34         MyPassword = pwd1
35         PeerPassword = pwd3
36
37 [Channel]
38         Name = InviteChannel
39         Modes = i
40
41 [Channel]
42         Name = #FullKeyed
43         Modes = lk
44         MaxUsers = 0
45         Key = Secret
46
47 [Channel]
48         Name = #TopicChannel
49         Modes = t
50         Topic = the topic
51
52 [Channel]
53         Name = #SecretChannel
54         Modes = s
55         Topic = A secret Channel
56
57 [Channel]
58         Name = &LocalChannel
59         Topic = A local Channel
60
61 [Channel]
62         Name = +ModelessChannel
63         Topic = A modeless Channel
64
65 # -eof-