]> arthur.barton.de Git - ngircd-alex.git/blob - src/testsuite/ngircd-test1.conf
Add support for up to 3 targets in WHOIS queries.
[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         Ports = 6789
8         MotdFile = ngircd-test1.motd
9         AdminEMail = admin@irc.server
10         MaxConnectionsIP = 0
11         OperCanUseMode = yes
12         MaxJoins = 4
13
14 [Features]
15         Ident = no
16         PAM = no
17
18 [Operator]
19         Name = TestOp
20         Password = 123
21
22 [Server]
23         Name = ngircd.test.server2
24         MyPassword = pwd1
25         PeerPassword = pwd2
26
27 [Channel]
28         Name = InviteChannel
29         Modes = i
30
31 [Channel]
32         Name = #FullKeyed
33         Modes = lk
34         MaxUsers = 0
35         Key = Secret
36
37 [Channel]
38         Name = #TopicChannel
39         Modes = t
40         Topic = the topic
41
42 [Channel]
43         Name = #SecretChannel
44         Modes = s
45         Topic = A secret Channel
46
47 [Channel]
48         Name = &LocalChannel
49         Topic = A local Channel
50
51 [Channel]
52         Name = +ModelessChannel
53         Topic = A modeless Channel
54
55 # -eof-