Fred Lindberg writes:
> Jan 26 11:56:10 id qmail: 917351770.832994 delivery 7497: failure:
> Unable_to_run_qmail-remote./

This is a bug in your operating system.

On bug-free systems, the only way for qmail-rspawn to generate that
message is for execve() to return an error that fails error_temp():
normally ENOTDIR, ENAMETOOLONG, ENOENT, ELOOP, EACCES, ENOEXEC, E2BIG,
or EFAULT. None of these can be caused by temporary failures; they are
permanent (and quite serious) configuration errors.

What happened to you, presumably, is that crt0.o tried to load a shared
library, failed because it was out of memory, and incorrectly decided to
exit with some arbitrary code, never mind the fact that exit codes have
meanings. It should instead have terminated the process with SIGKILL.

---Dan

Reply via email to