summaryrefslogtreecommitdiffstats
path: root/qmail-smtpd.c
diff options
context:
space:
mode:
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 259ae7c..ecb7b85 100644
--- a/qmail-smtpd.c
+++ b/qmail-smtpd.c
@@ -640,7 +640,7 @@ void smtp_mail(arg) char *arg;
640void smtp_rcpt(arg) char *arg; { 640void smtp_rcpt(arg) char *arg; {
641 if (!seenmail) { err_wantmail(); return; } 641 if (!seenmail) { err_wantmail(); return; }
642 if (!addrparse(arg)) { err_syntax(); return; } 642 if (!addrparse(arg)) { err_syntax(); return; }
643 if (addrrelay()) { err_relay(); return; } 643 if (!relayclient && addrrelay()) { err_relay(); return; }
644 if (flagbarfbhelo) { 644 if (flagbarfbhelo) {
645 if (logregex) { 645 if (logregex) {
646 strerr_warn6("qmail-smtpd: badhelo: <",helohost.s,"> at ",remoteip," matches pattern: ",matchedregex.s,0); 646 strerr_warn6("qmail-smtpd: badhelo: <",helohost.s,"> at ",remoteip," matches pattern: ",matchedregex.s,0);