diff options
Diffstat (limited to 'data')
| -rw-r--r-- | data/nickserv.example.conf | 12 |
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"; } /* |
