summaryrefslogtreecommitdiff
path: root/data
diff options
context:
space:
mode:
authorDukePyrolator <DukePyrolator@anope.org>2013-10-16 06:03:48 +0200
committerDukePyrolator <DukePyrolator@anope.org>2013-10-26 18:33:07 +0200
commit2cfc97053faba7582cd57701900de78ebacb12ce (patch)
treef72e04a159fb5a0e359aeebcf32e9f30a7b7c111 /data
parent6cde65a57f60228d15a9d993a31ecf9bf624f592 (diff)
moved some config options from example.conf to nickserv.example.conf
Diffstat (limited to 'data')
-rw-r--r--data/example.conf28
-rw-r--r--data/nickserv.example.conf35
2 files changed, 35 insertions, 28 deletions
diff --git a/data/example.conf b/data/example.conf
index c038d22f6..68a3a6583 100644
--- a/data/example.conf
+++ b/data/example.conf
@@ -393,11 +393,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
* key to anyone! Keep it private!
@@ -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
}
/*