ngircd-test1.conf 1.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  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. MaxPenaltyTime = 1
  14. [Options]
  15. OperCanUseMode = yes
  16. Ident = no
  17. IncludeDir = /var/empty
  18. DNS = no
  19. PAM = no
  20. [Operator]
  21. Name = TestOp
  22. Password = 123
  23. [Server]
  24. Name = ngircd.test.server2
  25. MyPassword = pwd1
  26. PeerPassword = pwd2
  27. [Server]
  28. Name = ngircd.test.server3
  29. MyPassword = pwd1
  30. PeerPassword = pwd3
  31. [Channel]
  32. Name = InviteChannel
  33. Modes = i
  34. [Channel]
  35. Name = #FullKeyed
  36. Modes = lk
  37. MaxUsers = 0
  38. Key = Secret
  39. [Channel]
  40. Name = #TopicChannel
  41. Modes = t
  42. Topic = the topic
  43. [Channel]
  44. Name = #SecretChannel
  45. Modes = s
  46. Topic = A secret Channel
  47. [Channel]
  48. Name = &LocalChannel
  49. Topic = A local Channel
  50. [Channel]
  51. Name = +ModelessChannel
  52. Topic = A modeless Channel
  53. [Channel]
  54. Name = MultiMode
  55. Modes = +n +b nick!~user
  56. Modes = +t
  57. Modes = +b banned!~ghost@example.com
  58. # -eof-