diff options
| author | Alexander Barton <alex@barton.de> | 2014-02-02 20:28:21 +0100 |
|---|---|---|
| committer | Alexander Barton <alex@barton.de> | 2014-02-02 20:28:21 +0100 |
| commit | 755562d1477ed28e4e793fb42fa0cc0b295ea1b5 (patch) | |
| tree | 26531181d8071eda7fe093e544cfc57adbf78334 /doc | |
| parent | 384b27cee0c31ba26c58480b015ef2feb52c79f9 (diff) | |
| download | ngircd-755562d1477ed28e4e793fb42fa0cc0b295ea1b5.tar.gz ngircd-755562d1477ed28e4e793fb42fa0cc0b295ea1b5.zip | |
Services.txt: Update information for Anope 2.x
Diffstat (limited to 'doc')
| -rw-r--r-- | doc/Services.txt | 16 |
1 files changed, 12 insertions, 4 deletions
diff --git a/doc/Services.txt b/doc/Services.txt index 2704f021..2cef7781 100644 --- a/doc/Services.txt +++ b/doc/Services.txt @@ -41,8 +41,8 @@ Example: ServiceMask = *Serv -Setting up Anope 1.9.x -~~~~~~~~~~~~~~~~~~~~~~ +Setting up Anope 1.9.x & 2.x +~~~~~~~~~~~~~~~~~~~~~~~~~~~~ Anope 1.9.8 or later (<http://www.anope.org/>) can be used with ngIRCd using the "ngircd" protocol module. @@ -66,20 +66,28 @@ In conf/services.conf: } # Load ngIRCd protocol module - module { name = "ngircd" } + module + { + name = "ngircd" + } networkinfo { # Must be set to the "MaxNickLength" setting of ngIRCd! nicklen = 9 + # When not using "strict mode", which is the default: + userlen = 20 + chanlen = 50 } In conf/nickserv.conf: - nickserv + module { + name = "nickserv" + # not required if you are running ngIRCd with a higher nickname limit # ("MaxNickLength") than 11 characters, but REQUIRED by default! guestnickprefix = "G-" |