diff options
| author | Alexander Barton <alex@barton.de> | 2008-11-13 22:46:06 +0100 |
|---|---|---|
| committer | Alexander Barton <alex@barton.de> | 2008-11-13 22:46:06 +0100 |
| commit | 7ad167f4c43948f19125123a27dbe68a93e863b8 (patch) | |
| tree | 465e4285ba654eaecefe818c08586c3dbbdf1788 /src/testsuite/ngircd-test1.conf | |
| parent | 920d0636ff5741cb191f895e97ad151186701816 (diff) | |
| download | ngircd-7ad167f4c43948f19125123a27dbe68a93e863b8.tar.gz ngircd-7ad167f4c43948f19125123a27dbe68a93e863b8.zip | |
Test suite: start two servers and test server-server links
I changed the test suite to start two test servers (on port 6789 and 6790), so server-server links can be tested as well for which I included the new test script "server-link-test.e". In addition the documentation of the test suite (src/testsuite/README) has been updated and is more complete now.
Diffstat (limited to 'src/testsuite/ngircd-test1.conf')
| -rw-r--r-- | src/testsuite/ngircd-test1.conf | 43 |
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- |