>>>>> "ZI" == Zbigniew, Ignatowicz <zignatowicz@scc.ca> writes:
ZI> I upgraded the Majordomo software recently to version 1.94,
ZI> Sendmail to version 8.8.8.and PERL 5.004 on Digital Unix 4.0B.
The current versions of those are 1.94.4, 8.9, and 5.004_04 (soon to be
_05). Why upgrade everything to not-current releases?
ZI> MAJORDOMO ABORT (mj_digest)!! l: No such file or directory
ZI> "|/usr/internet/majordomo/wrapper digest -r -C -l mistest-digest
ZI> mistest-digest-outgoing",
Many versions of sendmail will smash case on options, turning that into
"digest -r -c -l mistest-digest" which tells digest to look for a config
file named "-l". One way to hack around this (which disables standalone
use of the digest program) is to change the code reading:
sub readconfig {
if (defined($opt_C)) {
if (!defined($opt_l)) {
to
sub readconfig {
if (1)) {
if (!defined($opt_l)) {
and get rid of the -C option.
- J<
Follow-Ups:
References:
|
|