ngircd-test1.conf 935 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. # ngIRCd test suite
  2. # configuration file for test server #1
  3. [Global]
  4. Name = ngircd.test.server
  5. Info = ngIRCd Test-Server 1
  6. Listen = 127.0.0.1
  7. Ports = 6789
  8. MotdFile = ngircd-test1.motd
  9. AdminEMail = admin@irc.server
  10. [Limits]
  11. MaxConnectionsIP = 0
  12. MaxJoins = 4
  13. [Options]
  14. OperCanUseMode = yes
  15. Ident = no
  16. IncludeDir = /var/empty
  17. DNS = no
  18. PAM = no
  19. [Operator]
  20. Name = TestOp
  21. Password = 123
  22. [Server]
  23. Name = ngircd.test.server2
  24. MyPassword = pwd1
  25. PeerPassword = pwd2
  26. [Server]
  27. Name = ngircd.test.server3
  28. MyPassword = pwd1
  29. PeerPassword = pwd3
  30. [Channel]
  31. Name = InviteChannel
  32. Modes = i
  33. [Channel]
  34. Name = #FullKeyed
  35. Modes = lk
  36. MaxUsers = 0
  37. Key = Secret
  38. [Channel]
  39. Name = #TopicChannel
  40. Modes = t
  41. Topic = the topic
  42. [Channel]
  43. Name = #SecretChannel
  44. Modes = s
  45. Topic = A secret Channel
  46. [Channel]
  47. Name = &LocalChannel
  48. Topic = A local Channel
  49. [Channel]
  50. Name = +ModelessChannel
  51. Topic = A modeless Channel
  52. # -eof-