blob: 233238aa1013f01092c49a211d10633d2dffa937 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
|
# ngIRCd test suite
# configuration file for test server #1
[Global]
Name = ngircd.test.server
Info = ngIRCd Test-Server 1
Listen = 127.0.0.1
Ports = 6789
MotdFile = ngircd-test1.motd
AdminEMail = admin@irc.server
[Limits]
MaxConnectionsIP = 0
MaxJoins = 4
MaxPenaltyTime = 1
[Options]
OperCanUseMode = yes
Ident = no
IncludeDir = /var/empty
DNS = no
PAM = no
[Operator]
Name = TestOp
Password = 123
[Server]
Name = ngircd.test.server2
MyPassword = pwd1
PeerPassword = pwd2
[Server]
Name = ngircd.test.server3
MyPassword = pwd1
PeerPassword = pwd3
[Channel]
Name = InviteChannel
Modes = i
[Channel]
Name = #FullKeyed
Modes = lk
MaxUsers = 0
Key = Secret
[Channel]
Name = #TopicChannel
Modes = t
Topic = the topic
[Channel]
Name = #SecretChannel
Modes = s
Topic = A secret Channel
[Channel]
Name = &LocalChannel
Topic = A local Channel
[Channel]
Name = +ModelessChannel
Topic = A modeless Channel
[Channel]
Name = MultiMode
Modes = +n +b nick!~user
Modes = +t
Modes = +b banned!~ghost@example.com
# -eof-
|