[ Lars Kellogg-Stedman writes: ]
>
> I tracked down my problem with the list command...you're going to love
> this :-). I'm setting up majordomo for a student group at Binghamton
> University that happens to have the acronym "CoRE"; all of our mailing
> lists have names like "corechat" and "coreann".
>
> The do_lists() functions performs the following check:
>
> next if /^(RCS|core)/;
>
> Which skips any files beginning with "core". Whoops...
[ Incremental patch against 1.94.1 (includes part of a previous patch) ]
--- majordomo.orig Tue Dec 10 12:39:47 1996
+++ majordomo Mon Jan 20 09:36:40 1997
@@ -1192,9 +1190,8 @@
foreach (sort @lists) {
$list = $_;
- $list =~ s,^.*/,,; # strip off leading path
$list =~ /[^-_0-9a-zA-Z]/ && next; # skip non-list files (*.info, etc.)
- next if /^(RCS|core)/; # my favorite two.
+ next if /^(RCS|CVS|core)$/;
&get_config($listdir, $list) if !&cf_ck_bool($list, '', 1);
--
Dave Wolfe
|
|