[IRCServices Coding] Services 5.0 alpha 10 released
    Russell Garrett 
    rg at tcslon.com
       
    Wed Dec 26 06:48:22 PST 2001
    
    
  
>      Okay, this will _really_ be the last release before I leave on
> vacation, because I leave in about 15 minutes. (:  Patches
Ok, I'll queue some more bugs up in your inbox for when you return ;)
memoserv/forward: /ms SET FORWARD [ON|OFF|COPY] doesn't work. Patch
follows:
modules/memoserv/forward.c:
On line 152:
    } else if (stricmp(option, "ON") == 0) {
should read:
    } else if (stricmp(param, "ON") == 0) {
On line 156:
    } else if (stricmp(option, "COPY") == 0) {
should read:
    } else if (stricmp(param, "COPY") == 0) {
and on line 159:
    } else if (stricmp(option, "OFF") == 0) {
should read:
    } else if (stricmp(param, "OFF") == 0) {
memoserv/forward: After applying the above fix, /ms SET FORWARD
[ON|COPY] returns the following:
  [14:11:26] Your memos will now be forwarded to your E-mail address:
(null)
regardless of which or whether an e-mail was set, although the actual
forwarding works. Looks pretty simple to fix. Something to do with
notice_lang not being told the e-mail I think.
memoserv/forward: After applying the set forward fix, forwarded memo
e-mails contain:
  Memo from  (Dec 26 13:58:10 2001 GMT)
without any name. Probably a similar problem to the above.
nickserv/autojoin: Although the AJOIN command works a treat, it
doesn't seem to appear on the /ns HELP COMMANDS list.
Cheers,
Russ Garrett (russ at garrett.co.uk)