From 3a12dd05a808add990cc6712cbc49f57fda6eacc Mon Sep 17 00:00:00 2001 From: manuel Date: Tue, 11 Jun 2019 16:08:06 +0200 Subject: max recipients: make error message more consistent --- qmail-smtpd.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; { if (!addrparse(arg)) { err_syntax(); return; } if (!relayclient && addrrelay()) { err_relay(); return; } if (recipcount >= max_recipcount) { - out("450 4.7.1 Error: too many recipients\r\n"); + out("450 too many recipients. (#4.7.1)\r\n"); strerr_warn2("qmail-smtpd: too many recipients at ",remoteip,0); return; } -- cgit v1.2.3