[IRCServices] Services 5.0.39 released
Craig McLure
Craig at frostycoolslug.com
Sat Sep 4 22:55:53 PDT 2004
I spotted the Problem, In the patch, both the additions to autojoin.c were bad:
} else if (stricmp(cmd, "ADD") == 0) {
+ if (readonly) {
+ notice_lang(s_ChanServ, u, NICK_AJOIN_DISABLED);
+ return;
+ }
} else if (stricmp(cmd, "DEL") == 0) {
+ if (readonly) {
+ notice_lang(s_ChanServ, u, NICK_AJOIN_DISABLED);
+ return;
+ }
I get the feeling its supposed to me s_NickServ that sends that message..
Thanks for the patch though :)
/****************************************
* Craig "FrostyCoolSlug" McLure
* Craig at FrostyCoolSlug.com
* InspIRCd - http://www.inspircd.org
* ChatSpike - http://www.chatspike.net
****************************************/
/****************************************
* From - Andrew Church <achurch at achurch.org>
* To - services <ircservices at ircservices.za.net>
* Sent - 13:01:42 @ 2004-09-05
* Subject - [IRCServices] Services 5.0.39 released
****************************************/
/****** - Begin Original Message - ******/
> Services 5.0.39 has been released, and can be downloaded from:
>
>ftp://ftp.esper.net/ircservices/ (Western USA)
>
>05926ecf0ba8ad3fdc163cbc8d40a6fe ircservices-5.0.39.tar.gz
>844212a8718d37adac2c11fc5390b661 ircservices-5.0.39.diff.gz
>3fe1aa03737b2727e80693c55683dd51 ircservices-5.0.39-1.i386.rpm
>f04384bcbc7a4c28c9cf5fe70a6530fd ircservices_5.0.39-1_i386.deb
>
>ftp.ircservices.za.net and the other mirrors should have it shortly.
>
> This release fixes the issue with readonly not applying to some
>commands (note that the relevant "temporarily disabled" messages haven't
>been translated yet--that'll go in the next release). I had planned to
>wait for more information on the recently-reported segfault first, but
>since the readonly issue is a current problem, I've gone ahead with this
>release.
>
>Changes in version 5.0.39
>-------------------------
>2004/09/05 Fixed bug allowing some NickServ/ChanServ commands to be
> used even in read-only mode. Reported by Craig McLure
> <Craig at chatspike.net>
>2004/09/02 Fixed minor formatting errors in language files.
>2004/09/02 Fixed bugs in SMTP handling. Reported by Gregg Conklin
> <greco at gate.net>
>2004/08/24 Fixed a trivial error in the modules/protocol Makefile.
>
> --Andrew Church
> achurch at achurch.org
> http://achurch.org/
>
>------------------------------------------------------------------
>To unsubscribe or change your subscription options, visit:
>http://www.ircservices.za.net/mailman/listinfo/ircservices
>.
/******* - End Original Message - *******/