summaryrefslogtreecommitdiff
path: root/common
diff options
context:
space:
mode:
authorStef Walter <stef@memberwebs.com>2006-07-13 18:53:35 +0000
committerStef Walter <stef@memberwebs.com>2006-07-13 18:53:35 +0000
commit81f788118b028533357142981420d5a3ed373135 (patch)
tree78f08afc81b77b8e88188bc0c9b1d87b3fc21cee /common
parent05a10ed5b33b3edaa3036e1a58cf1f7133c389ce (diff)
Better message for 'busy'
Diffstat (limited to 'common')
-rw-r--r--common/smtppass.c2
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);