Services.txt 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117
  1. ngIRCd - Next Generation IRC Server
  2. http://ngircd.barton.de/
  3. (c)2001-2011 Alexander Barton and Contributors.
  4. ngIRCd is free software and published under the
  5. terms of the GNU General Public License.
  6. -- Services.txt --
  7. At the moment, ngIRCd doesn't implement a "special IRC services interface".
  8. But services acting as a "regular server" are supported, either using the IRC
  9. protocol defined in RFC 1459 or RFC 2812.
  10. Support for Services has been tested using "IRC Services" version 5.x by
  11. Andrew Church (<http://achurch.org/services/>), Anope 1.9 using a
  12. preliminary protocol module for ngIRCd (<http://www.anope.org/>), and
  13. Atheme 7.0.2 or later.
  14. This document describes setting up ngIRCd and these services.
  15. Setting up ngIRCd
  16. ~~~~~~~~~~~~~~~~~
  17. The "pseudo server" handling the IRC services is configured as a regular
  18. remote server in the ngircd.conf(5). In addition the variable "ServiceMask"
  19. should be set, enabling this ngIRCd to recognize the "pseudo users" as IRC
  20. services instead of regular IRC users.
  21. Example:
  22. [SERVER]
  23. Name = services.irc.net
  24. MyPassword = 123abc
  25. PeerPassword = 123abc
  26. ServiceMask = *Serv
  27. Setting up Anope 1.9.x
  28. ~~~~~~~~~~~~~~~~~~~~~~
  29. Anope 1.9.4 (and above) can be used with ngIRCd using a preliminary "ngircd"
  30. protocol module contained in our contrib/Anope/ directory. Please see the
  31. file contrib/Anope/README for installation instructions!
  32. After patching and installing Anope, at least the following configuration
  33. variables have to be adjusted in data/services.conf, in addition to all the
  34. settings marked as required:
  35. uplink
  36. {
  37. host = "server.irc.net"
  38. port = 6667
  39. password = "123abc"
  40. }
  41. serverinfo
  42. {
  43. name = "services.irc.net"
  44. type = "ngircd"
  45. }
  46. Setting up IRC Services 5.1.x
  47. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  48. IRC Services 5.1.3 and above can be used with ngIRCd using the "rfc1459"
  49. protocol module.
  50. Please note that versions up to and including 5.1.3 contain a bug that
  51. sometimes causes IRC Services to hang on startup. There are two workarounds:
  52. a) send the services process a HUP signal ("killall -HUP ircservices")
  53. b) apply this patch to the IRC Services source tree:
  54. <ftp://ngircd.barton.de/ngircd/contrib/IRCServices513-FlushBuffer.patch>
  55. At least the following settings have to be tweaked, in addition to all the
  56. settings marked as required by IRC Services:
  57. In ircservices.conf:
  58. Variable Example value
  59. RemoteServer server.irc.net 6667 "123abc"
  60. ServerName "services.irc.net"
  61. LoadModule protocol/rfc1459
  62. In modules.conf:
  63. Module protocol/rfc1459
  64. The documentation of IRC Services can be found here:
  65. <http://www.ircservices.za.net/docs/>
  66. Setting up Atheme 7.0.2 or later
  67. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  68. Atheme 7.0.2 or later may be used with ngIRCd using the "ngircd" protocol
  69. module.
  70. The following settings need to be in atheme.conf:
  71. loadmodule "modules/protocol/ngircd";
  72. uplink "server.irc.net" {
  73. password = "123abc";
  74. port = 6667;
  75. };
  76. The documentation of Atheme can be found in the doc/ directory of the
  77. Atheme source distribution.
  78. Please let us know if you are successfully using other IRC service packages or
  79. which problems you encounter, thanks!