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