diff options
Diffstat (limited to 'src/config.c')
-rw-r--r-- | src/config.c | 13 |
1 files changed, 12 insertions, 1 deletions
diff --git a/src/config.c b/src/config.c index 8bbbd077d..31dc59fa7 100644 --- a/src/config.c +++ b/src/config.c @@ -117,6 +117,8 @@ int DumpCore; int LogUsers; int NickRegDelay; int UseSVSHOLD; +int UseTokens; +int UseSVS2MODE; int UseMail; char *SendMailPath; @@ -622,6 +624,8 @@ Directive directives[] = { {"UserKey2", {{PARAM_POSINT, PARAM_RELOAD, &UserKey2}}}, {"UserKey3", {{PARAM_POSINT, PARAM_RELOAD, &UserKey3}}}, {"UseSVSHOLD", {{PARAM_SET, PARAM_RELOAD, &UseSVSHOLD}}}, + {"UseSVS2MODE", {{PARAM_SET, PARAM_RELOAD, &UseSVS2MODE}}}, + {"UseTokens", {{PARAM_SET, 0, &UseTokens}}}, {"WallAkillExpire", {{PARAM_SET, PARAM_RELOAD, &WallAkillExpire}}}, {"WallBadOS", {{PARAM_SET, PARAM_RELOAD, &WallBadOS}}}, {"WallDrop", {{PARAM_SET, PARAM_RELOAD, &WallDrop}}}, @@ -941,7 +945,7 @@ int read_config(int reload) CHECK(RemoteServer2); } if (!reload) { - if (LocalHost) { + if (LocalHost && RemoteServer) { if ((!stricmp(LocalHost, RemoteServer)) && LocalPort == RemotePort) { printf @@ -1319,6 +1323,13 @@ int read_config(int reload) CHECK(DefconMessage); } + if (UseTokens) { + if (!ircd->token) { + alog("Anope does not support TOKENS for this ircd setting unsetting UseToken"); + UseTokens = 0; + } + } + /** * If they try to enable any email registration option, * make sure they have everything else they need too... |