From 710d4848bd7c42fbd203d976aadd7044fdc6d8c7 Mon Sep 17 00:00:00 2001 From: Robby- Date: Mon, 28 Oct 2013 09:25:17 +0100 Subject: 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. --- data/nickserv.example.conf | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) (limited to 'data') 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"; } /* -- cgit