diff options
-rw-r--r-- | ChangeLog | 1 | ||||
-rw-r--r-- | common/smtppass.c | 2 | ||||
-rw-r--r-- | configure.in | 4 |
3 files changed, 4 insertions, 3 deletions
@@ -1,6 +1,7 @@ 1.4 [???] - Fix crasher after connection closes unexpectedly. - Fix problem with waiting for processes [Jeff Fisher] + - Better message for 'busy' [Akihiro Sagawa] 1.3 [2005-10-21] - Handle condition of server refusing data transfers more gracefully. diff --git a/common/smtppass.c b/common/smtppass.c index b6d7e79..638e80d 100644 --- a/common/smtppass.c +++ b/common/smtppass.c @@ -551,7 +551,7 @@ static void connection_loop(int sock) /* Check to make sure we have a thread */ if(fd != -1) { - sp_messagex(NULL, LOG_ERR, "too many connections open (max %d). sent 554 response", g_state.max_threads); + sp_messagex(NULL, LOG_ERR, "too many connections open (max %d). sent busy response", g_state.max_threads); write(fd, SMTP_STARTBUSY, KL(SMTP_STARTBUSY)); shutdown(fd, SHUT_RDWR); close(fd); diff --git a/configure.in b/configure.in index 2d983d6..a073cff 100644 --- a/configure.in +++ b/configure.in @@ -36,8 +36,8 @@ dnl Nate Nielsen <nielsen@memberwebs.com> dnl dnl Process this file with autoconf to produce a configure script. -AC_INIT(proxsmtp, 1.3.91, nielsen@memberwebs.com) -AM_INIT_AUTOMAKE(proxsmtp, 1.3.91) +AC_INIT(proxsmtp, 1.3.92, nielsen@memberwebs.com) +AM_INIT_AUTOMAKE(proxsmtp, 1.3.92) LDFLAGS="$LDFLAGS -L/usr/local/lib" CFLAGS="$CFLAGS -I/usr/local/include" |