[Dbmail-dev] [DBMail 0000199]: spare child creates zombie

2005-05-09 Thread bugtrack
The following bug has been ASSIGNED. == http://www.dbmail.org/mantis/bug_view_advanced_page.php?bug_id=199 == Reported By:hsn Assigned To:

[Dbmail-dev] [DBMail 0000199]: spare child creates zombie

2005-05-09 Thread bugtrack
The following bug has been RESOLVED. == http://www.dbmail.org/mantis/bug_view_advanced_page.php?bug_id=199 == Reported By:hsn Assigned To:

[Dbmail-dev] [DBMail 0000203]: Compile fails on FreeBSD 5.4

2005-05-09 Thread bugtrack
The following bug has been ASSIGNED. == http://www.dbmail.org/mantis/bug_view_advanced_page.php?bug_id=203 == Reported By:hsn Assigned To:

[Dbmail-dev] [DBMail 0000203]: Compile fails on FreeBSD 5.4

2005-05-09 Thread bugtrack
The following bug has been CLOSED == http://www.dbmail.org/mantis/bug_view_advanced_page.php?bug_id=203 == Reported By:hsn Assigned To:

[Dbmail-dev] [DBMail 0000198]: DBMail processes killing each other

2005-05-09 Thread bugtrack
A BUGNOTE has been added to this bug. == http://www.dbmail.org/mantis/bug_view_advanced_page.php?bug_id=198 == Reported By:sr Assigned To:

[Dbmail-dev] [DBMail 0000198]: DBMail processes killing each other

2005-05-09 Thread bugtrack
A BUGNOTE has been added to this bug. == http://www.dbmail.org/mantis/bug_view_advanced_page.php?bug_id=198 == Reported By:sr Assigned To:

[Dbmail-dev] [DBMail 0000204]: Quotes

2005-05-09 Thread bugtrack
The following bug has been SUBMITTED. == http://www.dbmail.org/mantis/bug_view_advanced_page.php?bug_id=204 == Reported By:sr Assigned To:

[Dbmail-dev] [DBMail 0000204]: Quotes

2005-05-09 Thread bugtrack
A BUGNOTE has been added to this bug. == http://www.dbmail.org/mantis/bug_view_advanced_page.php?bug_id=204 == Reported By:sr Assigned To:

Re: [Dbmail-dev] [DBMail 0000203]: Compile fails on FreeBSD 5.4

2005-05-09 Thread Nik Lam
[EMAIL PROTECTED] wrote: The following bug has been CLOSED == http://www.dbmail.org/mantis/bug_view_advanced_page.php?bug_id=203 == Reported By:

[Dbmail-dev] [DBMail 0000204]: Quotes

2005-05-09 Thread bugtrack
A BUGNOTE has been added to this bug. == http://www.dbmail.org/mantis/bug_view_advanced_page.php?bug_id=204 == Reported By:sr Assigned To:

[Dbmail-dev] [DBMail 0000205]: compiler error

2005-05-09 Thread bugtrack
The following bug has been SUBMITTED. == http://www.dbmail.org/mantis/bug_view_advanced_page.php?bug_id=205 == Reported By:mavetju Assigned

Re: [Dbmail-dev] [DBMail 0000200]: LMTP hansg on message without headers

2005-05-09 Thread Geo Carncross
On Sun, 2005-05-08 at 02:48 +, Aaron Stone wrote: if no mime headers are found in incomming lmtp message, lmtp hangs instead of returning error. May 7 10:06:55 sanatana dbmail/lmtpd[46815]: mime_readheader(): no valid mime h eaders found May 7 10:06:55 sanatana kernel: May

Re: [Dbmail-dev] [DBMail 0000201]: Unix socket support for lmtpd

2005-05-09 Thread Aaron Stone
On Mon, May 9, 2005, [EMAIL PROTECTED] said: A BUGNOTE has been added to this bug. == http://www.dbmail.org/mantis/bug_view_advanced_page.php?bug_id=201

Re: [Dbmail-dev] [DBMail 0000200]: LMTP hansg on message without headers

2005-05-09 Thread Aaron Stone
On Mon, May 9, 2005, Geo Carncross [EMAIL PROTECTED] said: The only thing I can figure is that the message is totally malformed and never ends in .\r\n, which is what discard_client_input() expects to see before returning. What we can do is to print back the error message *before* calling

Re: [Dbmail-dev] [DBMail 0000200]: LMTP hansg on message without headers

2005-05-09 Thread Geo Carncross
On Mon, 2005-05-09 at 17:12 +, Aaron Stone wrote: I wonder if the bug reporter's LMTP is sitting in a loop waiting for feof() on the socket and not reading anything. That would certainly cause LMTP to hang following the last error message he reported. I thought that sockets do report EOF

Re: [Dbmail-dev] [DBMail 0000200]: LMTP hansg on message without headers

2005-05-09 Thread Aaron Stone
OK -- so read discard_client_input() in pipe.c and tell me if you think that it's hanging there waiting for .\r\n and nothing else can get out of that loop. AFAICT, that's got to be what's happening after the error in lmtp.c: mime_readheader()... main(): fatal error from

Re: [Dbmail-dev] [DBMail 0000201]: Unix socket support for lmtpd

2005-05-09 Thread Paul J Stevens
Aaron Stone wrote: On Mon, May 9, 2005, [EMAIL PROTECTED] said: A BUGNOTE has been added to this bug. == http://www.dbmail.org/mantis/bug_view_advanced_page.php?bug_id=201

Re: [Dbmail-dev] [DBMail 0000200]: LMTP hansg on message without headers

2005-05-09 Thread Geo Carncross
Let's fix this thing. Attached is a patch that does discard_client_input () without using any memory (2 words of stack+stdio overhead), alerts us if we're seeing bare LF, and alerts us separately if we see a stdio- driven EOF. We also clear the error status beforehand. This generally make stdio