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