In majordomo.pl, sub main'is_list_member (included at the end of this
message), should the "&abort" be "&main'abort"?
I'd received this mailer error:
> From: Mail Delivery Subsystem <MAILER-DAEMON@scri.fsu.edu>
> To: owner-majordomo@scri.fsu.edu
> Cc: postmaster@scri.fsu.edu
> Subject: Returned mail: unknown mailer error 2
> Date: Thu, 14 Oct 1993 09:36:07 -0400
>
> ----- Transcript of session follows -----
> Undefined subroutine "Majordomo'abort" called at /usr/local/mail/majordomo/majordomo.pl line 378, <> line 3.
> 554 "|/usr/local/mail/majordomo/wrapper majordomo"... unknown mailer error 2
Thanks,
Kingsley F. Kerce (kerce@scri.fsu.edu)
Supercomputer Computations Research Institute
Florida State University
Tallahassee, FL, USA 32306
sub main'is_list_member {
local($subscriber) = shift;
local($listdir) = shift;
local($clean_list) = shift;
local($matches);
open(LIST, "$listdir/$clean_list")
|| &abort("Can't read $listdir/$clean_list: $!");
while (<LIST>) {
if (&main'addr_match($_, $subscriber)) {
$matches++;
}
}
close(LIST);
return($matches);
}
Follow-Ups:
|
|