]> arthur.barton.de Git - ngircd-alex.git/blob - src/testsuite/ngircd-test1.conf
Add "FNC" (forced nick changes) to ISUPPORT(005) numeric
[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         MaxPenaltyTime = 1
16
17 [Options]
18         OperCanUseMode = yes
19         Ident = no
20         IncludeDir = /var/empty
21         DNS = no
22         PAM = no
23
24 [Operator]
25         Name = TestOp
26         Password = 123
27
28 [Server]
29         Name = ngircd.test.server2
30         MyPassword = pwd1
31         PeerPassword = pwd2
32
33 [Server]
34         Name = ngircd.test.server3
35         MyPassword = pwd1
36         PeerPassword = pwd3
37
38 [Channel]
39         Name = InviteChannel
40         Modes = i
41
42 [Channel]
43         Name = #FullKeyed
44         Modes = lk
45         MaxUsers = 0
46         Key = Secret
47
48 [Channel]
49         Name = #TopicChannel
50         Modes = t
51         Topic = the topic
52
53 [Channel]
54         Name = #SecretChannel
55         Modes = s
56         Topic = A secret Channel
57
58 [Channel]
59         Name = &LocalChannel
60         Topic = A local Channel
61
62 [Channel]
63         Name = +ModelessChannel
64         Topic = A modeless Channel
65
66 # -eof-