1
0
mirror of https://github.com/anope/anope.git synced 2026-07-02 23:03:12 +02:00

Added strictpasswords directive to options block in new config.

git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@1703 5417fbe8-f217-4b02-8779-1006273d7864
This commit is contained in:
cyberbotx
2008-11-15 17:52:45 +00:00
parent 12b60a78ff
commit 55e9bf5aea
3 changed files with 13 additions and 3 deletions
+10
View File
@@ -265,6 +265,16 @@ options {
* This directive is optional, and you are discouraged against enabling it.
*/
#nobackupokay = yes
/*
* If set, Services will perform more stringent checks on passwords. If this
* isn't set, Services will only disallow a password if it is the same as the
* entity (nickname or channel name) with which it is associated. When set,
* however, Services will also check that the password is at least five
* characters long, and in the future will probably check other things
* as well. This directive is optional, but recommended.
*/
strictpasswords = yes
}
/*
+1 -1
View File
@@ -284,7 +284,7 @@ E char *AutokillDBName;
E char *NewsDBName;
E bool NoBackupOkay;
E int StrictPasswords;
E bool StrictPasswords;
E int BadPassLimit;
E int BadPassTimeout;
E int UpdateTimeout;
+2 -2
View File
@@ -86,7 +86,7 @@ char **HostSetters;
int HostNumber = 0; /* needs to be set to 0 */
bool NoBackupOkay;
int StrictPasswords;
bool StrictPasswords;
int BadPassLimit;
int BadPassTimeout;
int UpdateTimeout;
@@ -639,6 +639,7 @@ int ServerConfig::Read(bool bail)
{"options", "userkey2", "0", new ValueContainerLUInt(&UserKey2), DT_LUINTEGER, NoValidation},
{"options", "userkey3", "0", new ValueContainerLUInt(&UserKey3), DT_LUINTEGER, NoValidation},
{"options", "nobackupokay", "no", new ValueContainerBool(&NoBackupOkay), DT_BOOLEAN, NoValidation},
{"options", "strictpasswords", "no", new ValueContainerBool(&StrictPasswords), DT_BOOLEAN, NoValidation},
{"nickserv", "nick", "NickServ", new ValueContainerChar(&s_NickServ), DT_CHARPTR | DT_NORELOAD, ValidateNotEmpty},
{"nickserv", "description", "Nickname Registration Service", new ValueContainerChar(&desc_NickServ), DT_CHARPTR | DT_NORELOAD, ValidateNotEmpty},
{"nickserv", "database", "nick.db", new ValueContainerChar(&NickDBName), DT_CHARPTR, ValidateNotEmpty},
@@ -1386,7 +1387,6 @@ Directive directives[] = {
{"GlobalOnCycleMessage",
{{PARAM_STRING, PARAM_RELOAD, &GlobalOnCycleMessage}}},
{"GlobalOnCycleUP", {{PARAM_STRING, PARAM_RELOAD, &GlobalOnCycleUP}}},
{"StrictPasswords", {{PARAM_SET, PARAM_RELOAD, &StrictPasswords}}},
{"TimeoutCheck", {{PARAM_TIME, PARAM_RELOAD, &TimeoutCheck}}},
{"UpdateTimeout", {{PARAM_TIME, PARAM_RELOAD, &UpdateTimeout}}},
{"UsePrivmsg", {{PARAM_SET, PARAM_RELOAD, &UsePrivmsg}}},