]> arthur.barton.de Git - ngircd-alex.git/blob - src/testsuite/ngircd-test1.conf
Set NoPAM=yes in configuration files used for the testsuite
[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         NoPAM = yes
15
16 [Operator]
17         Name = TestOp
18         Password = 123
19
20 [Server]
21         Name = ngircd.test.server2
22         MyPassword = pwd1
23         PeerPassword = pwd2
24
25 [Channel]
26 # This name should be accepted as '#InviteChannel' by ngircd.
27         Name = InviteChannel
28         Modes = i
29
30 [Channel]
31         Name = #FullKeyed
32         Modes = lk
33         MaxUsers = 0
34         Key = Secret
35
36 [Channel]
37         Name = #TopicChannel
38         Modes = t
39         Topic = the topic
40
41 [Channel]
42         Name = #SecretChannel
43         Modes = s
44         Topic = A secret Channel
45
46 [Channel]
47         Name = &LocalChannel
48         Topic = A local Channel
49
50 [Channel]
51         Name = +ModelessChannel
52         Topic = A modeless Channel
53 # -eof-