summaryrefslogtreecommitdiff
path: root/data
diff options
context:
space:
mode:
authorRobby- <robby@chat.be>2013-10-28 09:25:17 +0100
committerRobby- <robby@chat.be>2013-10-28 09:25:17 +0100
commit710d4848bd7c42fbd203d976aadd7044fdc6d8c7 (patch)
treefe250804cdd1c30f162995d2234ff2797c5e838b /data
parentbd3bed21189d0f03e499b1c54840a1cafdd96f1a (diff)
Fix kill and killquick default expiry times.
ns_access and ns_cert: Fix accessmax defaults, also state in the config that 0 is not a valid value.
Diffstat (limited to 'data')
-rw-r--r--data/nickserv.example.conf12
1 files changed, 11 insertions, 1 deletions
diff --git a/data/nickserv.example.conf b/data/nickserv.example.conf
index a3db10c18..4791af26a 100644
--- a/data/nickserv.example.conf
+++ b/data/nickserv.example.conf
@@ -249,6 +249,7 @@ module
/*
* The maximum number of entries allowed on a nickname's access list.
+ * If not set, the default is 32. This number cannot be set to 0.
*/
accessmax = 32
@@ -297,7 +298,16 @@ command { service = "NickServ"; name = "ALIST"; command = "nickserv/alist"; }
*
* Used for configuring your SSL certificate list, which can be used to automatically identify you.
*/
-module { name = "ns_cert"; accessmax = 5; }
+module
+{
+ name = "ns_cert"
+
+ /*
+ * The maximum number of entries allowed on a nickname's certificate fingerprint list.
+ * The default is 5. This number cannot be set to 0.
+ */
+ accessmax = 5
+}
command { service = "NickServ"; name = "CERT"; command = "nickserv/cert"; }
/*