Re: Tokens not getting mailed
Michael Yount <[email protected]>
| Newsgroups | gmane.mail.majordomo.majordomo2.devel |
|---|---|
| Message-ID | <[email protected]> |
write(2), and therefore fclose(3), might be capable of returning EFBIG
on Roger's system.
The code in question is in Mj/Inform.pm:
print($lf "$line\n") ||
$log->abort("Cannot append to $file, $!");
# Close the logfile
close ($lf) or
$log->abort("Unable to close file $file: $!");
I don't see how this would be connected to CONSULT messages not being
mailed.
Michael
Steven W. Orr wrote:
> Line 407 is a call to
>
> $::log->abort(shift);
>
> I would imagine that abort is going to call close, but close(2) is not
> capable of EFBIG. Neither is write. What's unfortunately needed is to run
> the program under strace to find out what system call is actually failing.
> :-(
>
>