New configuration option "PredefChannelsOnly": if set, make
all JOINs to-non existants channel return ERR_BANNEDFROMCHAN_MSG, restricting users to those channels defined in the config file.
This commit is contained in:
parent
74883f57da
commit
058d3085a9
|
@ -16,6 +16,8 @@ ngIRCd HEAD
|
||||||
- Changed Numerics 265 and 266 to follow ircd 2.11.x "standards".
|
- Changed Numerics 265 and 266 to follow ircd 2.11.x "standards".
|
||||||
- Allow PASS syntax defined in RFC 1459 for server links, too.
|
- Allow PASS syntax defined in RFC 1459 for server links, too.
|
||||||
- Enhanced ISUPPORT message (005 numeric).
|
- Enhanced ISUPPORT message (005 numeric).
|
||||||
|
- New configuration option "PredefChannelsOnly": if set, clients can
|
||||||
|
only join predefined channels.
|
||||||
|
|
||||||
ngIRCd 0.10.0 (2006-10-01)
|
ngIRCd 0.10.0 (2006-10-01)
|
||||||
|
|
||||||
|
@ -668,4 +670,4 @@ ngIRCd 0.0.1, 31.12.2001
|
||||||
|
|
||||||
|
|
||||||
--
|
--
|
||||||
$Id: ChangeLog,v 1.308 2006/10/03 10:59:40 alex Exp $
|
$Id: ChangeLog,v 1.309 2006/11/05 13:03:46 fw Exp $
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
# $Id: sample-ngircd.conf,v 1.37 2006/04/09 12:27:23 alex Exp $
|
# $Id: sample-ngircd.conf,v 1.38 2006/11/05 13:03:47 fw Exp $
|
||||||
|
|
||||||
#
|
#
|
||||||
# This is a sample configuration file for the ngIRCd, which must be adepted
|
# This is a sample configuration file for the ngIRCd, which must be adepted
|
||||||
|
@ -93,6 +93,9 @@
|
||||||
# server? (This is a compatibility hack for ircd-irc2 servers)
|
# server? (This is a compatibility hack for ircd-irc2 servers)
|
||||||
;OperServerMode = no
|
;OperServerMode = no
|
||||||
|
|
||||||
|
# Allow Pre-Defined Channels only (see Section [Channels])
|
||||||
|
;PredefChannelsOnly = no
|
||||||
|
|
||||||
# Maximum number of simultaneous connection the server is allowed
|
# Maximum number of simultaneous connection the server is allowed
|
||||||
# to accept (<=0: unlimited):
|
# to accept (<=0: unlimited):
|
||||||
;MaxConnections = -1
|
;MaxConnections = -1
|
||||||
|
|
|
@ -14,7 +14,7 @@
|
||||||
|
|
||||||
#include "portab.h"
|
#include "portab.h"
|
||||||
|
|
||||||
static char UNUSED id[] = "$Id: conf.c,v 1.93 2006/10/03 10:59:41 alex Exp $";
|
static char UNUSED id[] = "$Id: conf.c,v 1.94 2006/11/05 13:03:48 fw Exp $";
|
||||||
|
|
||||||
#include "imp.h"
|
#include "imp.h"
|
||||||
#include <assert.h>
|
#include <assert.h>
|
||||||
|
@ -204,6 +204,7 @@ Conf_Test( void )
|
||||||
printf( " ConnectRetry = %d\n", Conf_ConnectRetry );
|
printf( " ConnectRetry = %d\n", Conf_ConnectRetry );
|
||||||
printf( " OperCanUseMode = %s\n", Conf_OperCanMode == true ? "yes" : "no" );
|
printf( " OperCanUseMode = %s\n", Conf_OperCanMode == true ? "yes" : "no" );
|
||||||
printf( " OperServerMode = %s\n", Conf_OperServerMode == true? "yes" : "no" );
|
printf( " OperServerMode = %s\n", Conf_OperServerMode == true? "yes" : "no" );
|
||||||
|
printf( " PredefChannelsOnly = %s\n", Conf_PredefChannelsOnly == true ? "yes" : "no" );
|
||||||
printf( " MaxConnections = %ld\n", Conf_MaxConnections>0 ? Conf_MaxConnections : -1);
|
printf( " MaxConnections = %ld\n", Conf_MaxConnections>0 ? Conf_MaxConnections : -1);
|
||||||
printf( " MaxConnectionsIP = %d\n", Conf_MaxConnectionsIP>0 ? Conf_MaxConnectionsIP : -1);
|
printf( " MaxConnectionsIP = %d\n", Conf_MaxConnectionsIP>0 ? Conf_MaxConnectionsIP : -1);
|
||||||
printf( " MaxJoins = %d\n\n", Conf_MaxJoins>0 ? Conf_MaxJoins : -1);
|
printf( " MaxJoins = %d\n\n", Conf_MaxJoins>0 ? Conf_MaxJoins : -1);
|
||||||
|
@ -422,6 +423,7 @@ Set_Defaults( bool InitServers )
|
||||||
Conf_Channel_Count = 0;
|
Conf_Channel_Count = 0;
|
||||||
|
|
||||||
Conf_OperCanMode = false;
|
Conf_OperCanMode = false;
|
||||||
|
Conf_PredefChannelsOnly = false;
|
||||||
Conf_OperServerMode = false;
|
Conf_OperServerMode = false;
|
||||||
|
|
||||||
Conf_MaxConnections = -1;
|
Conf_MaxConnections = -1;
|
||||||
|
@ -753,6 +755,11 @@ Handle_GLOBAL( int Line, char *Var, char *Arg )
|
||||||
}
|
}
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
if( strcasecmp( Var, "PredefChannelsOnly" ) == 0 ) {
|
||||||
|
/* Should we only allow pre-defined-channels? (i.e. users cannot create their own channels) */
|
||||||
|
Conf_PredefChannelsOnly = Check_ArgIsTrue( Arg );
|
||||||
|
return;
|
||||||
|
}
|
||||||
if( strcasecmp( Var, "OperCanUseMode" ) == 0 ) {
|
if( strcasecmp( Var, "OperCanUseMode" ) == 0 ) {
|
||||||
/* Are IRC operators allowed to use MODE in channels they aren't Op in? */
|
/* Are IRC operators allowed to use MODE in channels they aren't Op in? */
|
||||||
Conf_OperCanMode = Check_ArgIsTrue( Arg );
|
Conf_OperCanMode = Check_ArgIsTrue( Arg );
|
||||||
|
|
|
@ -8,7 +8,7 @@
|
||||||
* (at your option) any later version.
|
* (at your option) any later version.
|
||||||
* Please read the file COPYING, README and AUTHORS for more information.
|
* Please read the file COPYING, README and AUTHORS for more information.
|
||||||
*
|
*
|
||||||
* $Id: conf.h,v 1.40 2006/05/10 21:24:01 alex Exp $
|
* $Id: conf.h,v 1.41 2006/11/05 13:03:48 fw Exp $
|
||||||
*
|
*
|
||||||
* Configuration management (header)
|
* Configuration management (header)
|
||||||
*/
|
*/
|
||||||
|
@ -110,6 +110,8 @@ GLOBAL CONF_SERVER Conf_Server[MAX_SERVERS];
|
||||||
/* Pre-defined channels */
|
/* Pre-defined channels */
|
||||||
GLOBAL CONF_CHANNEL Conf_Channel[MAX_DEFCHANNELS];
|
GLOBAL CONF_CHANNEL Conf_Channel[MAX_DEFCHANNELS];
|
||||||
GLOBAL unsigned int Conf_Channel_Count;
|
GLOBAL unsigned int Conf_Channel_Count;
|
||||||
|
/* Pre-defined channels only */
|
||||||
|
GLOBAL bool Conf_PredefChannelsOnly;
|
||||||
|
|
||||||
/* Are IRC operators allowed to always use MODE? */
|
/* Are IRC operators allowed to always use MODE? */
|
||||||
GLOBAL bool Conf_OperCanMode;
|
GLOBAL bool Conf_OperCanMode;
|
||||||
|
|
|
@ -14,7 +14,7 @@
|
||||||
|
|
||||||
#include "portab.h"
|
#include "portab.h"
|
||||||
|
|
||||||
static char UNUSED id[] = "$Id: irc-channel.c,v 1.37 2006/10/06 21:32:58 fw Exp $";
|
static char UNUSED id[] = "$Id: irc-channel.c,v 1.38 2006/11/05 13:03:48 fw Exp $";
|
||||||
|
|
||||||
#include "imp.h"
|
#include "imp.h"
|
||||||
#include <assert.h>
|
#include <assert.h>
|
||||||
|
@ -78,8 +78,17 @@ IRC_JOIN( CLIENT *Client, REQUEST *Req )
|
||||||
chan = NULL; flags = NULL;
|
chan = NULL; flags = NULL;
|
||||||
|
|
||||||
/* wird der Channel neu angelegt? */
|
/* wird der Channel neu angelegt? */
|
||||||
if( Channel_Search( channame )) is_new_chan = false;
|
if( Channel_Search( channame )) {
|
||||||
else is_new_chan = true;
|
is_new_chan = false;
|
||||||
|
} else {
|
||||||
|
if (Conf_PredefChannelsOnly) { /* this server does not allow creation of channels */
|
||||||
|
IRC_WriteStrClient( Client, ERR_BANNEDFROMCHAN_MSG, Client_ID( Client ), channame );
|
||||||
|
/* Try next name, if any */
|
||||||
|
channame = strchr(channame, ',');
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
is_new_chan = true;
|
||||||
|
}
|
||||||
|
|
||||||
/* Hat ein Server Channel-User-Modes uebergeben? */
|
/* Hat ein Server Channel-User-Modes uebergeben? */
|
||||||
if( Client_Type( Client ) == CLIENT_SERVER )
|
if( Client_Type( Client ) == CLIENT_SERVER )
|
||||||
|
|
Loading…
Reference in New Issue