mirror of
https://github.com/anope/anope.git
synced 2026-07-03 05:53:12 +02:00
Added maxregistered directive to chanserv directive in new config.
git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@1433 5417fbe8-f217-4b02-8779-1006273d7864
This commit is contained in:
@@ -365,4 +365,11 @@ chanserv
|
||||
* and signkick. If you really want no defaults, use "none" by itself as the option.
|
||||
*/
|
||||
defaults="keeptopic peace secure securefounder signkick xop"
|
||||
|
||||
/*
|
||||
* The maximum number of channels which may be registered to a single nickname. This directive is optional,
|
||||
* but recommended. If not set, there will be no restriction on the numbers of channels a single nickname
|
||||
* can have registered.
|
||||
*/
|
||||
maxregistered = 20
|
||||
}
|
||||
|
||||
+1
-1
@@ -576,6 +576,7 @@ int ServerConfig::Read(bool bail)
|
||||
{"chanserv", "description", "Channel Registration Service", new ValueContainerChar(&desc_ChanServ), DT_CHARPTR | DT_NORELOAD, ValidateNotEmpty},
|
||||
{"chanserv", "database", "chan.db", new ValueContainerChar(&ChanDBName), DT_CHARPTR, ValidateNotEmpty},
|
||||
{"chanserv", "defaults", "keetopic secure securefounder signkick", new ValueContainerString(&CSDefaults), DT_BOOLEAN, NoValidation},
|
||||
{"chanserv", "maxregistered", "0", new ValueContainerInt(&CSMaxReg), DT_INTEGER, NoValidation},
|
||||
{NULL, NULL, NULL, NULL, DT_NOTHING, NoValidation}
|
||||
};
|
||||
/* These tags can occur multiple times, and therefore they have special code to read them
|
||||
@@ -1186,7 +1187,6 @@ Directive directives[] = {
|
||||
{"CSInhabit", {{PARAM_TIME, PARAM_RELOAD, &CSInhabit}}},
|
||||
{"CSListMax", {{PARAM_POSINT, PARAM_RELOAD, &CSListMax}}},
|
||||
{"CSListOpersOnly", {{PARAM_SET, PARAM_RELOAD, &CSListOpersOnly}}},
|
||||
{"CSMaxReg", {{PARAM_POSINT, 0, &CSMaxReg}}},
|
||||
{"CSRestrictGetPass", {{PARAM_SET, PARAM_RELOAD, &CSRestrictGetPass}}},
|
||||
{"CSOpersOnly", {{PARAM_SET, PARAM_RELOAD, &CSOpersOnly}}},
|
||||
{"DefSessionLimit", {{PARAM_POSINT, 0, &DefSessionLimit}}},
|
||||
|
||||
Reference in New Issue
Block a user