summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--qmail-smtpd.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/qmail-smtpd.c b/qmail-smtpd.c
index 839f2d3..245949d 100644
--- a/qmail-smtpd.c
+++ b/qmail-smtpd.c
@@ -736,7 +736,7 @@ void smtp_rcpt(arg) char *arg; {
736 if (!addrparse(arg)) { err_syntax(); return; } 736 if (!addrparse(arg)) { err_syntax(); return; }
737 if (!relayclient && addrrelay()) { err_relay(); return; } 737 if (!relayclient && addrrelay()) { err_relay(); return; }
738 if (recipcount >= max_recipcount) { 738 if (recipcount >= max_recipcount) {
739 out("450 4.7.1 Error: too many recipients\r\n"); 739 out("450 too many recipients. (#4.7.1)\r\n");
740 strerr_warn2("qmail-smtpd: too many recipients at ",remoteip,0); 740 strerr_warn2("qmail-smtpd: too many recipients at ",remoteip,0);
741 return; 741 return;
742 } 742 }