about summary refs log tree commit diff
path: root/src/testsuite/ngircd-test1.conf
diff options
context:
space:
mode:
Diffstat (limited to 'src/testsuite/ngircd-test1.conf')
-rw-r--r--src/testsuite/ngircd-test1.conf43
1 files changed, 43 insertions, 0 deletions
diff --git a/src/testsuite/ngircd-test1.conf b/src/testsuite/ngircd-test1.conf
new file mode 100644
index 00000000..299bf7ca
--- /dev/null
+++ b/src/testsuite/ngircd-test1.conf
@@ -0,0 +1,43 @@
+# ngIRCd test suite
+# configuration file for test server #2
+
+[Global]
+	Name = ngircd.test.server
+	Info = ngIRCd Test-Server 1
+	Ports = 6789
+	MotdFile = ngircd-test1.motd
+	AdminEMail = admin@irc.server
+	MaxConnectionsIP = 0
+	OperCanUseMode = yes
+	MaxJoins = 4
+
+[Operator]
+	Name = TestOp
+	Password = 123
+
+[Server]
+	Name = ngircd.test.server2
+	MyPassword = pwd1
+	PeerPassword = pwd2
+
+[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
+
+# -eof-