To sum up again, he says the problem "is because vdelivermail exits, before it read the pipe completly. vdelivermail simply checks whether the receipient is valid, and if not,
exits at once, causing a SIGPIPE in maildrop."

It should be possible to update vdelivermail to scan through to the end of the message before exiting. It might add some additional overhead, but I think that it would avoid the SIGPIPE.


Tom, thanks for the response. I made the change to vdelivermail.c, recompiled, and the problem does indeed appear to have disappeared. I don't know if there's a specific way to make a patch, but here's a diff of the 5.4.9 vdelivermail.c against the one w/ my changes:

1027a1028
while((read(0,msgbuf,MSG_BUF_SIZE))>0);
1054a1056
while((read(0,msgbuf,MSG_BUF_SIZE))>0);

Is this acceptable?

Thanks,
Paul
--
Paul Oehler
NEXCESS.NET Internet Solutions
http://nexcess.net
304 1/2 S. State St.
Ann Arbor, MI 48104
1.866.NEXCESS




Reply via email to