ngircd-test1.conf 835 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. # ngIRCd test suite
  2. # configuration file for test server #2
  3. [Global]
  4. Name = ngircd.test.server
  5. Info = ngIRCd Test-Server 1
  6. Ports = 6789
  7. MotdFile = ngircd-test1.motd
  8. AdminEMail = admin@irc.server
  9. MaxConnectionsIP = 0
  10. OperCanUseMode = yes
  11. MaxJoins = 4
  12. NoIdent = yes
  13. [Operator]
  14. Name = TestOp
  15. Password = 123
  16. [Server]
  17. Name = ngircd.test.server2
  18. MyPassword = pwd1
  19. PeerPassword = pwd2
  20. [Channel]
  21. # This name should be accepted as '#InviteChannel' by ngircd.
  22. Name = InviteChannel
  23. Modes = i
  24. [Channel]
  25. Name = #FullKeyed
  26. Modes = lk
  27. MaxUsers = 0
  28. Key = Secret
  29. [Channel]
  30. Name = #TopicChannel
  31. Modes = t
  32. Topic = the topic
  33. [Channel]
  34. Name = #SecretChannel
  35. Modes = s
  36. Topic = A secret Channel
  37. [Channel]
  38. Name = &LocalChannel
  39. Topic = A local Channel
  40. [Channel]
  41. Name = +ModelessChannel
  42. Topic = A modeless Channel
  43. # -eof-