summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--data/example_new.conf7
-rw-r--r--include/extern.h2
-rw-r--r--src/config.c4
3 files changed, 10 insertions, 3 deletions
diff --git a/data/example_new.conf b/data/example_new.conf
index 648b80420..081864827 100644
--- a/data/example_new.conf
+++ b/data/example_new.conf
@@ -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
}
diff --git a/include/extern.h b/include/extern.h
index 946e9135b..ea32a4a63 100644
--- a/include/extern.h
+++ b/include/extern.h
@@ -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;
diff --git a/src/config.c b/src/config.c
index e339009d5..ff144360e 100644
--- a/src/config.c
+++ b/src/config.c
@@ -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}}},