[ Frank Rizulo writes: ]
>
> I submitted this problem about a month ago and have tried all -- much
> appreciated-- advice offered by list members. The problem still persists,
> which is:
I guess there were two subscribers having this problem and you got
dropped somewhere in the followup e-mail. Sorry 'bout that.
> Noadvertise works fine on all except one of the lists that shouldn't be
> advertised.
I hope I'm remembering right that the problem is caused by Perl 5's
interpolation of meta-characters in the regex. Lines 884 and 894 (in
1.93) in file majordomo need the following changes:
884 $command = "(qq~$reply_addr~ =~ $i)";
884 $command = "(q~$reply_addr~ =~ $i)";
894 $command = "(qq~$reply_addr~ =~ $i)";
894 $command = "(q~$reply_addr~ =~ $i)";
I.e. change 'qq' to just 'q' so that $reply_addr isn't interpolated.
--
Dave Wolfe *Not a spokesman for Motorola*
Motorola MMTG 6501 Wm. Cannon Dr. W. OE112 Austin TX 78735-8598
References:
|
|