]> arthur.barton.de Git - ngircd-alex.git/blob - src/testsuite/ngircd-test1.conf
Change log messages issued for IP address forgeries
[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 [Channel]
33         Name = InviteChannel
34         Modes = i
35
36 [Channel]
37         Name = #FullKeyed
38         Modes = lk
39         MaxUsers = 0
40         Key = Secret
41
42 [Channel]
43         Name = #TopicChannel
44         Modes = t
45         Topic = the topic
46
47 [Channel]
48         Name = #SecretChannel
49         Modes = s
50         Topic = A secret Channel
51
52 [Channel]
53         Name = &LocalChannel
54         Topic = A local Channel
55
56 [Channel]
57         Name = +ModelessChannel
58         Topic = A modeless Channel
59
60 # -eof-