mirror of
https://github.com/unrealircd/unrealircd.git
synced 2026-07-05 08:53:14 +02:00
353e36644536c8a27eaa4403a9d01c2d0b7b4a91
? config.log ? config.settings ? config.status ? dgets.patch ? diff-remove-addline ? ircd.log ? ircd.pid ? ircd.tune ? login_page.php?return=%2Ffile_download.php?file_id=408 ? server.cert.pem ? server.key.pem ? server.req.pem ? ssl.rnd ? tmp ? unreal ? unrealircd.conf ? extras/c-ares ? extras/c-ares-1.3.2 ? extras/c-ares.tar ? extras/regexp ? extras/tre-0.7.2 ? extras/tre.tar ? include/setup.h ? ircdcron/ircdchk ? src/ircd ? src/version.c ? src/modules/Makefile ? src/modules/m_cycle.cpp ? src/modules/test.cpp ? src/modules/chanmodes/Makefile Index: Changes =================================================================== RCS file: /home/cmunk/ircsystems/cvsroot/unreal/Changes,v retrieving revision 1.1.1.1.2.1.2.1.2.2358 diff -u -r1.1.1.1.2.1.2.1.2.2358 Changes --- Changes 18 Apr 2007 13:21:03 -0000 1.1.1.1.2.1.2.1.2.2358 +++ Changes 18 Apr 2007 13:38:36 -0000 @@ -1586,5 +1586,7 @@ - #0002420 reported by KnuX fixed by WolfSage - #0003147 reported by vonitsanet, fixed by djGrrr regarding making spamfilters work in case of /setname -- #0002157 repoted by Dukat, fixed by djGrrr regarding cloaking module +- #0002157 reported by Dukat, fixed by djGrrr regarding cloaking module allows cloakkey 1 and 3 to be identical. +- #0003146 reported by vonitsanet, regarding Modes O,S (etc) not rejected for modes-on-connect + fixed by djGrrr Index: src/s_conf.c =================================================================== RCS file: /home/cmunk/ircsystems/cvsroot/unreal/src/s_conf.c,v retrieving revision 1.1.1.1.6.1.2.374 diff -u -r1.1.1.1.6.1.2.374 s_conf.c --- src/s_conf.c 16 Apr 2007 17:05:47 -0000 1.1.1.1.6.1.2.374 +++ src/s_conf.c 18 Apr 2007 13:38:47 -0000 @@ -6940,23 +6940,17 @@ } } else if (!strcmp(cep->ce_varname, "modes-on-connect")) { + char *p; CheckNull(cep); CheckDuplicate(cep, modes_on_connect, "modes-on-connect"); - if (strchr(cep->ce_vardata, 'z')) - { - config_error("%s:%i: set::modes-on-connect may not have +z", - cep->ce_fileptr->cf_filename, cep->ce_varlinenum); - errors++; - } + for (p = cep->ce_vardata; *p; p++) + if (strchr("oOaANCrzSgHhqtW", *p)) + { + config_error("%s:%i: set::modes-on-connect may not include mode '%c'", + cep->ce_fileptr->cf_filename, cep->ce_varlinenum, *p); + errors++; + } templong = (long) set_usermode(cep->ce_vardata); - if (templong & UMODE_OPER) - { - config_error("%s:%i: set::modes-on-connect contains +o", - cep->ce_fileptr->cf_filename, - cep->ce_varlinenum); - errors++; - continue; - } } else if (!strcmp(cep->ce_varname, "modes-on-join")) { char *c;
==[ COMPILING ]== To build the ircd, run: ./Config make If you specified an alternative location during ./Config you also need to run "make install". ==[ MAKING A CONFIG FILE ]== If you are new, then you need to create your own configfile: copy doc/example.conf to your main UnrealIRCd directory and call it unrealircd.conf . Then open it in an editor and carefully modify it, consult the docs (doc/unreal32docs.html, or online: www.unrealircd.com/unreal32docs.html) for more information about every block/setting. Common problems are explained in the FAQ, which is located at: http://www.vulnscan.org/UnrealIrcd/faq/ . ==[ BOOTING YOUR IRCD ]== Just type: ./unreal start Note that after booting the errors are usually logged to ircd.log, so check that file if you have any problems. Again, check the FAQ (and docs) if you have any boot problems.
Description
Languages
C
94.6%
M4
1.8%
Shell
1.5%
Rich Text Format
1%
Makefile
0.6%
Other
0.5%