Configuration: move "NoticeAuth" to GLOBAL section
This commit is contained in:
parent
d29e389779
commit
f99d33ddd9
|
@ -352,6 +352,7 @@ Conf_Test( void )
|
||||||
printf(" MaxConnectionsIP = %d\n", Conf_MaxConnectionsIP);
|
printf(" MaxConnectionsIP = %d\n", Conf_MaxConnectionsIP);
|
||||||
printf(" MaxJoins = %d\n", Conf_MaxJoins > 0 ? Conf_MaxJoins : -1);
|
printf(" MaxJoins = %d\n", Conf_MaxJoins > 0 ? Conf_MaxJoins : -1);
|
||||||
printf(" MaxNickLength = %u\n", Conf_MaxNickLength - 1);
|
printf(" MaxNickLength = %u\n", Conf_MaxNickLength - 1);
|
||||||
|
printf(" NoticeAuth = %s\n", yesno_to_str(Conf_NoticeAuth));
|
||||||
printf(" CloakHost = %s\n", Conf_CloakHost);
|
printf(" CloakHost = %s\n", Conf_CloakHost);
|
||||||
printf(" CloakUserToNick = %s\n\n", yesno_to_str(Conf_CloakUserToNick));
|
printf(" CloakUserToNick = %s\n\n", yesno_to_str(Conf_CloakUserToNick));
|
||||||
|
|
||||||
|
@ -359,7 +360,6 @@ Conf_Test( void )
|
||||||
printf(" DNS = %s\n", yesno_to_str(Conf_DNS));
|
printf(" DNS = %s\n", yesno_to_str(Conf_DNS));
|
||||||
printf(" Ident = %s\n", yesno_to_str(Conf_Ident));
|
printf(" Ident = %s\n", yesno_to_str(Conf_Ident));
|
||||||
printf(" PAM = %s\n", yesno_to_str(Conf_PAM));
|
printf(" PAM = %s\n", yesno_to_str(Conf_PAM));
|
||||||
printf(" NoticeAuth = %s\n", yesno_to_str(Conf_NoticeAuth));
|
|
||||||
puts("");
|
puts("");
|
||||||
|
|
||||||
opers_puts();
|
opers_puts();
|
||||||
|
@ -1194,6 +1194,11 @@ Handle_GLOBAL( int Line, char *Var, char *Arg )
|
||||||
Conf_MaxNickLength = Handle_MaxNickLength(Line, Arg);
|
Conf_MaxNickLength = Handle_MaxNickLength(Line, Arg);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
if(strcasecmp(Var, "NoticeAuth") == 0) {
|
||||||
|
/* send NOTICE AUTH messages to clients on connect */
|
||||||
|
Conf_NoticeAuth = Check_ArgIsTrue(Arg);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
if( strcasecmp( Var, "Listen" ) == 0 ) {
|
if( strcasecmp( Var, "Listen" ) == 0 ) {
|
||||||
/* IP-Address to bind sockets */
|
/* IP-Address to bind sockets */
|
||||||
|
@ -1280,11 +1285,6 @@ Handle_FEATURES(int Line, char *Var, char *Arg)
|
||||||
WarnPAM(Line);
|
WarnPAM(Line);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
if(strcasecmp(Var, "NoticeAuth") == 0) {
|
|
||||||
/* send NOTICE AUTH messages to clients on connect */
|
|
||||||
Conf_NoticeAuth = Check_ArgIsTrue(Arg);
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
Config_Error(LOG_ERR,
|
Config_Error(LOG_ERR,
|
||||||
"%s, line %d (section \"Features\"): Unknown variable \"%s\"!",
|
"%s, line %d (section \"Features\"): Unknown variable \"%s\"!",
|
||||||
|
|
Loading…
Reference in New Issue