summaryrefslogtreecommitdiffstats
path: root/qmail-smtpd.c
diff options
context:
space:
mode:
authormanuel <manuel@mausz.at>2019-06-11 16:08:06 +0200
committermanuel <manuel@mausz.at>2019-06-11 16:08:06 +0200
commit3a12dd05a808add990cc6712cbc49f57fda6eacc (patch)
treeab94ae75db12efbe8f3ddb706a7a409b6390cd22 /qmail-smtpd.c
parent9c7093f674f416e766668c23c8400662d5434786 (diff)
downloadqmail-3a12dd05a808add990cc6712cbc49f57fda6eacc.tar.gz
qmail-3a12dd05a808add990cc6712cbc49f57fda6eacc.tar.bz2
qmail-3a12dd05a808add990cc6712cbc49f57fda6eacc.zip
max recipients: make error message more consistent
Diffstat (limited to 'qmail-smtpd.c')
-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 }