]> arthur.barton.de Git - ngircd-alex.git/blob - src/testsuite/ngircd-test.conf
Fix secret channel information leak
[ngircd-alex.git] / src / testsuite / ngircd-test.conf
1 # $Id: ngircd-test.conf,v 1.6 2008/02/17 00:00:13 fw Exp $
2
3 [Global]
4         Name = ngircd.test.server
5         Info = ngIRCd Test-Server
6         Ports = 6789
7         MotdFile = ngircd-test.motd
8         AdminEMail = admin@irc.server
9         MaxConnectionsIP = 0
10         OperCanUseMode = yes
11         MaxJoins = 4
12
13 [Operator]
14         Name = TestOp
15         Password = 123
16
17 [CHANNEL]
18         Name = #InviteChannel
19         Modes = i
20
21 [CHANNEL]
22         Name = #FullKeyed
23         Modes = lk
24         MaxUsers = 0
25         Key = Secret
26
27 [CHANNEL]
28         Name = #TopicChannel
29         Modes = t
30         Topic = the topic
31         
32 [CHANNEL]
33         Name = #SecretChannel
34         Modes = s
35         Topic = A secret Channel
36
37 # -eof-