diff options
author | Stef Walter <stef@memberwebs.com> | 2006-07-13 18:53:35 +0000 |
---|---|---|
committer | Stef Walter <stef@memberwebs.com> | 2006-07-13 18:53:35 +0000 |
commit | 81f788118b028533357142981420d5a3ed373135 (patch) | |
tree | 78f08afc81b77b8e88188bc0c9b1d87b3fc21cee /common | |
parent | 05a10ed5b33b3edaa3036e1a58cf1f7133c389ce (diff) |
Better message for 'busy'
Diffstat (limited to 'common')
-rw-r--r-- | common/smtppass.c | 2 |
1 files changed, 1 insertions, 1 deletions
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); |