|
Majordomo-Users (May 1995) |
Hola!
> On executing the command as listed below I got an error message :
>
> Undefined subroutine "main'lopen" called at /usr/local/majordomo/majordomo.pl
> line 229, <STDIN> line 1.
>
> Has anyone encountered this before ? What should I do to correct the code.
Change the line
open(MAIL, "|-") || &do_exec_sendmail();
to
open (MAIL, "|/usr/lib/sendmail -f$list-request -t") ||
die ("Failed to exec sendmail");
This works fine for me
Marcos.
References:
|