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

Added disableraw directive to operserv block in new config.

git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@1479 5417fbe8-f217-4b02-8779-1006273d7864
This commit is contained in:
Naram Qashat cyberbotx@cyberbotx.com
2008-10-26 04:36:35 +00:00
parent 2df19fbcd7
commit 07824df829
3 changed files with 10 additions and 3 deletions
+7
View File
@@ -745,4 +745,11 @@ operserv
* is optional.
*/
#killonsqline = yes
/*
* Disables the highly destructive OperServ RAW command. This directive is optional, but HIGHLY
* recommended. Not setting this and causing problems with your network using RAW will not be
* supported.
*/
disableraw = yes
}
+1 -1
View File
@@ -386,7 +386,7 @@ E time_t SZLineExpiry;
E bool AkillOnAdd;
E bool KillonSGline;
E bool KillonSQline;
E int DisableRaw;
E bool DisableRaw;
E int WallOper;
E int WallBadOS;
E int WallOSGlobal;
+2 -2
View File
@@ -183,7 +183,7 @@ int RootNumber;
bool SuperAdmin;
int LogBot;
bool LogMaxUsers;
int DisableRaw;
bool DisableRaw;
time_t AutokillExpiry;
time_t ChankillExpiry;
time_t SGLineExpiry;
@@ -655,6 +655,7 @@ int ServerConfig::Read(bool bail)
{"operserv", "akillonadd", "no", new ValueContainerBool(&AkillOnAdd), DT_BOOLEAN, NoValidation},
{"operserv", "killonsgline", "no", new ValueContainerBool(&KillonSGline), DT_BOOLEAN, NoValidation},
{"operserv", "killonsqline", "no", new ValueContainerBool(&KillonSQline), DT_BOOLEAN, NoValidation},
{"operserv", "disableraw", "no", new ValueContainerBool(&DisableRaw), DT_BOOLEAN, NoValidation},
{NULL, NULL, NULL, NULL, DT_NOTHING, NoValidation}
};
/* These tags can occur multiple times, and therefore they have special code to read them
@@ -1233,7 +1234,6 @@ Directive directives[] = {
{"BotCoreModules", {{PARAM_STRING, PARAM_RELOAD, &BotCoreModules}}},
{"ChanCoreModules", {{PARAM_STRING, PARAM_RELOAD, &ChanCoreModules}}},
{"DefSessionLimit", {{PARAM_POSINT, 0, &DefSessionLimit}}},
{"DisableRaw", {{PARAM_SET, PARAM_RELOAD, &DisableRaw}}},
{"DontQuoteAddresses",
{{PARAM_SET, PARAM_RELOAD, &DontQuoteAddresses}}},
{"DumpCore", {{PARAM_SET, 0, &DumpCore}}},