diff options
-rw-r--r-- | ChangeLog | 2 | ||||
-rw-r--r-- | src/proxsmtpd.c | 3 |
2 files changed, 3 insertions, 2 deletions
@@ -1,6 +1,8 @@ 1.5 [2006-09-05] - Added support for setting the REMOTE variable when an XFORWARD command is seen. + - On FreeBSD fix problem where stderr wasn't processed when filter + didn't read stdin. 1.4 [2006-08-10] - Fix crasher after connection closes unexpectedly. diff --git a/src/proxsmtpd.c b/src/proxsmtpd.c index b3fd969..2a75592 100644 --- a/src/proxsmtpd.c +++ b/src/proxsmtpd.c @@ -648,7 +648,7 @@ static int process_pipe_command(spctx_t* sp) { if(errno == EPIPE) { - sp_messagex(sp, LOG_WARNING, "filter command closed input early"); + sp_messagex(sp, LOG_INFO, "filter command closed input early"); /* Eat up the rest of the data */ while(sp_read_data(sp, &ibuf) > 0) @@ -656,7 +656,6 @@ static int process_pipe_command(spctx_t* sp) close(infd); infd = -1; - break; } else if(errno != EAGAIN && errno != EINTR) { |