From: Gabriel B. <sh...@us...> - 2006-03-12 17:24:05
|
Update of /cvsroot/solidircd/solidircd-stable In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv10054 Modified Files: BANNER CHANGES INSTALL Added Files: NEW Log Message: template updates. --- NEW FILE: NEW --- This file is maintained by Sheik (sh...@so...) Last revised on 3/12/2006 New - solid-ircd 3.4.7(stable) ------------------------------ User Modes & Oper Modes Changes --------------------------------- User mode +Y (Deaf Mode) Opermode (+W) Will hide servers & channels on ircop's whois from normal users. Whois notice has been merged with (+y) Core Changes ------------------ Elmer has been fully implemented on this release Readded G-line GCC4 compatible. Configuration Changes --------------------- Added the following on config.h -------------------------------- /* * STRICT_LIST * This function is enabled by default it prevents unregistered * users from viewing channels using /list they're notified to use /qlist instead * this helps prevent spambots. * -Sheik 16/04/2005 * */ #define STRICT_LIST /* * IRCOP_LIST * This option will enable /ircops which list all the active * opers on the network, +H opers are excluded from this. * Added by Sheik on 22/04/2005 * */ #define IRCOP_LIST /* STRICT_HOSTMASK * * This function prevents users from unsetting +v * This is used to prevent users from evading bans by unsetting their hostmaks. */ #define STRICT_HOSTMASK /* * STATS_P_ENABLED * If Defined will make a /stats P request by opers return * all listneing ports and rather they are ssl or not * if not defined it acts as a /stats p request */ #define STATS_P_ENABLED /* * STATS_P_OPERONLY * Recommended * Allows only opers to do a /stats P request and view * Listening ports and rather they are ssl or not * Requires STATS_P_ENABLED * if you undefine this you must also undefine NO_LOCAL_USER_STATS * & NO_USER_STATS only do this if you want normal users to be able to use /stats */ #define STATS_P_OPERONLY /* PLUS_R_TO_NONREG_WARN * Warn +R users that their target will not be able to reply. */ #undef PLUS_R_TO_NONREG_WARN /* * RESTRICT_ADMINONLY * This function will restrict stats C & c for server administrators only. * */ #define RESTRICT_C_LINES_ADMINONLY /* * DEFAULT_GLINE_TIME * * Define this to the default time for a gline (in minutes) for glines with * unspecified times. A time of 0 will create a permanent gline. */ #define DEFAULT_GLINE_TIME 30 /* * GLINE_MIN_STORE_TIME * * The minimum duration (in minutes) a gline must be before it will be stored * in the on-disk journal. */ #define GLINE_MIN_STORE_TIME 180 /* * GLINE_STORE_COMPACT_THRESH * * The maximum number of entries to write to the active gline storage journal * before compacting it. This threshold prevents the journal from growing * indefinitely while glines are added and removed on a running server. */ #define GLINE_STORE_COMPACT_THRESH 1000 #define NETWORK_GLINE_NAME "g-line" #define NETWORK_GLINNED_NAME "g-lined" Index: BANNER =================================================================== RCS file: /cvsroot/solidircd/solidircd-stable/BANNER,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** BANNER 27 Jun 2005 03:01:54 -0000 1.1.1.1 --- BANNER 12 Mar 2006 17:23:58 -0000 1.2 *************** *** 5,7 **** /____ >____/|____/__\____ | |__||__| \___ >____ | \/ \/ \/ \/ ! solid-ircd 3.4.7 \ No newline at end of file --- 5,7 ---- /____ >____/|____/__\____ | |__||__| \___ >____ | \/ \/ \/ \/ ! solid-ircd 3.4.7(stable) \ No newline at end of file Index: CHANGES =================================================================== RCS file: /cvsroot/solidircd/solidircd-stable/CHANGES,v retrieving revision 1.18 retrieving revision 1.19 diff -C2 -d -r1.18 -r1.19 *** CHANGES 12 Mar 2006 16:05:53 -0000 1.18 --- CHANGES 12 Mar 2006 17:23:58 -0000 1.19 *************** *** 8,12 **** ------------------------------ ! Changes for solid-ircd 3.4.7(cvs) ---------------------------- --- 8,12 ---- ------------------------------ ! Changes for solid-ircd 3.4.7(stable) ---------------------------- Index: INSTALL =================================================================== RCS file: /cvsroot/solidircd/solidircd-stable/INSTALL,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** INSTALL 9 Jul 2005 15:11:12 -0000 1.2 --- INSTALL 12 Mar 2006 17:23:58 -0000 1.3 *************** *** 4,7 **** --- 4,8 ---- Makefiles to match your system: ./configure + To build with Client SSL support disabled use ./configure --disable-openssl |