From 2cfc97053faba7582cd57701900de78ebacb12ce Mon Sep 17 00:00:00 2001 From: DukePyrolator Date: Wed, 16 Oct 2013 06:03:48 +0200 Subject: moved some config options from example.conf to nickserv.example.conf --- data/example.conf | 28 ---------------------------- data/nickserv.example.conf | 35 +++++++++++++++++++++++++++++++++++ 2 files changed, 35 insertions(+), 28 deletions(-) (limited to 'data') diff --git a/data/example.conf b/data/example.conf index c038d22f6..68a3a6583 100644 --- a/data/example.conf +++ b/data/example.conf @@ -392,11 +392,6 @@ options */ casemap = "ascii" - /* - * The maximum length of passwords - */ - passlen = 32 - /* * This key is used to initiate the random number generator. This number * MUST be random as you want your passcodes to be random. Don't give this @@ -531,11 +526,6 @@ options */ hideprivilegedcommands = yes - /* - * If set, Services do not allow ownership of nick names, only ownership of accounts. - */ - nonicknameownership = no - /* The regex engine to use, as provided by the regex modules. * Leave commented to disable regex matching. * @@ -557,24 +547,6 @@ options * Leave empty to default to English. */ #defaultlanguage = "es_ES.UTF-8" - - /* - * The username, and possibly hostname, used for fake users created when Services needs to - * hold a nickname. - */ - enforceruser = "enforcer" - enforcerhost = "localhost.net" - - /* - * The length of time Services hold nicknames. - */ - releasetimeout = 1m - - /* - * When a user's nick is forcibly changed to enforce a "nick kill", their new nick will start - * with this value. The rest will be made up of 6 or 7 digits. - */ - guestnickprefix = "Guest" } /* diff --git a/data/nickserv.example.conf b/data/nickserv.example.conf index e3afd1607..3e5e6b4d8 100644 --- a/data/nickserv.example.conf +++ b/data/nickserv.example.conf @@ -174,6 +174,41 @@ module * This directive is optional. */ #restrictopernicks = yes + + /* + * The username, and possibly hostname, used for fake users created when Services needs to + * hold a nickname. + */ + enforceruser = "enforcer" + enforcerhost = "services.host" + + /* + * The length of time Services hold nicknames. + * + * This directive is optional, but recommended. If not set it defaults to 1 minute. + */ + releasetimeout = 1m + + /* + * When a user's nick is forcibly changed to enforce a "nick kill", their new nick will start + * with this value. The rest will be made up of 6 or 7 digits. + * Make sure this is a valid nick and Nicklen+7 is not longer than the allowed Nicklen on your ircd. + * + * This directive is optional. If not set it defaults to "Guest" + */ + guestnickprefix = "Guest" + + /* + * If set, Services do not allow ownership of nick names, only ownership of accounts. + */ + nonicknameownership = no + + /* + * The maximum length of passwords + * + * This directive is optional. If not set it defaults to 32. + */ + passlen = 32 } /* -- cgit