From aae673d7db4b26e8c4a8cc3d59fe94de4c47ba16 Mon Sep 17 00:00:00 2001 From: Jeremy Harris Date: Wed, 18 Jan 2023 11:34:07 +0000 Subject: [PATCH] Logging: Add "D=" to more connection closure log lines. Bug 2434 --- doc/doc-txt/ChangeLog | 3 +++ src/src/smtp_in.c | 41 ++++++++++++++++--------------- test/log/0092 | 12 +++++----- test/log/0230 | 12 +++++----- test/log/0562 | 4 ++-- test/log/0605 | 2 +- test/log/0609 | 2 +- test/log/0622 | 8 +++---- test/log/0900 | 2 +- test/log/0901 | 2 +- test/log/0911 | 10 ++++---- test/log/1106 | 2 +- test/log/1107 | 4 ++-- test/log/1157 | 6 ++--- test/log/1163 | 4 ++-- test/log/2034 | 2 +- test/stderr/0021 | 4 ++-- test/stderr/0022 | 20 ++++++++-------- test/stderr/0044 | 2 +- test/stderr/0092 | 8 +++---- test/stderr/0094 | 2 +- test/stderr/0227 | 44 +++++++++++++++++----------------- test/stderr/0230 | 2 +- test/stderr/0275 | 2 +- test/stderr/0277 | 10 ++++---- test/stderr/0293 | 4 ++-- test/stderr/0294 | 8 +++---- test/stderr/0303 | 4 ++-- test/stderr/0362 | 2 +- test/stderr/0371 | 2 +- test/stderr/0372 | 2 +- test/stderr/0376 | 56 +++++++++++++++++++++---------------------- test/stderr/0381 | 2 +- test/stderr/0386 | 4 ++-- test/stderr/0391 | 2 +- test/stderr/0396 | 2 +- test/stderr/0398 | 2 +- test/stderr/0432 | 4 ++-- test/stderr/0435 | 2 +- test/stderr/0462 | 6 ++--- test/stderr/0464 | 2 +- test/stderr/0465 | 6 ++--- test/stderr/0473 | 4 ++-- test/stderr/0479 | 2 +- test/stderr/0483 | 2 +- test/stderr/0487 | 2 +- test/stderr/0525 | 2 +- test/stderr/0544 | 2 +- test/stderr/0575 | 2 +- test/stderr/0578 | 56 +++++++++++++++++++++---------------------- test/stderr/0609 | 2 +- test/stderr/0620 | 4 ++-- test/stderr/0628 | 4 ++-- test/stderr/0629 | 2 +- test/stderr/0632 | 4 ++-- test/stderr/0911 | 10 ++++---- test/stderr/2035 | 2 +- test/stderr/2135 | 2 +- test/stderr/2201 | 2 +- test/stderr/2202 | 2 +- test/stderr/2600 | 6 ++--- test/stderr/2610 | 2 +- test/stderr/2620 | 2 +- test/stderr/3000 | 2 +- test/stderr/3400 | 2 +- test/stderr/5204 | 2 +- test/stderr/5410 | 6 ++--- test/stderr/5420 | 6 ++--- 68 files changed, 230 insertions(+), 224 deletions(-) diff --git a/doc/doc-txt/ChangeLog b/doc/doc-txt/ChangeLog index 45834756b..d85af1786 100644 --- a/doc/doc-txt/ChangeLog +++ b/doc/doc-txt/ChangeLog @@ -102,6 +102,9 @@ JH/20 Fix TLSA lookups. Previously dns_again_means_nonexist would affect SERVFAIL results, which breaks the downgrade resistance of DANE. Change to not checking that list for these looks. +JH/21 Bug 2434: Add connection-elapsed "D=" element to more connection + closure log lines. + Exim version 4.96 ----------------- diff --git a/src/src/smtp_in.c b/src/src/smtp_in.c index 5d8ffd3d0..04b20d27c 100644 --- a/src/src/smtp_in.c +++ b/src/src/smtp_in.c @@ -333,7 +333,7 @@ Returns: nothing */ static void -incomplete_transaction_log(uschar *what) +incomplete_transaction_log(uschar * what) { if (!sender_address /* No transaction in progress */ || !LOGGING(smtp_incomplete_transaction)) @@ -355,13 +355,21 @@ log_write(L_smtp_incomplete_transaction, LOG_MAIN|LOG_SENDER|LOG_RECIPIENTS, +static void +log_close_event(const uschar * reason) +{ +log_write(L_smtp_connection, LOG_MAIN, "%s D=%s closed %s", + smtp_get_connection_info(), string_timesince(&smtp_connection_start), reason); +} + void smtp_command_timeout_exit(void) { log_write(L_lost_incoming_connection, - LOG_MAIN, "SMTP command timeout on%s connection from %s", - tls_in.active.sock >= 0 ? " TLS" : "", host_and_ident(FALSE)); + LOG_MAIN, "SMTP command timeout on%s connection from %s D=%s", + tls_in.active.sock >= 0 ? " TLS" : "", host_and_ident(FALSE), + string_timesince(&smtp_connection_start)); if (smtp_batched_input) moan_smtp_batch(NULL, "421 SMTP command timeout"); /* Does not return */ smtp_notquit_exit(US"command-timeout", US"421", @@ -373,7 +381,7 @@ exim_exit(EXIT_FAILURE); void smtp_command_sigterm_exit(void) { -log_write(0, LOG_MAIN, "%s closed after SIGTERM", smtp_get_connection_info()); +log_close_event(US"after SIGTERM"); if (smtp_batched_input) moan_smtp_batch(NULL, "421 SIGTERM received"); /* Does not return */ smtp_notquit_exit(US"signal-exit", US"421", @@ -384,9 +392,10 @@ exim_exit(EXIT_FAILURE); void smtp_data_timeout_exit(void) { -log_write(L_lost_incoming_connection, - LOG_MAIN, "SMTP data timeout (message abandoned) on connection from %s F=<%s>", - sender_fullhost ? sender_fullhost : US"local process", sender_address); +log_write(L_lost_incoming_connection, LOG_MAIN, + "SMTP data timeout (message abandoned) on connection from %s F=<%s> D=%s", + sender_fullhost ? sender_fullhost : US"local process", sender_address, + string_timesince(&smtp_connection_start)); receive_bomb_out(US"data-timeout", US"SMTP incoming data timeout"); /* Does not return */ } @@ -394,8 +403,7 @@ receive_bomb_out(US"data-timeout", US"SMTP incoming data timeout"); void smtp_data_sigint_exit(void) { -log_write(0, LOG_MAIN, "%s closed after %s", - smtp_get_connection_info(), had_data_sigint == SIGTERM ? "SIGTERM":"SIGINT"); +log_close_event(had_data_sigint == SIGTERM ? US"SIGTERM":US"SIGINT"); receive_bomb_out(US"signal-exit", US"Service not available - SIGTERM or SIGINT received"); /* Does not return */ @@ -3572,8 +3580,7 @@ if (log_reject_target != 0) if (!drop) return 0; -log_write(L_smtp_connection, LOG_MAIN, "%s closed by DROP in ACL", - smtp_get_connection_info()); +log_close_event(US"by DROP in ACL"); /* Run the not-quit ACL, but without any custom messages. This should not be a problem, because we get here only if some other ACL has issued "drop", and @@ -3999,16 +4006,14 @@ else tls_close(NULL, TLS_SHUTDOWN_NOWAIT); # endif -log_write(L_smtp_connection, LOG_MAIN, "%s closed by QUIT", - smtp_get_connection_info()); +log_close_event(US"by QUIT"); #else # ifndef DISABLE_TLS tls_close(NULL, TLS_SHUTDOWN_WAIT); # endif -log_write(L_smtp_connection, LOG_MAIN, "%s closed by QUIT", - smtp_get_connection_info()); +log_close_event(US"by QUIT"); /* Pause, hoping client will FIN first so that they get the TIME_WAIT. The socket should become readble (though with no data) */ @@ -5763,8 +5768,7 @@ while (done <= 0) while (done <= 0) switch(smtp_read_command(FALSE, GETC_BUFFER_UNLIMITED)) { case EOF_CMD: - log_write(L_smtp_connection, LOG_MAIN, "%s closed by EOF", - smtp_get_connection_info()); + log_close_event(US"by EOF"); smtp_notquit_exit(US"tls-failed", NULL, NULL); done = 2; break; @@ -5786,8 +5790,7 @@ while (done <= 0) smtp_respond(US"221", 3, TRUE, user_msg); else smtp_printf("221 %s closing connection\r\n", FALSE, smtp_active_hostname); - log_write(L_smtp_connection, LOG_MAIN, "%s closed by QUIT", - smtp_get_connection_info()); + log_close_event(US"by QUIT"); done = 2; break; diff --git a/test/log/0092 b/test/log/0092 index e4c372530..9a0f028f0 100644 --- a/test/log/0092 +++ b/test/log/0092 @@ -1,9 +1,9 @@ -1999-03-02 09:44:33 SMTP command timeout on connection from CALLER -1999-03-02 09:44:33 SMTP data timeout (message abandoned) on connection from local process F= +1999-03-02 09:44:33 SMTP command timeout on connection from CALLER D=qqs +1999-03-02 09:44:33 SMTP data timeout (message abandoned) on connection from local process F= D=qqs 1999-03-02 09:44:33 timed out while reading local message 1999-03-02 09:44:33 10HmaX-0005vi-00 timed out while reading local message -1999-03-02 09:44:33 SMTP command timeout on connection from CALLER -1999-03-02 09:44:33 SMTP data timeout (message abandoned) on connection from local process F= -1999-03-02 09:44:33 SMTP command timeout on connection from CALLER -1999-03-02 09:44:33 SMTP command timeout on connection from CALLER +1999-03-02 09:44:33 SMTP command timeout on connection from CALLER D=qqs +1999-03-02 09:44:33 SMTP data timeout (message abandoned) on connection from local process F= D=qqs +1999-03-02 09:44:33 SMTP command timeout on connection from CALLER D=qqs +1999-03-02 09:44:33 SMTP command timeout on connection from CALLER D=qqs 1999-03-02 09:44:33 timed out while reading local message diff --git a/test/log/0230 b/test/log/0230 index 026de6ad7..299e4afcc 100644 --- a/test/log/0230 +++ b/test/log/0230 @@ -1,6 +1,6 @@ 1999-03-02 09:44:33 SMTP connection from root 1999-03-02 09:44:33 10HmaX-0005vi-00 <= x@y.x H=(test) [V4NET.9.8.7]:1111 U=root P=smtp S=sss -1999-03-02 09:44:33 SMTP connection from root closed by QUIT +1999-03-02 09:44:33 SMTP connection from root D=qqs closed by QUIT 1999-03-02 09:44:33 Start queue run: pid=p1234 -qf 1999-03-02 09:44:33 10HmaY-0005vi-00 => x R=server T=local_delivery 1999-03-02 09:44:33 10HmaY-0005vi-00 Completed @@ -13,7 +13,7 @@ 1999-03-02 09:44:33 End queue run: pid=p1234 -qf 1999-03-02 09:44:33 SMTP connection from root 1999-03-02 09:44:33 10HmbB-0005vi-00 <= x@y.x H=(test) [V4NET.9.8.7]:1112 U=root P=smtp S=sss -1999-03-02 09:44:33 SMTP connection from root closed by QUIT +1999-03-02 09:44:33 SMTP connection from root D=qqs closed by QUIT 1999-03-02 09:44:33 Start queue run: pid=p1235 -qf 1999-03-02 09:44:33 10HmbB-0005vi-00 => x@test.ex R=to_server T=remote H=127.0.0.1 [127.0.0.1] I=[127.0.0.1] C="250 OK id=10HmbC-0005vi-00" 1999-03-02 09:44:33 10HmbB-0005vi-00 Completed @@ -23,14 +23,14 @@ 1999-03-02 09:44:33 exim x.yz daemon started: pid=p1236, no queue runs, listening for SMTP on port PORT_D 1999-03-02 09:44:33 SMTP connection from [ip4.ip4.ip4.ip4]:1113 I=[ip4.ip4.ip4.ip4]:PORT_D (TCP/IP connection count = 1) 1999-03-02 09:44:33 10HmaY-0005vi-00 <= x@y.x H=(test) [ip4.ip4.ip4.ip4]:1113 I=[ip4.ip4.ip4.ip4]:PORT_D P=smtp S=sss -1999-03-02 09:44:33 SMTP connection from (test) [ip4.ip4.ip4.ip4]:1113 I=[ip4.ip4.ip4.ip4]:PORT_D closed by QUIT +1999-03-02 09:44:33 SMTP connection from (test) [ip4.ip4.ip4.ip4]:1113 I=[ip4.ip4.ip4.ip4]:PORT_D D=qqs closed by QUIT 1999-03-02 09:44:33 SMTP connection from [127.0.0.1]:1114 I=[127.0.0.1]:PORT_D (TCP/IP connection count = 1) 1999-03-02 09:44:33 10HmaZ-0005vi-00 <= x@y.x H=(test) [127.0.0.1]:1114 I=[127.0.0.1]:PORT_D P=smtp S=sss -1999-03-02 09:44:33 SMTP connection from (test) [127.0.0.1]:1114 I=[127.0.0.1]:PORT_D closed by QUIT +1999-03-02 09:44:33 SMTP connection from (test) [127.0.0.1]:1114 I=[127.0.0.1]:PORT_D D=qqs closed by QUIT 1999-03-02 09:44:33 SMTP connection from [ip4.ip4.ip4.ip4]:1115 I=[ip4.ip4.ip4.ip4]:PORT_D (TCP/IP connection count = 1) 1999-03-02 09:44:33 10HmbA-0005vi-00 <= x@y.x H=(rhubarb) [ip4.ip4.ip4.ip4]:1115 I=[ip4.ip4.ip4.ip4]:PORT_D P=smtp S=sss -1999-03-02 09:44:33 SMTP connection from (rhubarb) [ip4.ip4.ip4.ip4]:1115 I=[ip4.ip4.ip4.ip4]:PORT_D closed by QUIT +1999-03-02 09:44:33 SMTP connection from (rhubarb) [ip4.ip4.ip4.ip4]:1115 I=[ip4.ip4.ip4.ip4]:PORT_D D=qqs closed by QUIT 1999-03-02 09:44:33 exim x.yz daemon started: pid=p1237, no queue runs, listening for SMTP on port PORT_D 1999-03-02 09:44:33 SMTP connection from [127.0.0.1]:1116 I=[127.0.0.1]:PORT_D (TCP/IP connection count = 1) 1999-03-02 09:44:33 10HmbC-0005vi-00 <= x@y.x H=localhost (myhost.test.ex) [127.0.0.1]:1116 I=[127.0.0.1]:PORT_D P=esmtp S=sss -1999-03-02 09:44:33 SMTP connection from localhost (myhost.test.ex) [127.0.0.1]:1116 I=[127.0.0.1]:PORT_D closed by QUIT +1999-03-02 09:44:33 SMTP connection from localhost (myhost.test.ex) [127.0.0.1]:1116 I=[127.0.0.1]:PORT_D D=qqs closed by QUIT diff --git a/test/log/0562 b/test/log/0562 index f7a8b017c..2e50231b1 100644 --- a/test/log/0562 +++ b/test/log/0562 @@ -1,9 +1,9 @@ ******** SERVER ******** 1999-03-02 09:44:33 exim x.yz daemon started: pid=p1234, no queue runs, listening for SMTP on port PORT_D -1999-03-02 09:44:33 SMTP data timeout (message abandoned) on connection from (abcd) [127.0.0.1] F= +1999-03-02 09:44:33 SMTP data timeout (message abandoned) on connection from (abcd) [127.0.0.1] F= D=qqs 1999-03-02 09:44:33 NOTQUIT reason: 'data-timeout' -1999-03-02 09:44:33 SMTP command timeout on connection from [127.0.0.1] +1999-03-02 09:44:33 SMTP command timeout on connection from [127.0.0.1] D=qqs 1999-03-02 09:44:33 NOTQUIT reason: 'command-timeout' 1999-03-02 09:44:33 NOTQUIT reason: 'connection-lost' 1999-03-02 09:44:33 NOTQUIT reason: 'bad-commands' diff --git a/test/log/0605 b/test/log/0605 index 6144d88d2..3fa7a58c1 100644 --- a/test/log/0605 +++ b/test/log/0605 @@ -2,4 +2,4 @@ ******** SERVER ******** 1999-03-02 09:44:33 exim x.yz daemon started: pid=p1234, no queue runs, listening for SMTP on port PORT_D 1999-03-02 09:44:33 SMTP connection from [ip4.ip4.ip4.ip4] (TCP/IP connection count = 1) -1999-03-02 09:44:33 SMTP connection from [ip4.ip4.ip4.ip4] closed by QUIT +1999-03-02 09:44:33 SMTP connection from [ip4.ip4.ip4.ip4] D=qqs closed by QUIT diff --git a/test/log/0609 b/test/log/0609 index 37a45878a..9ecddd793 100644 --- a/test/log/0609 +++ b/test/log/0609 @@ -2,6 +2,6 @@ ******** SERVER ******** 1999-03-02 09:44:33 exim x.yz daemon started: pid=p1234, no queue runs, listening for SMTP on port PORT_D 1999-03-02 09:44:33 SMTP connection from [127.0.0.1] (TCP/IP connection count = 1) -1999-03-02 09:44:33 SMTP connection from (test) [127.0.0.1] closed by QUIT +1999-03-02 09:44:33 SMTP connection from (test) [127.0.0.1] D=qqs closed by QUIT 1999-03-02 09:44:33 SMTP connection from [127.0.0.1] (TCP/IP connection count = 1) 1999-03-02 09:44:33 unexpected disconnection while reading SMTP command from (test) [127.0.0.1] D=qqs diff --git a/test/log/0622 b/test/log/0622 index 62444780e..13e7556b8 100644 --- a/test/log/0622 +++ b/test/log/0622 @@ -44,7 +44,7 @@ 1999-03-02 09:44:33 10HmbA-0005vi-00 => :blackhole: R=server 1999-03-02 09:44:33 10HmbA-0005vi-00 => :blackhole: R=server 1999-03-02 09:44:33 10HmbA-0005vi-00 Completed -1999-03-02 09:44:33 SMTP connection from localhost (myhost.test.ex) [127.0.0.1] closed by QUIT +1999-03-02 09:44:33 SMTP connection from localhost (myhost.test.ex) [127.0.0.1] D=qqs closed by QUIT 1999-03-02 09:44:33 SMTP connection from [127.0.0.1] (TCP/IP connection count = 1) 1999-03-02 09:44:33 H=localhost (myhost.test.ex) [127.0.0.1] F= temporarily rejected RCPT : 452 4.5.3 Try again 1999-03-02 09:44:33 H=localhost (myhost.test.ex) [127.0.0.1] F= temporarily rejected RCPT : 452 4.5.3 Try again @@ -54,7 +54,7 @@ 1999-03-02 09:44:33 10HmbC-0005vi-00 <= CALLER@myhost.test.ex H=localhost (myhost.test.ex) [127.0.0.1] P=esmtp L- S=sss id=E10HmbB-0005vi-00@myhost.test.ex for A@test.ex 1999-03-02 09:44:33 10HmbC-0005vi-00 => :blackhole: R=server 1999-03-02 09:44:33 10HmbC-0005vi-00 Completed -1999-03-02 09:44:33 SMTP connection from localhost (myhost.test.ex) [127.0.0.1] closed by QUIT +1999-03-02 09:44:33 SMTP connection from localhost (myhost.test.ex) [127.0.0.1] D=qqs closed by QUIT 1999-03-02 09:44:33 SMTP connection from [127.0.0.1] (TCP/IP connection count = 1) 1999-03-02 09:44:33 H=localhost (myhost.test.ex) [127.0.0.1] F= temporarily rejected RCPT : 452 4.5.3 Try again 1999-03-02 09:44:33 H=localhost (myhost.test.ex) [127.0.0.1] F= temporarily rejected RCPT : 452 4.5.3 Try again @@ -63,10 +63,10 @@ 1999-03-02 09:44:33 10HmbD-0005vi-00 => :blackhole: R=server 1999-03-02 09:44:33 10HmbD-0005vi-00 => :blackhole: R=server 1999-03-02 09:44:33 10HmbD-0005vi-00 Completed -1999-03-02 09:44:33 SMTP connection from localhost (myhost.test.ex) [127.0.0.1] closed by QUIT +1999-03-02 09:44:33 SMTP connection from localhost (myhost.test.ex) [127.0.0.1] D=qqs closed by QUIT 1999-03-02 09:44:33 SMTP connection from [127.0.0.1] (TCP/IP connection count = 1) 1999-03-02 09:44:33 10HmbE-0005vi-00 <= CALLER@myhost.test.ex H=localhost (myhost.test.ex) [127.0.0.1] P=esmtp L- S=sss id=E10HmbB-0005vi-00@myhost.test.ex for C@test.ex D@test.ex 1999-03-02 09:44:33 10HmbE-0005vi-00 => :blackhole: R=server 1999-03-02 09:44:33 10HmbE-0005vi-00 => :blackhole: R=server 1999-03-02 09:44:33 10HmbE-0005vi-00 Completed -1999-03-02 09:44:33 SMTP connection from localhost (myhost.test.ex) [127.0.0.1] closed by QUIT +1999-03-02 09:44:33 SMTP connection from localhost (myhost.test.ex) [127.0.0.1] D=qqs closed by QUIT diff --git a/test/log/0900 b/test/log/0900 index c7dc54799..2b45d68ce 100644 --- a/test/log/0900 +++ b/test/log/0900 @@ -6,7 +6,7 @@ 2017-07-30 18:51:05.712 10HmaZ-0005vi-00 <= someone@some.domain H=(tester) [127.0.0.1] P=esmtp K S=sss for CALLER@test.ex 2017-07-30 18:51:05.712 10HmbA-0005vi-00 <= some_ne@some.domain H=(tester) [127.0.0.1] P=esmtp K S=sss for CALLER@test.ex 2017-07-30 18:51:05.712 10HmbB-0005vi-00 <= someone@some.domain H=(tester) [127.0.0.1] P=esmtp K S=sss for CALLER@test.ex -2017-07-30 18:51:05.712 10HmbC-0005vi-00 SMTP data timeout (message abandoned) on connection from (tester) [127.0.0.1] F= +2017-07-30 18:51:05.712 10HmbC-0005vi-00 SMTP data timeout (message abandoned) on connection from (tester) [127.0.0.1] F= D=q.qqqs 2017-07-30 18:51:05.712 SMTP connection from (tester) [127.0.0.1] lost while reading message data 2017-07-30 18:51:05.712 SMTP connection from (tester) [127.0.0.1] lost while reading message data 2017-07-30 18:51:05.712 10HmbD-0005vi-00 <= someone@some.domain H=(tester) [127.0.0.1] P=esmtp K S=sss for CALLER@test.ex diff --git a/test/log/0901 b/test/log/0901 index 3c66c0894..cc1e9ff84 100644 --- a/test/log/0901 +++ b/test/log/0901 @@ -6,7 +6,7 @@ 1999-03-02 09:44:33 10HmaZ-0005vi-00 <= someone3@some.domain H=(tester) [127.0.0.1] P=esmtp K S=sss for CALLER@test.ex 1999-03-02 09:44:33 10HmbA-0005vi-00 <= someone2A@some.domain H=(tester) [127.0.0.1] P=esmtp K S=sss for CALLER@test.ex 1999-03-02 09:44:33 10HmbB-0005vi-00 <= someone3A@some.domain H=(tester) [127.0.0.1] P=esmtp K S=sss for CALLER@test.ex -1999-03-02 09:44:33 10HmbC-0005vi-00 SMTP data timeout (message abandoned) on connection from (tester) [127.0.0.1] F= +1999-03-02 09:44:33 10HmbC-0005vi-00 SMTP data timeout (message abandoned) on connection from (tester) [127.0.0.1] F= D=qqs 1999-03-02 09:44:33 SMTP connection from (tester) [127.0.0.1] lost while reading message data 1999-03-02 09:44:33 SMTP connection from (tester) [127.0.0.1] lost while reading message data 1999-03-02 09:44:33 10HmbD-0005vi-00 <= someone8@some.domain H=(tester) [127.0.0.1] P=esmtp K S=sss for CALLER@test.ex diff --git a/test/log/0911 b/test/log/0911 index e4bb5a079..56193ad11 100644 --- a/test/log/0911 +++ b/test/log/0911 @@ -2,17 +2,17 @@ 2017-07-30 18:51:05.712 10HmaX-0005vi-00 <= fred@myhost.test.ex U=root P=local-smtp S=sss for good@test.ex 2017-07-30 18:51:05.712 10HmaX-0005vi-00 => good@test.ex R=client T=send_to_server H=127.0.0.1 [127.0.0.1] L K C="250 OK chunked message data" 2017-07-30 18:51:05.712 10HmaX-0005vi-00 Completed -2017-07-30 18:51:05.712 SMTP connection from root closed by QUIT +2017-07-30 18:51:05.712 SMTP connection from root D=q.qqqs closed by QUIT 2017-07-30 18:51:05.712 SMTP connection from root 2017-07-30 18:51:05.712 10HmaY-0005vi-00 <= fred@myhost.test.ex U=root P=local-smtp S=sss for nopipe@test.ex 2017-07-30 18:51:05.712 10HmaY-0005vi-00 => nopipe@test.ex R=client T=send_to_server H=127.0.0.1 [127.0.0.1] K C="250 OK chunked message data" 2017-07-30 18:51:05.712 10HmaY-0005vi-00 Completed -2017-07-30 18:51:05.712 SMTP connection from root closed by QUIT +2017-07-30 18:51:05.712 SMTP connection from root D=q.qqqs closed by QUIT 2017-07-30 18:51:05.712 SMTP connection from root 2017-07-30 18:51:05.712 10HmaZ-0005vi-00 <= fred@myhost.test.ex U=root P=local-smtp S=sss for tempreject@test.ex 2017-07-30 18:51:05.712 10HmaZ-0005vi-00 H=127.0.0.1 [127.0.0.1]: SMTP error from remote mail server after pipelined end of data: 451 Service not available 2017-07-30 18:51:05.712 10HmaZ-0005vi-00 == tempreject@test.ex R=client T=send_to_server defer (-46) H=127.0.0.1 [127.0.0.1]: SMTP error from remote mail server after pipelined end of data: 451 Service not available -2017-07-30 18:51:05.712 SMTP connection from root closed by QUIT +2017-07-30 18:51:05.712 SMTP connection from root D=q.qqqs closed by QUIT 2017-07-30 18:51:05.712 10HmaZ-0005vi-00 removed by CALLER 2017-07-30 18:51:05.712 10HmaZ-0005vi-00 Completed 2017-07-30 18:51:05.712 SMTP connection from root @@ -20,11 +20,11 @@ 2017-07-30 18:51:05.712 10HmbA-0005vi-00 ** permreject@test.ex R=client T=send_to_server H=127.0.0.1 [127.0.0.1]: SMTP error from remote mail server after pipelined end of data: 550 content rejected 2017-07-30 18:51:05.712 10HmbA-0005vi-00 permreject@test.ex: error ignored 2017-07-30 18:51:05.712 10HmbA-0005vi-00 Completed -2017-07-30 18:51:05.712 SMTP connection from root closed by QUIT +2017-07-30 18:51:05.712 SMTP connection from root D=q.qqqs closed by QUIT 2017-07-30 18:51:05.712 SMTP connection from root 2017-07-30 18:51:05.712 10HmbB-0005vi-00 <= fred@myhost.test.ex U=root P=local-smtp S=sss for dataloss@test.ex 2017-07-30 18:51:05.712 10HmbB-0005vi-00 H=127.0.0.1 [127.0.0.1]: Remote host closed connection in response to pipelined end of data 2017-07-30 18:51:05.712 10HmbB-0005vi-00 == dataloss@test.ex R=client T=send_to_server defer (-18) H=127.0.0.1 [127.0.0.1]: Remote host closed connection in response to pipelined end of data -2017-07-30 18:51:05.712 SMTP connection from root closed by QUIT +2017-07-30 18:51:05.712 SMTP connection from root D=q.qqqs closed by QUIT 2017-07-30 18:51:05.712 10HmbB-0005vi-00 removed by CALLER 2017-07-30 18:51:05.712 10HmbB-0005vi-00 Completed diff --git a/test/log/1106 b/test/log/1106 index dbdfb76f1..7a03fe39d 100644 --- a/test/log/1106 +++ b/test/log/1106 @@ -1,4 +1,4 @@ ******** SERVER ******** 1999-03-02 09:44:33 exim x.yz daemon started: pid=p1234, no queue runs, listening for SMTP on port PORT_D -1999-03-02 09:44:33 SMTP command timeout on TLS connection from [127.0.0.1] +1999-03-02 09:44:33 SMTP command timeout on TLS connection from [127.0.0.1] D=qqs diff --git a/test/log/1107 b/test/log/1107 index bf245861c..f1a206ef9 100644 --- a/test/log/1107 +++ b/test/log/1107 @@ -3,7 +3,7 @@ 1999-03-02 09:44:33 exim x.yz daemon started: pid=p1234, no queue runs, listening for SMTP on port PORT_D 1999-03-02 09:44:33 SMTP connection from [127.0.0.1] (TCP/IP connection count = 1) 1999-03-02 09:44:33 TLS error on connection from (timeout.rhu.barb) [127.0.0.1] (tls lib accept fn): timed out -1999-03-02 09:44:33 SMTP command timeout on connection from (timeout.rhu.barb) [127.0.0.1] +1999-03-02 09:44:33 SMTP command timeout on connection from (timeout.rhu.barb) [127.0.0.1] D=qqs 1999-03-02 09:44:33 SMTP connection from [127.0.0.1] (TCP/IP connection count = 1) 1999-03-02 09:44:33 TLS error on connection from (close.rhu.barb) [127.0.0.1] (tls lib accept fn): TCP connection closed by peer -1999-03-02 09:44:33 SMTP connection from (close.rhu.barb) [127.0.0.1] closed by EOF +1999-03-02 09:44:33 SMTP connection from (close.rhu.barb) [127.0.0.1] D=qqs closed by EOF diff --git a/test/log/1157 b/test/log/1157 index 3aa6f7f04..21b14d162 100644 --- a/test/log/1157 +++ b/test/log/1157 @@ -38,7 +38,7 @@ 1999-03-02 09:44:33 10HmbA-0005vi-00 <= CALLER@myhost.test.ex H=localhost (myhost.test.ex) [127.0.0.1]:1111 P=esmtps X=TLS1.x:ke-RSA-AES256-SHAnnn:xxx CV=no S=sss id=E10HmaX-0005vi-00@myhost.test.ex for userx@test.ex 1999-03-02 09:44:33 10HmbB-0005vi-00 <= CALLER@myhost.test.ex H=localhost (myhost.test.ex) [127.0.0.1]:1111 P=esmtps X=TLS1.x:ke-RSA-AES256-SHAnnn:xxx CV=no S=sss id=E10HmaZ-0005vi-00@myhost.test.ex for userz@test.ex 1999-03-02 09:44:33 10HmbC-0005vi-00 <= CALLER@myhost.test.ex H=localhost (myhost.test.ex) [127.0.0.1]:1111 P=esmtps X=TLS1.x:ke-RSA-AES256-SHAnnn:xxx CV=no S=sss id=E10HmaY-0005vi-00@myhost.test.ex for usery@test.ex -1999-03-02 09:44:33 SMTP connection from localhost (myhost.test.ex) [127.0.0.1]:1111 closed by QUIT +1999-03-02 09:44:33 SMTP connection from localhost (myhost.test.ex) [127.0.0.1]:1111 D=qqs closed by QUIT 1999-03-02 09:44:33 Start queue run: pid=p1238 -qf 1999-03-02 09:44:33 10HmbA-0005vi-00 => userx R=server T=local_delivery 1999-03-02 09:44:33 10HmbA-0005vi-00 Completed @@ -52,7 +52,7 @@ 1999-03-02 09:44:33 10HmbG-0005vi-00 <= CALLER@myhost.test.ex H=localhost (myhost.test.ex) [127.0.0.1]:1112 P=esmtps X=TLS1.x:ke-RSA-AES256-SHAnnn:xxx CV=no S=sss id=E10HmbD-0005vi-00@myhost.test.ex for usera@test.ex 1999-03-02 09:44:33 10HmbH-0005vi-00 <= CALLER@myhost.test.ex H=localhost (myhost.test.ex) [127.0.0.1]:1112 P=esmtps X=TLS1.x:ke-RSA-AES256-SHAnnn:xxx CV=no S=sss id=E10HmbF-0005vi-00@myhost.test.ex for userc@test.ex 1999-03-02 09:44:33 10HmbI-0005vi-00 <= CALLER@myhost.test.ex H=localhost (myhost.test.ex) [127.0.0.1]:1112 P=esmtps X=TLS1.x:ke-RSA-AES256-SHAnnn:xxx CV=no S=sss id=E10HmbE-0005vi-00@myhost.test.ex for userb@test.ex -1999-03-02 09:44:33 SMTP connection from localhost (myhost.test.ex) [127.0.0.1]:1112 closed by QUIT +1999-03-02 09:44:33 SMTP connection from localhost (myhost.test.ex) [127.0.0.1]:1112 D=qqs closed by QUIT 1999-03-02 09:44:33 Start queue run: pid=p1240 -qf 1999-03-02 09:44:33 10HmbG-0005vi-00 => usera R=server T=local_delivery 1999-03-02 09:44:33 10HmbG-0005vi-00 Completed @@ -66,4 +66,4 @@ 1999-03-02 09:44:33 10HmbM-0005vi-00 <= CALLER@myhost.test.ex H=localhost (myhost.test.ex) [127.0.0.1]:1113 P=esmtps X=TLS1.x:ke-RSA-AES256-SHAnnn:xxx CV=no S=sss id=E10HmbJ-0005vi-00@myhost.test.ex for user_p@test.ex 1999-03-02 09:44:33 10HmbN-0005vi-00 <= CALLER@myhost.test.ex H=localhost (myhost.test.ex) [127.0.0.1]:1113 P=esmtps X=TLS1.x:ke-RSA-AES256-SHAnnn:xxx CV=no S=sss id=E10HmbL-0005vi-00@myhost.test.ex for user_r@test.ex 1999-03-02 09:44:33 10HmbO-0005vi-00 <= CALLER@myhost.test.ex H=localhost (myhost.test.ex) [127.0.0.1]:1113 P=esmtps X=TLS1.x:ke-RSA-AES256-SHAnnn:xxx CV=no S=sss id=E10HmbK-0005vi-00@myhost.test.ex for user_q@test.ex -1999-03-02 09:44:33 SMTP connection from localhost (myhost.test.ex) [127.0.0.1]:1113 closed by QUIT +1999-03-02 09:44:33 SMTP connection from localhost (myhost.test.ex) [127.0.0.1]:1113 D=qqs closed by QUIT diff --git a/test/log/1163 b/test/log/1163 index 21f37f951..e6e3d1cb0 100644 --- a/test/log/1163 +++ b/test/log/1163 @@ -21,10 +21,10 @@ 1999-03-02 09:44:33 10HmbB-0005vi-00 <= CALLER@myhost.test.ex H=localhost (myhost.test.ex) [127.0.0.1]:1112 P=esmtps X=TLS1.x:ke-RSA-AES256-SHAnnn:xxx CV=no S=sss id=E10HmaX-0005vi-00@myhost.test.ex for userx1@test.ex 1999-03-02 09:44:33 10HmbC-0005vi-00 <= CALLER@myhost.test.ex H=localhost (myhost.test.ex) [127.0.0.1]:1111 P=esmtps X=TLS1.x:ke-RSA-AES256-SHAnnn:xxx CV=no S=sss id=E10HmaZ-0005vi-00@myhost.test.ex for userz0@test.ex 1999-03-02 09:44:33 10HmbD-0005vi-00 <= CALLER@myhost.test.ex H=localhost (myhost.test.ex) [127.0.0.1]:1111 P=esmtps X=TLS1.x:ke-RSA-AES256-SHAnnn:xxx CV=no S=sss id=E10HmaZ-0005vi-00@myhost.test.ex for userz1@test.ex -1999-03-02 09:44:33 SMTP connection from localhost (myhost.test.ex) [127.0.0.1]:1111 closed by QUIT +1999-03-02 09:44:33 SMTP connection from localhost (myhost.test.ex) [127.0.0.1]:1111 D=qqs closed by QUIT 1999-03-02 09:44:33 10HmbE-0005vi-00 <= CALLER@myhost.test.ex H=localhost (myhost.test.ex) [127.0.0.1]:1112 P=esmtps X=TLS1.x:ke-RSA-AES256-SHAnnn:xxx CV=no S=sss id=E10HmaY-0005vi-00@myhost.test.ex for usery0@test.ex 1999-03-02 09:44:33 10HmbF-0005vi-00 <= CALLER@myhost.test.ex H=localhost (myhost.test.ex) [127.0.0.1]:1112 P=esmtps X=TLS1.x:ke-RSA-AES256-SHAnnn:xxx CV=no S=sss id=E10HmaY-0005vi-00@myhost.test.ex for usery1@test.ex -1999-03-02 09:44:33 SMTP connection from localhost (myhost.test.ex) [127.0.0.1]:1112 closed by QUIT +1999-03-02 09:44:33 SMTP connection from localhost (myhost.test.ex) [127.0.0.1]:1112 D=qqs closed by QUIT 1999-03-02 09:44:33 Start queue run: pid=p1236 -qf 1999-03-02 09:44:33 10HmbA-0005vi-00 => userx0 R=server T=local_delivery 1999-03-02 09:44:33 10HmbA-0005vi-00 Completed diff --git a/test/log/2034 b/test/log/2034 index 823794141..aabe52fe8 100644 --- a/test/log/2034 +++ b/test/log/2034 @@ -2,5 +2,5 @@ ******** SERVER ******** 1999-03-02 09:44:33 exim x.yz daemon started: pid=p1234, no queue runs, listening for SMTP on port PORT_D 1999-03-02 09:44:33 TLS error on connection from (rhu1.barb) [127.0.0.1] (tls lib accept fn): timed out -1999-03-02 09:44:33 SMTP command timeout on connection from (rhu1.barb) [127.0.0.1] +1999-03-02 09:44:33 SMTP command timeout on connection from (rhu1.barb) [127.0.0.1] D=qqs 1999-03-02 09:44:33 TLS error on connection from (rhu2.barb) [127.0.0.1] (gnutls_handshake): An unexpected TLS packet was received. diff --git a/test/stderr/0021 b/test/stderr/0021 index f896eddde..23c5b0cca 100644 --- a/test/stderr/0021 +++ b/test/stderr/0021 @@ -153,7 +153,7 @@ LOG: PANIC accept: condition test succeeded in ACL "rcpt" end of ACL "rcpt": ACCEPT LOG: smtp_connection MAIN - SMTP connection from CALLER closed by QUIT + SMTP connection from CALLER D=qqs closed by QUIT >>>>>>>>>>>>>>>> Exim pid=p1234 (fresh-exec) terminating with rc=0 >>>>>>>>>>>>>>>> 1999-03-02 09:44:33 ACL "warn" with "message" setting found in a non-message (EHLO or HELO) ACL: cannot specify header lines here: message ignored Exim version x.yz .... @@ -295,7 +295,7 @@ LOG: MAIN Completed >>>>>>>>>>>>>>>> Exim pid=p1236 (local-accept-delivery) terminating with rc=0 >>>>>>>>>>>>>>>> LOG: smtp_connection MAIN - SMTP connection from CALLER closed by QUIT + SMTP connection from CALLER D=qqs closed by QUIT >>>>>>>>>>>>>>>> Exim pid=p1235 (fresh-exec) terminating with rc=0 >>>>>>>>>>>>>>>> 1999-03-02 09:44:33 ACL "warn" with "message" setting found in a non-message (EHLO or HELO) ACL: cannot specify header lines here: message ignored 1999-03-02 09:44:33 rcpt accepted C=EHLO,MAIL,RCPT diff --git a/test/stderr/0022 b/test/stderr/0022 index e988c467e..8a2bb0bc4 100644 --- a/test/stderr/0022 +++ b/test/stderr/0022 @@ -75,7 +75,7 @@ smtp_setup_msg entered SMTP<< quit SMTP>> 221 myhost.test.ex closing connection LOG: smtp_connection MAIN - SMTP connection from (test) [V4NET.9.8.7] closed by QUIT + SMTP connection from (test) [V4NET.9.8.7] D=qqs closed by QUIT search_tidyup called >>>>>>>>>>>>>>>> Exim pid=p1236 (fresh-exec) terminating with rc=0 >>>>>>>>>>>>>>>> Exim version x.yz .... @@ -158,7 +158,7 @@ smtp_setup_msg entered SMTP<< quit SMTP>> 221 myhost.test.ex closing connection LOG: smtp_connection MAIN - SMTP connection from (test) [V4NET.9.8.7] closed by QUIT + SMTP connection from (test) [V4NET.9.8.7] D=qqs closed by QUIT search_tidyup called >>>>>>>>>>>>>>>> Exim pid=p1237 (fresh-exec) terminating with rc=0 >>>>>>>>>>>>>>>> Exim version x.yz .... @@ -242,7 +242,7 @@ smtp_setup_msg entered SMTP<< quit SMTP>> 221 myhost.test.ex closing connection LOG: smtp_connection MAIN - SMTP connection from (test) [V4NET.9.8.7] closed by QUIT + SMTP connection from (test) [V4NET.9.8.7] D=qqs closed by QUIT search_tidyup called >>>>>>>>>>>>>>>> Exim pid=p1238 (fresh-exec) terminating with rc=0 >>>>>>>>>>>>>>>> >>> host in hosts_connection_nolog? @@ -277,7 +277,7 @@ LOG: H=(test) [V4NET.9.8.7] F= temporarily rejected RCPT : forcibl >>> drop: condition test succeeded in ACL "drop" >>> end of ACL "drop": DROP LOG: H=(test) [V4NET.9.8.7] F= rejected RCPT : forcibly dropped -LOG: SMTP connection from (test) [V4NET.9.8.7] closed by DROP in ACL +LOG: SMTP connection from (test) [V4NET.9.8.7] D=qqs closed by DROP in ACL >>> host in hosts_connection_nolog? >>> list element: >>> list element: 127.0.0.1 @@ -303,7 +303,7 @@ LOG: SMTP connection from [V4NET.9.8.7] >>> defer: condition test succeeded in ACL "defer_senders" >>> end of ACL "defer_senders": DEFER LOG: H=(test) [V4NET.9.8.7] F=<> temporarily rejected RCPT -LOG: SMTP connection from (test) [V4NET.9.8.7] closed by QUIT +LOG: SMTP connection from (test) [V4NET.9.8.7] D=qqs closed by QUIT >>> host in hosts_connection_nolog? >>> list element: >>> list element: 127.0.0.1 @@ -336,7 +336,7 @@ LOG: SMTP connection from [V4NET.9.8.7] >>> processing "accept" (TESTSUITE/test-config 63) >>> accept: condition test succeeded in ACL "delay_warn" >>> end of ACL "delay_warn": ACCEPT -LOG: SMTP connection from (test) [V4NET.9.8.7] closed by QUIT +LOG: SMTP connection from (test) [V4NET.9.8.7] D=qqs closed by QUIT >>> host in hosts_connection_nolog? >>> list element: >>> list element: 127.0.0.1 @@ -396,7 +396,7 @@ LOG: H=(test) [V4NET.9.8.7] F= rejected RCPT : host data >A >>> deny: condition test succeeded in ACL "host_check2" >>> end of ACL "host_check2": DENY LOG: H=(test) [V4NET.9.8.7] F= rejected RCPT : host data >A host-specific message< -LOG: SMTP connection from (test) [V4NET.9.8.7] closed by QUIT +LOG: SMTP connection from (test) [V4NET.9.8.7] D=qqs closed by QUIT LOG: smtp_connection MAIN SMTP connection from CALLER LOG: MAIN @@ -424,7 +424,7 @@ LOG: MAIN LOG: MAIN Completed LOG: smtp_connection MAIN - SMTP connection from CALLER closed by QUIT + SMTP connection from CALLER D=qqs closed by QUIT >>> host in hosts_connection_nolog? >>> list element: >>> list element: 127.0.0.1 @@ -452,7 +452,7 @@ LOG: SMTP connection from [V4NET.9.8.7] >>> accept: condition test yielded "drop" in ACL "nested_drop" >>> accept: endpass encountered - denying access LOG: H=(test) [V4NET.9.8.7] F= rejected RCPT : forcibly dropped -LOG: SMTP connection from (test) [V4NET.9.8.7] closed by DROP in ACL +LOG: SMTP connection from (test) [V4NET.9.8.7] D=qqs closed by DROP in ACL >>> host in hosts_connection_nolog? >>> list element: >>> list element: 127.0.0.1 @@ -480,6 +480,6 @@ LOG: SMTP connection from [V4NET.9.8.7] >>> require: condition test yielded "drop" in ACL "nested_drop_require" >>> end of ACL "nested_drop_require": not OK LOG: H=(test) [V4NET.9.8.7] F= rejected RCPT : forcibly dropped -LOG: SMTP connection from (test) [V4NET.9.8.7] closed by DROP in ACL +LOG: SMTP connection from (test) [V4NET.9.8.7] D=qqs closed by DROP in ACL ******** SERVER ******** diff --git a/test/stderr/0044 b/test/stderr/0044 index f9fdd4a38..b4ff34a26 100644 --- a/test/stderr/0044 +++ b/test/stderr/0044 @@ -168,7 +168,7 @@ smtp_setup_msg entered SMTP<< quit SMTP>> 221 the.local.host.name closing connection LOG: smtp_connection MAIN - SMTP connection from (exim.test.ex) [V4NET.11.12.13] closed by QUIT + SMTP connection from (exim.test.ex) [V4NET.11.12.13] D=qqs closed by QUIT search_tidyup called >>>>>>>>>>>>>>>> Exim pid=p1234 (fresh-exec) terminating with rc=0 >>>>>>>>>>>>>>>> >>> host in hosts_connection_nolog? no (option unset) diff --git a/test/stderr/0092 b/test/stderr/0092 index 740e09a02..20d18d9b8 100644 --- a/test/stderr/0092 +++ b/test/stderr/0092 @@ -6,7 +6,7 @@ >>> host in helo_verify_hosts? no (option unset) >>> host in helo_try_verify_hosts? no (option unset) >>> host in helo_accept_junk_hosts? no (option unset) -LOG: SMTP command timeout on connection from [V4NET.0.0.1] +LOG: SMTP command timeout on connection from [V4NET.0.0.1] D=qqs >>> host in hosts_connection_nolog? no (option unset) >>> host in host_lookup? no (option unset) >>> host in host_reject_connection? no (option unset) @@ -43,7 +43,7 @@ LOG: SMTP command timeout on connection from [V4NET.0.0.1] >>> test.ex in "+local_domains"? yes (matched "+local_domains") >>> accept: condition test succeeded in ACL "check_recipient" >>> end of ACL "check_recipient": ACCEPT -LOG: SMTP data timeout (message abandoned) on connection from (test) [V4NET.0.0.1] F= +LOG: SMTP data timeout (message abandoned) on connection from (test) [V4NET.0.0.1] F= D=qqs Exim version x.yz .... changed uid/gid: forcing real = effective uid=uuuu gid=CALLER_GID pid=p1234 @@ -155,7 +155,7 @@ SMTP<< data SMTP>> 354 Enter message, ending with "." on a line by itself search_tidyup called LOG: lost_incoming_connection MAIN - SMTP data timeout (message abandoned) on connection from (test) [V4NET.0.0.1] F= + SMTP data timeout (message abandoned) on connection from (test) [V4NET.0.0.1] F= D=qqs SMTP>> 421 myhost.test.ex SMTP incoming data timeout - closing connection. search_tidyup called >>>>>>>>>>>>>>>> Exim pid=p1234 (fresh-exec) terminating with rc=1 >>>>>>>>>>>>>>>> @@ -205,7 +205,7 @@ exim: timed out while reading - message abandoned >>> deny: condition test succeeded in ACL "check_recipient" >>> end of ACL "check_recipient": DENY LOG: H=(test) [V4NET.0.0.1] F= rejected RCPT verify@test.ex: Unrouteable address -LOG: SMTP command timeout on connection from (test) [V4NET.0.0.1] +LOG: SMTP command timeout on connection from (test) [V4NET.0.0.1] D=qqs An error was detected while processing a file of BSMTP input. The error message was: diff --git a/test/stderr/0094 b/test/stderr/0094 index bd87a6bcd..f809c7caa 100644 --- a/test/stderr/0094 +++ b/test/stderr/0094 @@ -208,6 +208,6 @@ LOG: MAIN REJECT SMTP<< quit SMTP>> 221 the.local.host.name closing connection LOG: smtp_connection MAIN - SMTP connection from oneback.test.ex (test) [V4NET.99.99.90] closed by QUIT + SMTP connection from oneback.test.ex (test) [V4NET.99.99.90] D=qqs closed by QUIT search_tidyup called >>>>>>>>>>>>>>>> Exim pid=p1234 (fresh-exec) terminating with rc=0 >>>>>>>>>>>>>>>> diff --git a/test/stderr/0227 b/test/stderr/0227 index 827d68e47..e45edf686 100644 --- a/test/stderr/0227 +++ b/test/stderr/0227 @@ -13,11 +13,11 @@ Connecting to 127.0.0.1 [127.0.0.1]:PORT_S ... connected SMTP(close)>> cmdlog: '220:EHLO:250:MAIL:250:RCPT:250:QUIT:250' LOG: smtp_connection MAIN - SMTP connection from root closed by QUIT + SMTP connection from root D=qqs closed by QUIT LOG: smtp_connection MAIN SMTP connection from root LOG: smtp_connection MAIN - SMTP connection from root closed by QUIT + SMTP connection from root D=qqs closed by QUIT LOG: smtp_connection MAIN SMTP connection from root Connecting to 127.0.0.1 [127.0.0.1]:PORT_S ... connected @@ -37,7 +37,7 @@ LOG: MAIN REJECT LOG: MAIN REJECT H=(test) [V4NET.0.0.1] U=root F= rejected RCPT : Sender verify failed LOG: smtp_connection MAIN - SMTP connection from root closed by QUIT + SMTP connection from root D=qqs closed by QUIT LOG: smtp_connection MAIN SMTP connection from root Connecting to 127.0.0.1 [127.0.0.1]:PORT_S ... connected @@ -57,7 +57,7 @@ LOG: MAIN REJECT LOG: MAIN REJECT H=(test) [V4NET.0.0.1] U=root F= temporarily rejected RCPT : Could not complete sender verify callout LOG: smtp_connection MAIN - SMTP connection from root closed by QUIT + SMTP connection from root D=qqs closed by QUIT LOG: smtp_connection MAIN SMTP connection from root Connecting to 127.0.0.1 [127.0.0.1]:PORT_S ... connected @@ -75,7 +75,7 @@ LOG: MAIN REJECT LOG: MAIN REJECT H=(test) [V4NET.0.0.1] U=root F= rejected RCPT : Sender verify failed LOG: smtp_connection MAIN - SMTP connection from root closed by QUIT + SMTP connection from root D=qqs closed by QUIT LOG: smtp_connection MAIN SMTP connection from root Connecting to 127.0.0.1 [127.0.0.1]:PORT_S ... connected @@ -94,7 +94,7 @@ LOG: MAIN REJECT LOG: MAIN REJECT H=(test) [V4NET.0.0.1] U=root F= rejected RCPT : Sender verify failed LOG: smtp_connection MAIN - SMTP connection from root closed by QUIT + SMTP connection from root D=qqs closed by QUIT LOG: smtp_connection MAIN SMTP connection from root Connecting to 127.0.0.1 [127.0.0.1]:PORT_S ... connected @@ -112,7 +112,7 @@ LOG: MAIN REJECT LOG: MAIN REJECT H=(test) [V4NET.0.0.1] U=root F= rejected RCPT : Sender verify failed LOG: smtp_connection MAIN - SMTP connection from root closed by QUIT + SMTP connection from root D=qqs closed by QUIT LOG: smtp_connection MAIN SMTP connection from root Connecting to 127.0.0.1 [127.0.0.1]:PORT_S ... connected @@ -130,7 +130,7 @@ cmdlog: '220:EHLO:250:MAIL:250:RCPT:550:QUIT:250' LOG: MAIN REJECT H=(test) [V4NET.0.0.3] U=root F= rejected RCPT : 127.0.0.1 [127.0.0.1] : SMTP error from remote mail server after RCPT TO:: 550 Recipient not liked LOG: smtp_connection MAIN - SMTP connection from root closed by QUIT + SMTP connection from root D=qqs closed by QUIT LOG: smtp_connection MAIN SMTP connection from root Connecting to 127.0.0.1 [127.0.0.1]:PORT_S ... connected @@ -149,7 +149,7 @@ cmdlog: '220:EHLO:250:MAIL:250:RCPT:550-:QUIT:250' LOG: MAIN REJECT H=(test) [V4NET.0.0.3] U=root F= rejected RCPT : 127.0.0.1 [127.0.0.1] : SMTP error from remote mail server after RCPT TO:: 550-Recipient not liked on two lines\n550 Here's the second LOG: smtp_connection MAIN - SMTP connection from root closed by QUIT + SMTP connection from root D=qqs closed by QUIT LOG: smtp_connection MAIN SMTP connection from root Connecting to 127.0.0.1 [127.0.0.1]:PORT_S ... connected @@ -167,7 +167,7 @@ cmdlog: '220:EHLO:250:MAIL:250:RCPT:550:QUIT:250' LOG: MAIN REJECT H=(test) [V4NET.0.0.3] U=root F= rejected RCPT : 127.0.0.1 [127.0.0.1] : SMTP error from remote mail server after RCPT TO:: 550 Recipient not liked, with bad char:\200\377\377 LOG: smtp_connection MAIN - SMTP connection from root closed by QUIT + SMTP connection from root D=qqs closed by QUIT LOG: smtp_connection MAIN SMTP connection from root Connecting to 127.0.0.1 [127.0.0.1]:PORT_S ... failed: Connection refused @@ -175,7 +175,7 @@ Connecting to ip4.ip4.ip4.ip4 [ip4.ip4.ip4.ip4]:PORT_S ... failed: Connection r LOG: MAIN REJECT H=(test) [V4NET.0.0.3] U=root F= temporarily rejected RCPT : Could not complete recipient verify callout LOG: smtp_connection MAIN - SMTP connection from root closed by QUIT + SMTP connection from root D=qqs closed by QUIT LOG: smtp_connection MAIN SMTP connection from root Connecting to 127.0.0.1 [127.0.0.1]:PORT_S ... connected @@ -193,7 +193,7 @@ cmdlog: '220:EHLO:250:MAIL:250:RCPT:550:QUIT:250' LOG: MAIN REJECT H=(test) [V4NET.0.0.4] U=root F= rejected after DATA: there is no valid sender in any header line LOG: smtp_connection MAIN - SMTP connection from root closed by QUIT + SMTP connection from root D=qqs closed by QUIT LOG: smtp_connection MAIN SMTP connection from root Connecting to 127.0.0.1 [127.0.0.1]:PORT_S ... connected @@ -211,7 +211,7 @@ cmdlog: '220:EHLO:250:MAIL:250:RCPT:550:QUIT:250' LOG: MAIN REJECT H=(test) [V4NET.0.0.4] U=root F= rejected after DATA: there is no valid sender in any header line LOG: smtp_connection MAIN - SMTP connection from root closed by QUIT + SMTP connection from root D=qqs closed by QUIT LOG: smtp_connection MAIN SMTP connection from root Connecting to 127.0.0.1 [127.0.0.1]:PORT_S ... connected @@ -236,7 +236,7 @@ cmdlog: '220:EHLO:250:MAIL:250:RCPT:250:RSET:250:MAIL:250:RCPT:250:QUIT:250' LOG: MAIN REJECT H=(test) [V4NET.0.0.5] U=root F= rejected RCPT : relay not permitted LOG: smtp_connection MAIN - SMTP connection from root closed by QUIT + SMTP connection from root D=qqs closed by QUIT LOG: smtp_connection MAIN SMTP connection from root Connecting to 127.0.0.1 [127.0.0.1]:PORT_S ... connected @@ -263,7 +263,7 @@ LOG: MAIN REJECT LOG: MAIN REJECT H=(test) [V4NET.0.0.5] U=root F= rejected RCPT : Sender verify failed LOG: smtp_connection MAIN - SMTP connection from root closed by QUIT + SMTP connection from root D=qqs closed by QUIT LOG: smtp_connection MAIN SMTP connection from root Connecting to 127.0.0.1 [127.0.0.1]:PORT_S ... connected @@ -281,7 +281,7 @@ Connecting to 127.0.0.1 [127.0.0.1]:PORT_S ... connected SMTP(close)>> cmdlog: '220:EHLO:250-:MAIL:250:RCPT:250:QUIT:250' LOG: smtp_connection MAIN - SMTP connection from root closed by QUIT + SMTP connection from root D=qqs closed by QUIT LOG: smtp_connection MAIN SMTP connection from root Connecting to 127.0.0.1 [127.0.0.1]:PORT_S ... connected @@ -301,7 +301,7 @@ cmdlog: '220:EHLO:250-:MAIL:250:RCPT:250:QUIT:250' LOG: MAIN REJECT H=(me) [V4NET.0.0.3] U=root F= rejected RCPT : relay not permitted LOG: smtp_connection MAIN - SMTP connection from root closed by QUIT + SMTP connection from root D=qqs closed by QUIT LOG: smtp_connection MAIN SMTP connection from root Connecting to 127.0.0.1 [127.0.0.1]:PORT_S ... connected @@ -321,7 +321,7 @@ cmdlog: '220:EHLO:250-:MAIL:250:RCPT:250:QUIT:250' LOG: MAIN REJECT H=(me) [V4NET.0.0.3] U=root F= rejected RCPT : relay not permitted LOG: smtp_connection MAIN - SMTP connection from root closed by QUIT + SMTP connection from root D=qqs closed by QUIT LOG: smtp_connection MAIN SMTP connection from root Connecting to 127.0.0.1 [127.0.0.1]:PORT_S ... connected @@ -347,7 +347,7 @@ cmdlog: '220:EHLO:250-:MAIL:250:RCPT:550:RSET:250:MAIL:250:RCPT:250:QUIT:250' LOG: MAIN REJECT H=(me) [V4NET.0.0.7] U=root F= rejected RCPT : relay not permitted LOG: smtp_connection MAIN - SMTP connection from root closed by QUIT + SMTP connection from root D=qqs closed by QUIT LOG: smtp_connection MAIN SMTP connection from root Connecting to 127.0.0.1 [127.0.0.1]:PORT_S ... connected @@ -365,7 +365,7 @@ cmdlog: '220:LHLO:250:MAIL:250:RCPT:550:QUIT:250' LOG: MAIN REJECT H=(test) [V4NET.0.0.3] U=root F= rejected RCPT : 127.0.0.1 [127.0.0.1] : SMTP error from remote mail server after RCPT TO:: 550 Recipient not liked LOG: smtp_connection MAIN - SMTP connection from root closed by QUIT + SMTP connection from root D=qqs closed by QUIT LOG: smtp_connection MAIN SMTP connection from root Connecting to 127.0.0.1 [127.0.0.1]:PORT_S ... connected @@ -377,7 +377,7 @@ LOG: MAIN REJECT LOG: MAIN REJECT H=(test) [V4NET.0.0.1] U=root F= temporarily rejected RCPT : Could not complete sender verify callout LOG: smtp_connection MAIN - SMTP connection from root closed by QUIT + SMTP connection from root D=qqs closed by QUIT LOG: smtp_connection MAIN SMTP connection from root Connecting to 127.0.0.1 [127.0.0.1]:PORT_S ... failed: Connection refused @@ -386,4 +386,4 @@ LOG: MAIN REJECT LOG: MAIN REJECT H=(test) [V4NET.0.0.1] U=root F= temporarily rejected RCPT : Could not complete sender verify callout LOG: smtp_connection MAIN - SMTP connection from root closed by QUIT + SMTP connection from root D=qqs closed by QUIT diff --git a/test/stderr/0230 b/test/stderr/0230 index 9017df8f2..e046d9022 100644 --- a/test/stderr/0230 +++ b/test/stderr/0230 @@ -7,6 +7,6 @@ LOG: SMTP connection from [192.168.1.2]:1117 >>> host in helo_verify_hosts? no (option unset) >>> host in helo_try_verify_hosts? no (option unset) >>> host in helo_accept_junk_hosts? no (option unset) -LOG: SMTP connection from [192.168.1.2]:1117 closed by QUIT +LOG: SMTP connection from [192.168.1.2]:1117 D=qqs closed by QUIT ******** SERVER ******** diff --git a/test/stderr/0275 b/test/stderr/0275 index 0bef81f35..46fdda55d 100644 --- a/test/stderr/0275 +++ b/test/stderr/0275 @@ -596,6 +596,6 @@ LOG: MAIN REJECT SMTP<< QUIT SMTP>> 221 myhost.test.ex closing connection LOG: smtp_connection MAIN - SMTP connection from (test) [127.0.0.1] closed by QUIT + SMTP connection from (test) [127.0.0.1] D=qqs closed by QUIT search_tidyup called >>>>>>>>>>>>>>>> Exim pid=p1238 (fresh-exec) terminating with rc=0 >>>>>>>>>>>>>>>> diff --git a/test/stderr/0277 b/test/stderr/0277 index f57c5c50f..12c462e56 100644 --- a/test/stderr/0277 +++ b/test/stderr/0277 @@ -47,7 +47,7 @@ smtp_setup_msg entered SMTP<< quit SMTP>> 221 myhost.test.ex closing connection LOG: smtp_connection MAIN - SMTP connection from [V4NET.2.3.4] closed by QUIT + SMTP connection from [V4NET.2.3.4] D=qqs closed by QUIT search_tidyup called >>>>>>>>>>>>>>>> Exim pid=p1234 (fresh-exec) terminating with rc=0 >>>>>>>>>>>>>>>> Exim version x.yz .... @@ -106,7 +106,7 @@ smtp_setup_msg entered SMTP<< quit SMTP>> 221 myhost.test.ex closing connection LOG: smtp_connection MAIN - SMTP connection from [V4NET.6.7.8] closed by QUIT + SMTP connection from [V4NET.6.7.8] D=qqs closed by QUIT search_tidyup called >>>>>>>>>>>>>>>> Exim pid=p1235 (fresh-exec) terminating with rc=0 >>>>>>>>>>>>>>>> Exim version x.yz .... @@ -176,7 +176,7 @@ smtp_setup_msg entered SMTP<< quit SMTP>> 221 myhost.test.ex closing connection LOG: smtp_connection MAIN - SMTP connection from [V4NET.10.11.12] closed by QUIT + SMTP connection from [V4NET.10.11.12] D=qqs closed by QUIT search_tidyup called >>>>>>>>>>>>>>>> Exim pid=p1236 (fresh-exec) terminating with rc=0 >>>>>>>>>>>>>>>> Exim version x.yz .... @@ -246,7 +246,7 @@ smtp_setup_msg entered SMTP<< quit SMTP>> 221 myhost.test.ex closing connection LOG: smtp_connection MAIN - SMTP connection from [V4NET.1.1.1] closed by QUIT + SMTP connection from [V4NET.1.1.1] D=qqs closed by QUIT search_tidyup called >>>>>>>>>>>>>>>> Exim pid=p1237 (fresh-exec) terminating with rc=0 >>>>>>>>>>>>>>>> Exim version x.yz .... @@ -310,6 +310,6 @@ smtp_setup_msg entered SMTP<< quit SMTP>> 221 myhost.test.ex closing connection LOG: smtp_connection MAIN - SMTP connection from [V4NET.2.2.2] closed by QUIT + SMTP connection from [V4NET.2.2.2] D=qqs closed by QUIT search_tidyup called >>>>>>>>>>>>>>>> Exim pid=p1238 (fresh-exec) terminating with rc=0 >>>>>>>>>>>>>>>> diff --git a/test/stderr/0293 b/test/stderr/0293 index f12b83795..4a1ab718a 100644 --- a/test/stderr/0293 +++ b/test/stderr/0293 @@ -14,10 +14,10 @@ LOG: delay_delivery MAIN LOG: MAIN REJECT rejected MAIL command U=CALLER: too many messages in one connection LOG: smtp_connection MAIN - SMTP connection from CALLER closed by QUIT + SMTP connection from CALLER D=qqs closed by QUIT LOG: smtp_connection MAIN SMTP connection from CALLER LOG: MAIN REJECT rejected MAIL command U=CALLER: too many messages in one connection LOG: smtp_connection MAIN - SMTP connection from CALLER closed by QUIT + SMTP connection from CALLER D=qqs closed by QUIT diff --git a/test/stderr/0294 b/test/stderr/0294 index 3aea3bbc8..6dac79140 100644 --- a/test/stderr/0294 +++ b/test/stderr/0294 @@ -93,7 +93,7 @@ SMTP>> 250 OK SMTP<< quit SMTP>> 221 myhost.test.ex closing connection LOG: smtp_connection MAIN - SMTP connection from CALLER closed by QUIT + SMTP connection from CALLER D=qqs closed by QUIT >>>>>>>>>>>>>>>> Exim pid=p1234 (fresh-exec) terminating with rc=0 >>>>>>>>>>>>>>>> Exim version x.yz .... configuration file is TESTSUITE/test-config @@ -152,7 +152,7 @@ SMTP>> 250 Accepted SMTP<< quit SMTP>> 221 myhost.test.ex closing connection LOG: smtp_connection MAIN - SMTP connection from (test) [1.2.3.4] closed by QUIT + SMTP connection from (test) [1.2.3.4] D=qqs closed by QUIT >>>>>>>>>>>>>>>> Exim pid=p1235 (fresh-exec) terminating with rc=0 >>>>>>>>>>>>>>>> Exim version x.yz .... configuration file is TESTSUITE/test-config @@ -212,7 +212,7 @@ SMTP>> 250 Accepted SMTP<< quit SMTP>> 221 myhost.test.ex closing connection LOG: smtp_connection MAIN - SMTP connection from (test) [V4NET.9.8.7] closed by QUIT + SMTP connection from (test) [V4NET.9.8.7] D=qqs closed by QUIT >>>>>>>>>>>>>>>> Exim pid=p1236 (fresh-exec) terminating with rc=0 >>>>>>>>>>>>>>>> Exim version x.yz .... configuration file is TESTSUITE/test-config @@ -275,5 +275,5 @@ SMTP>> 250 OK SMTP<< quit SMTP>> 221 myhost.test.ex closing connection LOG: smtp_connection MAIN - SMTP connection from CALLER closed by QUIT + SMTP connection from CALLER D=qqs closed by QUIT >>>>>>>>>>>>>>>> Exim pid=p1237 (fresh-exec) terminating with rc=0 >>>>>>>>>>>>>>>> diff --git a/test/stderr/0303 b/test/stderr/0303 index 02875c77d..6c8b6a5d8 100644 --- a/test/stderr/0303 +++ b/test/stderr/0303 @@ -128,7 +128,7 @@ smtp_setup_msg entered SMTP<< quit SMTP>> 221 myhost.test.ex closing connection LOG: smtp_connection MAIN - SMTP connection from ([V4NET.2.3.4]) [V4NET.2.3.4] closed by QUIT + SMTP connection from ([V4NET.2.3.4]) [V4NET.2.3.4] D=qqs closed by QUIT search_tidyup called >>>>>>>>>>>>>>>> Exim pid=p1234 (fresh-exec) terminating with rc=0 >>>>>>>>>>>>>>>> Exim version x.yz .... @@ -208,6 +208,6 @@ smtp_setup_msg entered SMTP<< quit SMTP>> 221 myhost.test.ex closing connection LOG: smtp_connection MAIN - SMTP connection from host.name.tld [V4NET.2.3.4] closed by QUIT + SMTP connection from host.name.tld [V4NET.2.3.4] D=qqs closed by QUIT search_tidyup called >>>>>>>>>>>>>>>> Exim pid=p1235 (fresh-exec) terminating with rc=0 >>>>>>>>>>>>>>>> diff --git a/test/stderr/0362 b/test/stderr/0362 index 868422d53..35e64615b 100644 --- a/test/stderr/0362 +++ b/test/stderr/0362 @@ -119,6 +119,6 @@ SMTP>> 250 Accepted SMTP<< quit SMTP>> 221 the.local.host.name closing connection LOG: smtp_connection MAIN - SMTP connection from (test) [V4NET.0.0.0] closed by QUIT + SMTP connection from (test) [V4NET.0.0.0] D=qqs closed by QUIT search_tidyup called >>>>>>>>>>>>>>>> Exim pid=p1234 (fresh-exec) terminating with rc=0 >>>>>>>>>>>>>>>> diff --git a/test/stderr/0371 b/test/stderr/0371 index f926d4da0..4669445d0 100644 --- a/test/stderr/0371 +++ b/test/stderr/0371 @@ -149,6 +149,6 @@ SMTP>> 250 OK SMTP<< quit SMTP>> 221 mail.test.ex closing connection LOG: smtp_connection MAIN - SMTP connection from (something) [V4NET.0.0.0] closed by QUIT + SMTP connection from (something) [V4NET.0.0.0] D=qqs closed by QUIT search_tidyup called >>>>>>>>>>>>>>>> Exim pid=p1234 (fresh-exec) terminating with rc=0 >>>>>>>>>>>>>>>> diff --git a/test/stderr/0372 b/test/stderr/0372 index abec969e9..70b08f031 100644 --- a/test/stderr/0372 +++ b/test/stderr/0372 @@ -121,7 +121,7 @@ LOG: MAIN LOG: MAIN Completed LOG: smtp_connection MAIN - SMTP connection from CALLER closed by QUIT + SMTP connection from CALLER D=qqs closed by QUIT ----- System filter ----- 1999-03-02 09:44:33 10HmaX-0005vi-00 Error in system filter: failed to expand " acl_c0="$acl_c0"\n acl_c1="$acl_c1"\n acl_c2="$acl_c2"\n acl_c3="$acl_c3"\n acl_c4="$acl_c4"\n acl_c5="$acl_c5"\n acl_c6="$acl_c6"\n acl_c7="$acl_c7"\n acl_c8="$acl_c8"\n acl_c9="$acl_c9"\n acl_m0="$acl_m0"\n acl_m1="$acl_m1"\n acl_m2="$acl_m2"\n acl_m3="$acl_m3"\n acl_m4="$acl_m4"\n acl_m5="$acl_m5"\n acl_m6="$acl_m6"\n acl_m7="$acl_m7"\n acl_m8="$acl_m8"\n acl_m9="$acl_m9"\n acl_m_foo="$acl_m_foo"\n acl_m_bar="$acl_m_bar"\n acl_c_foo="$acl_c_foo"\n acl_c_bar="$acl_c_bar"\n" in logwrite command: unknown variable name "acl_c1" (strict_acl_vars is set) diff --git a/test/stderr/0376 b/test/stderr/0376 index 995eafc77..c8cd1b9da 100644 --- a/test/stderr/0376 +++ b/test/stderr/0376 @@ -28,7 +28,7 @@ wrote callout cache domain record for localhost: result=1 postmaster=0 random=0 wrote positive callout cache address record for ok@localhost LOG: smtp_connection MAIN - SMTP connection from root closed by QUIT + SMTP connection from root D=qqs closed by QUIT >>>>>>>>>>>>>>>> Exim pid=p1234 (fresh-exec) terminating with rc=0 >>>>>>>>>>>>>>>> Exim version x.yz .... configuration file is TESTSUITE/test-config @@ -45,7 +45,7 @@ callout cache: found domain record for localhost callout cache: found address record for ok@localhost callout cache: address record is positive LOG: smtp_connection MAIN - SMTP connection from root closed by QUIT + SMTP connection from root D=qqs closed by QUIT >>>>>>>>>>>>>>>> Exim pid=p1235 (fresh-exec) terminating with rc=0 >>>>>>>>>>>>>>>> Exim version x.yz .... configuration file is TESTSUITE/test-config @@ -68,7 +68,7 @@ created log directory TESTSUITE/spool/log LOG: MAIN REJECT H=(test) [V4NET.0.0.1] U=root F= temporarily rejected RCPT : Could not complete sender verify callout LOG: smtp_connection MAIN - SMTP connection from root closed by QUIT + SMTP connection from root D=qqs closed by QUIT >>>>>>>>>>>>>>>> Exim pid=p1236 (fresh-exec) terminating with rc=0 >>>>>>>>>>>>>>>> Exim version x.yz .... configuration file is TESTSUITE/test-config @@ -104,7 +104,7 @@ LOG: MAIN REJECT LOG: MAIN REJECT H=(test) [V4NET.0.0.1] U=root F= rejected RCPT : (recipient): Sender verify failed LOG: smtp_connection MAIN - SMTP connection from root closed by QUIT + SMTP connection from root D=qqs closed by QUIT >>>>>>>>>>>>>>>> Exim pid=p1237 (fresh-exec) terminating with rc=0 >>>>>>>>>>>>>>>> Exim version x.yz .... configuration file is TESTSUITE/test-config @@ -125,7 +125,7 @@ LOG: MAIN REJECT LOG: MAIN REJECT H=(test) [V4NET.0.0.1] U=root F= rejected RCPT : (recipient): Sender verify failed LOG: smtp_connection MAIN - SMTP connection from root closed by QUIT + SMTP connection from root D=qqs closed by QUIT >>>>>>>>>>>>>>>> Exim pid=p1238 (fresh-exec) terminating with rc=0 >>>>>>>>>>>>>>>> Exim version x.yz .... configuration file is TESTSUITE/test-config @@ -158,7 +158,7 @@ LOG: MAIN REJECT LOG: MAIN REJECT H=(test) [V4NET.0.0.1] U=root F= rejected RCPT : (mail): Sender verify failed LOG: smtp_connection MAIN - SMTP connection from root closed by QUIT + SMTP connection from root D=qqs closed by QUIT >>>>>>>>>>>>>>>> Exim pid=p1239 (fresh-exec) terminating with rc=0 >>>>>>>>>>>>>>>> Exim version x.yz .... configuration file is TESTSUITE/test-config @@ -178,7 +178,7 @@ LOG: MAIN REJECT LOG: MAIN REJECT H=(test) [V4NET.0.0.1] U=root F= rejected RCPT : (mail): Sender verify failed LOG: smtp_connection MAIN - SMTP connection from root closed by QUIT + SMTP connection from root D=qqs closed by QUIT >>>>>>>>>>>>>>>> Exim pid=p1240 (fresh-exec) terminating with rc=0 >>>>>>>>>>>>>>>> Exim version x.yz .... configuration file is TESTSUITE/test-config @@ -221,7 +221,7 @@ LOG: MAIN REJECT LOG: MAIN REJECT H=(test) [V4NET.0.0.2] U=root F= rejected RCPT : Sender verify failed LOG: smtp_connection MAIN - SMTP connection from root closed by QUIT + SMTP connection from root D=qqs closed by QUIT >>>>>>>>>>>>>>>> Exim pid=p1241 (fresh-exec) terminating with rc=0 >>>>>>>>>>>>>>>> Exim version x.yz .... configuration file is TESTSUITE/test-config @@ -241,7 +241,7 @@ LOG: MAIN REJECT LOG: MAIN REJECT H=(test) [V4NET.0.0.2] U=root F= rejected RCPT : Sender verify failed LOG: smtp_connection MAIN - SMTP connection from root closed by QUIT + SMTP connection from root D=qqs closed by QUIT >>>>>>>>>>>>>>>> Exim pid=p1242 (fresh-exec) terminating with rc=0 >>>>>>>>>>>>>>>> Exim version x.yz .... configuration file is TESTSUITE/test-config @@ -280,7 +280,7 @@ wrote callout cache domain record for otherhost2: result=1 postmaster=1 random=0 wrote positive callout cache address record for ok@otherhost2 LOG: smtp_connection MAIN - SMTP connection from root closed by QUIT + SMTP connection from root D=qqs closed by QUIT >>>>>>>>>>>>>>>> Exim pid=p1243 (fresh-exec) terminating with rc=0 >>>>>>>>>>>>>>>> Exim version x.yz .... configuration file is TESTSUITE/test-config @@ -298,7 +298,7 @@ callout cache: domain accepts RCPT TO: callout cache: found address record for ok@otherhost2 callout cache: address record is positive LOG: smtp_connection MAIN - SMTP connection from root closed by QUIT + SMTP connection from root D=qqs closed by QUIT >>>>>>>>>>>>>>>> Exim pid=p1244 (fresh-exec) terminating with rc=0 >>>>>>>>>>>>>>>> Exim version x.yz .... configuration file is TESTSUITE/test-config @@ -331,7 +331,7 @@ wrote callout cache domain record for otherhost3: LOG: MAIN (random) LOG: smtp_connection MAIN - SMTP connection from root closed by QUIT + SMTP connection from root D=qqs closed by QUIT >>>>>>>>>>>>>>>> Exim pid=p1245 (fresh-exec) terminating with rc=0 >>>>>>>>>>>>>>>> Exim version x.yz .... configuration file is TESTSUITE/test-config @@ -349,7 +349,7 @@ callout cache: domain accepts random addresses LOG: MAIN (random) LOG: smtp_connection MAIN - SMTP connection from root closed by QUIT + SMTP connection from root D=qqs closed by QUIT >>>>>>>>>>>>>>>> Exim pid=p1246 (fresh-exec) terminating with rc=0 >>>>>>>>>>>>>>>> Exim version x.yz .... configuration file is TESTSUITE/test-config @@ -382,7 +382,7 @@ wrote callout cache domain record for otherhost4: LOG: MAIN (random) LOG: smtp_connection MAIN - SMTP connection from root closed by QUIT + SMTP connection from root D=qqs closed by QUIT >>>>>>>>>>>>>>>> Exim pid=p1247 (fresh-exec) terminating with rc=0 >>>>>>>>>>>>>>>> Exim version x.yz .... configuration file is TESTSUITE/test-config @@ -400,7 +400,7 @@ callout cache: domain accepts random addresses LOG: MAIN (random) LOG: smtp_connection MAIN - SMTP connection from root closed by QUIT + SMTP connection from root D=qqs closed by QUIT >>>>>>>>>>>>>>>> Exim pid=p1248 (fresh-exec) terminating with rc=0 >>>>>>>>>>>>>>>> Exim version x.yz .... configuration file is TESTSUITE/test-config @@ -445,7 +445,7 @@ wrote callout cache domain record for otherhost41: result=1 postmaster=1 random=2 wrote positive callout cache address record for ok@otherhost41 LOG: smtp_connection MAIN - SMTP connection from root closed by QUIT + SMTP connection from root D=qqs closed by QUIT >>>>>>>>>>>>>>>> Exim pid=p1249 (fresh-exec) terminating with rc=0 >>>>>>>>>>>>>>>> Exim version x.yz .... configuration file is TESTSUITE/test-config @@ -464,7 +464,7 @@ callout cache: domain accepts RCPT TO: callout cache: found address record for ok@otherhost41 callout cache: address record is positive LOG: smtp_connection MAIN - SMTP connection from root closed by QUIT + SMTP connection from root D=qqs closed by QUIT >>>>>>>>>>>>>>>> Exim pid=p1250 (fresh-exec) terminating with rc=0 >>>>>>>>>>>>>>>> Exim version x.yz .... configuration file is TESTSUITE/test-config @@ -503,7 +503,7 @@ wrote callout cache domain record for otherhost21: result=1 postmaster=1 random=0 wrote positive callout cache address record for ok@otherhost21 LOG: smtp_connection MAIN - SMTP connection from root closed by QUIT + SMTP connection from root D=qqs closed by QUIT >>>>>>>>>>>>>>>> Exim pid=p1251 (fresh-exec) terminating with rc=0 >>>>>>>>>>>>>>>> Exim version x.yz .... configuration file is TESTSUITE/test-config @@ -536,7 +536,7 @@ wrote callout cache domain record for otherhost21: result=1 postmaster=1 random=0 wrote positive callout cache address record for ok2@otherhost21 LOG: smtp_connection MAIN - SMTP connection from root closed by QUIT + SMTP connection from root D=qqs closed by QUIT >>>>>>>>>>>>>>>> Exim pid=p1252 (fresh-exec) terminating with rc=0 >>>>>>>>>>>>>>>> Exim version x.yz .... configuration file is TESTSUITE/test-config @@ -574,7 +574,7 @@ wrote callout cache domain record for otherhost31: result=1 postmaster=0 random=2 wrote positive callout cache address record for ok@otherhost31 LOG: smtp_connection MAIN - SMTP connection from root closed by QUIT + SMTP connection from root D=qqs closed by QUIT >>>>>>>>>>>>>>>> Exim pid=p1253 (fresh-exec) terminating with rc=0 >>>>>>>>>>>>>>>> Exim version x.yz .... configuration file is TESTSUITE/test-config @@ -607,7 +607,7 @@ wrote callout cache domain record for otherhost31: result=1 postmaster=0 random=2 wrote positive callout cache address record for okok@otherhost31 LOG: smtp_connection MAIN - SMTP connection from root closed by QUIT + SMTP connection from root D=qqs closed by QUIT >>>>>>>>>>>>>>>> Exim pid=p1254 (fresh-exec) terminating with rc=0 >>>>>>>>>>>>>>>> Exim version x.yz .... configuration file is TESTSUITE/test-config @@ -645,7 +645,7 @@ wrote callout cache domain record for otherhost31: result=1 postmaster=0 random=2 wrote positive callout cache address record for okokok@otherhost31 LOG: smtp_connection MAIN - SMTP connection from root closed by QUIT + SMTP connection from root D=qqs closed by QUIT >>>>>>>>>>>>>>>> Exim pid=p1255 (fresh-exec) terminating with rc=0 >>>>>>>>>>>>>>>> Exim version x.yz .... configuration file is TESTSUITE/test-config @@ -679,7 +679,7 @@ LOG: MAIN REJECT LOG: MAIN REJECT H=(test) [V4NET.0.0.5] U=root F= temporarily rejected RCPT : Could not complete sender verify callout LOG: smtp_connection MAIN - SMTP connection from root closed by QUIT + SMTP connection from root D=qqs closed by QUIT >>>>>>>>>>>>>>>> Exim pid=p1256 (fresh-exec) terminating with rc=0 >>>>>>>>>>>>>>>> Exim version x.yz .... configuration file is TESTSUITE/test-config @@ -718,7 +718,7 @@ wrote callout cache domain record for otherhost52: result=1 postmaster=1 random=0 wrote positive callout cache address record for okokok@otherhost52 LOG: smtp_connection MAIN - SMTP connection from root closed by QUIT + SMTP connection from root D=qqs closed by QUIT >>>>>>>>>>>>>>>> Exim pid=p1257 (fresh-exec) terminating with rc=0 >>>>>>>>>>>>>>>> Exim version x.yz .... configuration file is TESTSUITE/test-config @@ -753,7 +753,7 @@ wrote positive callout cache address record for abcd@x.y.z/ LOG: MAIN <= ok7@otherhost53 H=(test) [V4NET.0.0.7] U=root P=smtp S=sss LOG: smtp_connection MAIN - SMTP connection from root closed by QUIT + SMTP connection from root D=qqs closed by QUIT >>>>>>>>>>>>>>>> Exim pid=p1258 (fresh-exec) terminating with rc=0 >>>>>>>>>>>>>>>> Exim version x.yz .... configuration file is TESTSUITE/test-config @@ -786,7 +786,7 @@ wrote callout cache domain record for x.y.z: LOG: MAIN <= ok7@otherhost53 H=(test) [V4NET.0.0.8] U=root P=smtp S=sss LOG: smtp_connection MAIN - SMTP connection from root closed by QUIT + SMTP connection from root D=qqs closed by QUIT >>>>>>>>>>>>>>>> Exim pid=p1259 (fresh-exec) terminating with rc=0 >>>>>>>>>>>>>>>> Exim version x.yz .... configuration file is TESTSUITE/test-config @@ -827,7 +827,7 @@ wrote callout cache domain record for otherhost9: result=1 postmaster=1 random=0 wrote positive callout cache address record for ok@otherhost9 LOG: smtp_connection MAIN - SMTP connection from root closed by QUIT + SMTP connection from root D=qqs closed by QUIT >>>>>>>>>>>>>>>> Exim pid=p1260 (fresh-exec) terminating with rc=0 >>>>>>>>>>>>>>>> Exim version x.yz .... configuration file is TESTSUITE/test-config @@ -872,5 +872,5 @@ wrote callout cache domain record for test.ex: result=1 postmaster=1 random=2 wrote positive callout cache address record for z@test.ex/ LOG: smtp_connection MAIN - SMTP connection from root closed by QUIT + SMTP connection from root D=qqs closed by QUIT >>>>>>>>>>>>>>>> Exim pid=p1261 (fresh-exec) terminating with rc=0 >>>>>>>>>>>>>>>> diff --git a/test/stderr/0381 b/test/stderr/0381 index 6ad38b6f8..550e2dab9 100644 --- a/test/stderr/0381 +++ b/test/stderr/0381 @@ -94,6 +94,6 @@ SMTP>> 250 Accepted SMTP<< quit SMTP>> 221 myhost.test.ex closing connection LOG: smtp_connection MAIN - SMTP connection from CALLER closed by QUIT + SMTP connection from CALLER D=qqs closed by QUIT search_tidyup called >>>>>>>>>>>>>>>> Exim pid=p1234 (fresh-exec) terminating with rc=0 >>>>>>>>>>>>>>>> diff --git a/test/stderr/0386 b/test/stderr/0386 index 10cee1adf..e6aeda9e2 100644 --- a/test/stderr/0386 +++ b/test/stderr/0386 @@ -163,7 +163,7 @@ LOG: MAIN REJECT SMTP<< quit SMTP>> 221 myhost.test.ex closing connection LOG: smtp_connection MAIN - SMTP connection from (test) [V4NET.9.8.7] closed by QUIT + SMTP connection from (test) [V4NET.9.8.7] D=qqs closed by QUIT search_tidyup called >>>>>>>>>>>>>>>> Exim pid=p1234 (fresh-exec) terminating with rc=0 >>>>>>>>>>>>>>>> Exim version x.yz .... @@ -607,6 +607,6 @@ smtp_setup_msg entered SMTP<< quit SMTP>> 221 myhost.test.ex closing connection LOG: smtp_connection MAIN - SMTP connection from CALLER closed by QUIT + SMTP connection from CALLER D=qqs closed by QUIT search_tidyup called >>>>>>>>>>>>>>>> Exim pid=p1235 (fresh-exec) terminating with rc=0 >>>>>>>>>>>>>>>> diff --git a/test/stderr/0391 b/test/stderr/0391 index d77f0cef7..b7873266f 100644 --- a/test/stderr/0391 +++ b/test/stderr/0391 @@ -75,6 +75,6 @@ SMTP>> 250 Accepted SMTP<< quit SMTP>> 221 myhost.test.ex closing connection LOG: smtp_connection MAIN - SMTP connection from (test) [1.2.3.4] closed by QUIT + SMTP connection from (test) [1.2.3.4] D=qqs closed by QUIT search_tidyup called >>>>>>>>>>>>>>>> Exim pid=p1234 (fresh-exec) terminating with rc=0 >>>>>>>>>>>>>>>> diff --git a/test/stderr/0396 b/test/stderr/0396 index 6e28e452f..75b64878a 100644 --- a/test/stderr/0396 +++ b/test/stderr/0396 @@ -37,6 +37,6 @@ created log directory TESTSUITE/spool/log SMTP<< quit SMTP>> 221 the.local.host.name closing connection LOG: smtp_connection MAIN - SMTP connection from CALLER closed by QUIT + SMTP connection from CALLER D=qqs closed by QUIT search_tidyup called >>>>>>>>>>>>>>>> Exim pid=p1234 (fresh-exec) terminating with rc=0 >>>>>>>>>>>>>>>> diff --git a/test/stderr/0398 b/test/stderr/0398 index 12727cfc4..604e791b6 100644 --- a/test/stderr/0398 +++ b/test/stderr/0398 @@ -304,6 +304,6 @@ SMTP>> 250 Accepted SMTP<< quit SMTP>> 221 mail.test.ex closing connection LOG: smtp_connection MAIN - SMTP connection from CALLER closed by QUIT + SMTP connection from CALLER D=qqs closed by QUIT search_tidyup called >>>>>>>>>>>>>>>> Exim pid=p1234 (fresh-exec) terminating with rc=0 >>>>>>>>>>>>>>>> diff --git a/test/stderr/0432 b/test/stderr/0432 index 917279c1e..2722e6b34 100644 --- a/test/stderr/0432 +++ b/test/stderr/0432 @@ -146,7 +146,7 @@ SMTP>> 250 OK SMTP<< quit SMTP>> 221 myhost.test.ex closing connection LOG: smtp_connection MAIN - SMTP connection from (test) [1.2.3.4] closed by QUIT + SMTP connection from (test) [1.2.3.4] D=qqs closed by QUIT search_tidyup called >>>>>>>>>>>>>>>> Exim pid=p1234 (fresh-exec) terminating with rc=0 >>>>>>>>>>>>>>>> Exim version x.yz .... @@ -233,7 +233,7 @@ SMTP>> 250 OK SMTP<< quit SMTP>> 221 myhost.test.ex closing connection LOG: smtp_connection MAIN - SMTP connection from (test) [1.2.3.4] closed by QUIT + SMTP connection from (test) [1.2.3.4] D=qqs closed by QUIT search_tidyup called >>>>>>>>>>>>>>>> Exim pid=p1235 (fresh-exec) terminating with rc=0 >>>>>>>>>>>>>>>> >>> host in hosts_connection_nolog? no (option unset) diff --git a/test/stderr/0435 b/test/stderr/0435 index 916f23c94..77e147981 100644 --- a/test/stderr/0435 +++ b/test/stderr/0435 @@ -20,6 +20,6 @@ SMTP>> 501 NUL characters are not allowed in SMTP commands SMTP<< quit SMTP>> 221 myhost.test.ex closing connection LOG: smtp_connection MAIN - SMTP connection from CALLER closed by QUIT + SMTP connection from CALLER D=qqs closed by QUIT search_tidyup called >>>>>>>>>>>>>>>> Exim pid=p1234 (fresh-exec) terminating with rc=0 >>>>>>>>>>>>>>>> diff --git a/test/stderr/0462 b/test/stderr/0462 index 446305178..470f2ed59 100644 --- a/test/stderr/0462 +++ b/test/stderr/0462 @@ -48,7 +48,7 @@ callout cache: found domain record for localhost callout cache: found address record for Ok@localhost callout cache: address record is positive LOG: smtp_connection MAIN - SMTP connection from root closed by QUIT + SMTP connection from root D=qqs closed by QUIT >>>>>>>>>>>>>>>> Exim pid=p1234 (fresh-exec) terminating with rc=0 >>>>>>>>>>>>>>>> Exim version x.yz .... configuration file is TESTSUITE/test-config @@ -84,7 +84,7 @@ LOG: MAIN REJECT LOG: MAIN REJECT H=(test) [V4NET.0.0.2] U=root F= rejected RCPT : Sender verify failed LOG: smtp_connection MAIN - SMTP connection from root closed by QUIT + SMTP connection from root D=qqs closed by QUIT >>>>>>>>>>>>>>>> Exim pid=p1235 (fresh-exec) terminating with rc=0 >>>>>>>>>>>>>>>> Exim version x.yz .... configuration file is TESTSUITE/test-config @@ -118,5 +118,5 @@ wrote negative callout cache address record for NOTok2@elsewhere LOG: MAIN REJECT H=(test) [V4NET.0.0.2] U=root F= rejected RCPT : Sender verify failed LOG: smtp_connection MAIN - SMTP connection from root closed by QUIT + SMTP connection from root D=qqs closed by QUIT >>>>>>>>>>>>>>>> Exim pid=p1236 (fresh-exec) terminating with rc=0 >>>>>>>>>>>>>>>> diff --git a/test/stderr/0464 b/test/stderr/0464 index f18276074..388539123 100644 --- a/test/stderr/0464 +++ b/test/stderr/0464 @@ -201,6 +201,6 @@ SMTP>> 250 Accepted SMTP<< quit SMTP>> 221 myhost.test.ex closing connection LOG: smtp_connection MAIN - SMTP connection from CALLER closed by QUIT + SMTP connection from CALLER D=qqs closed by QUIT search_tidyup called >>>>>>>>>>>>>>>> Exim pid=p1234 (fresh-exec) terminating with rc=0 >>>>>>>>>>>>>>>> diff --git a/test/stderr/0465 b/test/stderr/0465 index bcf5f0393..8bd50d1cb 100644 --- a/test/stderr/0465 +++ b/test/stderr/0465 @@ -29,7 +29,7 @@ SMTP>> 501 : domain missing or malformed SMTP<< quit SMTP>> 221 myhost.test.ex closing connection LOG: smtp_connection MAIN - SMTP connection from CALLER closed by QUIT + SMTP connection from CALLER D=qqs closed by QUIT search_tidyup called >>>>>>>>>>>>>>>> Exim pid=p1234 (fresh-exec) terminating with rc=0 >>>>>>>>>>>>>>>> exim: bad -f address "abc@somewhere.": domain is malformed (trailing dot not allowed) @@ -104,7 +104,7 @@ smtp_setup_msg entered SMTP<< quit SMTP>> 221 myhost.test.ex closing connection LOG: smtp_connection MAIN - SMTP connection from CALLER closed by QUIT + SMTP connection from CALLER D=qqs closed by QUIT search_tidyup called >>>>>>>>>>>>>>>> Exim pid=p1235 (fresh-exec) terminating with rc=0 >>>>>>>>>>>>>>>> Exim version x.yz .... @@ -173,6 +173,6 @@ smtp_setup_msg entered SMTP<< quit SMTP>> 221 myhost.test.ex closing connection LOG: smtp_connection MAIN - SMTP connection from CALLER closed by QUIT + SMTP connection from CALLER D=qqs closed by QUIT search_tidyup called >>>>>>>>>>>>>>>> Exim pid=p1236 (fresh-exec) terminating with rc=0 >>>>>>>>>>>>>>>> diff --git a/test/stderr/0473 b/test/stderr/0473 index 21de8a28f..1e943d0e8 100644 --- a/test/stderr/0473 +++ b/test/stderr/0473 @@ -28,7 +28,7 @@ wrote callout cache domain record for two.test.ex: LOG: MAIN REJECT U=CALLER F= temporarily rejected RCPT r11@two.test.ex: Could not complete recipient verify callout: 127.0.0.1 [127.0.0.1] : SMTP timeout after RCPT TO: LOG: smtp_connection MAIN - SMTP connection from CALLER closed by QUIT + SMTP connection from CALLER D=qqs closed by QUIT >>>>>>>>>>>>>>>> Exim pid=p1234 (fresh-exec) terminating with rc=0 >>>>>>>>>>>>>>>> Exim version x.yz .... configuration file is TESTSUITE/test-config @@ -52,5 +52,5 @@ SMTP timeout LOG: MAIN REJECT U=CALLER F= temporarily rejected RCPT r11@two.test.ex: Could not complete recipient verify callout: 127.0.0.1 [127.0.0.1] : SMTP timeout after initial connection LOG: smtp_connection MAIN - SMTP connection from CALLER closed by QUIT + SMTP connection from CALLER D=qqs closed by QUIT >>>>>>>>>>>>>>>> Exim pid=p1235 (fresh-exec) terminating with rc=0 >>>>>>>>>>>>>>>> diff --git a/test/stderr/0479 b/test/stderr/0479 index 66f30eeba..64ff0acc0 100644 --- a/test/stderr/0479 +++ b/test/stderr/0479 @@ -95,6 +95,6 @@ SMTP>> 250 Accepted SMTP<< quit SMTP>> 221 the.local.host.name closing connection LOG: smtp_connection MAIN - SMTP connection from ([1.2.3.4]) [1.2.3.4] closed by QUIT + SMTP connection from ([1.2.3.4]) [1.2.3.4] D=qqs closed by QUIT search_tidyup called >>>>>>>>>>>>>>>> Exim pid=p1234 (fresh-exec) terminating with rc=0 >>>>>>>>>>>>>>>> diff --git a/test/stderr/0483 b/test/stderr/0483 index 2839e479f..c38d537ea 100644 --- a/test/stderr/0483 +++ b/test/stderr/0483 @@ -26,5 +26,5 @@ routed by r1 router LOG: MAIN REJECT U=CALLER F= rejected RCPT LOG: smtp_connection MAIN - SMTP connection from CALLER closed by QUIT + SMTP connection from CALLER D=qqs closed by QUIT >>>>>>>>>>>>>>>> Exim pid=p1234 (fresh-exec) terminating with rc=0 >>>>>>>>>>>>>>>> diff --git a/test/stderr/0487 b/test/stderr/0487 index 86af4dfec..fb2536a9b 100644 --- a/test/stderr/0487 +++ b/test/stderr/0487 @@ -204,6 +204,6 @@ smtp_setup_msg entered SMTP<< quit SMTP>> 221 myhost.test.ex closing connection LOG: smtp_connection MAIN - SMTP connection from CALLER closed by QUIT + SMTP connection from CALLER D=qqs closed by QUIT search_tidyup called >>>>>>>>>>>>>>>> Exim pid=p1234 (fresh-exec) terminating with rc=0 >>>>>>>>>>>>>>>> diff --git a/test/stderr/0525 b/test/stderr/0525 index efa09eb19..61b939d46 100644 --- a/test/stderr/0525 +++ b/test/stderr/0525 @@ -21,4 +21,4 @@ LOG: MAIN LOG: MAIN == def@pqr R=r1 T=t1 defer (dd): Connection timed out H=127.0.0.1 [127.0.0.1]: SMTP timeout after sending data block (ddd bytes written) LOG: smtp_connection MAIN - SMTP connection from CALLER closed by QUIT + SMTP connection from CALLER D=qqs closed by QUIT diff --git a/test/stderr/0544 b/test/stderr/0544 index 942ddcda5..271fb4604 100644 --- a/test/stderr/0544 +++ b/test/stderr/0544 @@ -463,5 +463,5 @@ LOG: smtp_connection MAIN ╰─────result: domain=recipient.domain/sender_domain=sender.domain ╰──(tainted) LOG: smtp_connection MAIN - SMTP connection from CALLER closed by QUIT + SMTP connection from CALLER D=qqs closed by QUIT >>>>>>>>>>>>>>>> Exim pid=p1236 (fresh-exec) terminating with rc=0 >>>>>>>>>>>>>>>> diff --git a/test/stderr/0575 b/test/stderr/0575 index f70f19cd1..95f8f0877 100644 --- a/test/stderr/0575 +++ b/test/stderr/0575 @@ -67,6 +67,6 @@ smtp_setup_msg entered SMTP<< quit SMTP>> 221 mail.test.ex closing connection LOG: smtp_connection MAIN - SMTP connection from (test) [V4NET.0.0.0] closed by QUIT + SMTP connection from (test) [V4NET.0.0.0] D=qqs closed by QUIT search_tidyup called >>>>>>>>>>>>>>>> Exim pid=p1234 (fresh-exec) terminating with rc=0 >>>>>>>>>>>>>>>> diff --git a/test/stderr/0578 b/test/stderr/0578 index 51166675c..d804df43b 100644 --- a/test/stderr/0578 +++ b/test/stderr/0578 @@ -30,7 +30,7 @@ wrote callout cache domain record for localhost: result=1 postmaster=0 random=0 wrote positive callout cache address record for ok@localhost LOG: smtp_connection MAIN - SMTP connection from root closed by QUIT + SMTP connection from root D=qqs closed by QUIT >>>>>>>>>>>>>>>> Exim pid=p1234 (fresh-exec) terminating with rc=0 >>>>>>>>>>>>>>>> Exim version x.yz .... configuration file is TESTSUITE/test-config @@ -47,7 +47,7 @@ callout cache: found domain record for localhost callout cache: found address record for ok@localhost callout cache: address record is positive LOG: smtp_connection MAIN - SMTP connection from root closed by QUIT + SMTP connection from root D=qqs closed by QUIT >>>>>>>>>>>>>>>> Exim pid=p1235 (fresh-exec) terminating with rc=0 >>>>>>>>>>>>>>>> Exim version x.yz .... configuration file is TESTSUITE/test-config @@ -70,7 +70,7 @@ created log directory TESTSUITE/spool/log LOG: MAIN REJECT H=(test) [V4NET.0.0.1] U=root F= temporarily rejected RCPT : Could not complete sender verify callout LOG: smtp_connection MAIN - SMTP connection from root closed by QUIT + SMTP connection from root D=qqs closed by QUIT >>>>>>>>>>>>>>>> Exim pid=p1236 (fresh-exec) terminating with rc=0 >>>>>>>>>>>>>>>> Exim version x.yz .... configuration file is TESTSUITE/test-config @@ -108,7 +108,7 @@ LOG: MAIN REJECT LOG: MAIN REJECT H=(test) [V4NET.0.0.1] U=root F= rejected RCPT : (recipient): Sender verify failed LOG: smtp_connection MAIN - SMTP connection from root closed by QUIT + SMTP connection from root D=qqs closed by QUIT >>>>>>>>>>>>>>>> Exim pid=p1237 (fresh-exec) terminating with rc=0 >>>>>>>>>>>>>>>> Exim version x.yz .... configuration file is TESTSUITE/test-config @@ -129,7 +129,7 @@ LOG: MAIN REJECT LOG: MAIN REJECT H=(test) [V4NET.0.0.1] U=root F= rejected RCPT : (recipient): Sender verify failed LOG: smtp_connection MAIN - SMTP connection from root closed by QUIT + SMTP connection from root D=qqs closed by QUIT >>>>>>>>>>>>>>>> Exim pid=p1238 (fresh-exec) terminating with rc=0 >>>>>>>>>>>>>>>> Exim version x.yz .... configuration file is TESTSUITE/test-config @@ -166,7 +166,7 @@ LOG: MAIN REJECT LOG: MAIN REJECT H=(test) [V4NET.0.0.1] U=root F= rejected RCPT : (mail): Sender verify failed LOG: smtp_connection MAIN - SMTP connection from root closed by QUIT + SMTP connection from root D=qqs closed by QUIT >>>>>>>>>>>>>>>> Exim pid=p1239 (fresh-exec) terminating with rc=0 >>>>>>>>>>>>>>>> Exim version x.yz .... configuration file is TESTSUITE/test-config @@ -186,7 +186,7 @@ LOG: MAIN REJECT LOG: MAIN REJECT H=(test) [V4NET.0.0.1] U=root F= rejected RCPT : (mail): Sender verify failed LOG: smtp_connection MAIN - SMTP connection from root closed by QUIT + SMTP connection from root D=qqs closed by QUIT >>>>>>>>>>>>>>>> Exim pid=p1240 (fresh-exec) terminating with rc=0 >>>>>>>>>>>>>>>> Exim version x.yz .... configuration file is TESTSUITE/test-config @@ -231,7 +231,7 @@ LOG: MAIN REJECT LOG: MAIN REJECT H=(test) [V4NET.0.0.2] U=root F= rejected RCPT : Sender verify failed LOG: smtp_connection MAIN - SMTP connection from root closed by QUIT + SMTP connection from root D=qqs closed by QUIT >>>>>>>>>>>>>>>> Exim pid=p1241 (fresh-exec) terminating with rc=0 >>>>>>>>>>>>>>>> Exim version x.yz .... configuration file is TESTSUITE/test-config @@ -251,7 +251,7 @@ LOG: MAIN REJECT LOG: MAIN REJECT H=(test) [V4NET.0.0.2] U=root F= rejected RCPT : Sender verify failed LOG: smtp_connection MAIN - SMTP connection from root closed by QUIT + SMTP connection from root D=qqs closed by QUIT >>>>>>>>>>>>>>>> Exim pid=p1242 (fresh-exec) terminating with rc=0 >>>>>>>>>>>>>>>> Exim version x.yz .... configuration file is TESTSUITE/test-config @@ -292,7 +292,7 @@ wrote callout cache domain record for otherhost2: result=1 postmaster=1 random=0 wrote positive callout cache address record for ok@otherhost2 LOG: smtp_connection MAIN - SMTP connection from root closed by QUIT + SMTP connection from root D=qqs closed by QUIT >>>>>>>>>>>>>>>> Exim pid=p1243 (fresh-exec) terminating with rc=0 >>>>>>>>>>>>>>>> Exim version x.yz .... configuration file is TESTSUITE/test-config @@ -310,7 +310,7 @@ callout cache: domain accepts RCPT TO: callout cache: found address record for ok@otherhost2 callout cache: address record is positive LOG: smtp_connection MAIN - SMTP connection from root closed by QUIT + SMTP connection from root D=qqs closed by QUIT >>>>>>>>>>>>>>>> Exim pid=p1244 (fresh-exec) terminating with rc=0 >>>>>>>>>>>>>>>> Exim version x.yz .... configuration file is TESTSUITE/test-config @@ -345,7 +345,7 @@ wrote callout cache domain record for otherhost3: LOG: MAIN (random) LOG: smtp_connection MAIN - SMTP connection from root closed by QUIT + SMTP connection from root D=qqs closed by QUIT >>>>>>>>>>>>>>>> Exim pid=p1245 (fresh-exec) terminating with rc=0 >>>>>>>>>>>>>>>> Exim version x.yz .... configuration file is TESTSUITE/test-config @@ -363,7 +363,7 @@ callout cache: domain accepts random addresses LOG: MAIN (random) LOG: smtp_connection MAIN - SMTP connection from root closed by QUIT + SMTP connection from root D=qqs closed by QUIT >>>>>>>>>>>>>>>> Exim pid=p1246 (fresh-exec) terminating with rc=0 >>>>>>>>>>>>>>>> Exim version x.yz .... configuration file is TESTSUITE/test-config @@ -398,7 +398,7 @@ wrote callout cache domain record for otherhost4: LOG: MAIN (random) LOG: smtp_connection MAIN - SMTP connection from root closed by QUIT + SMTP connection from root D=qqs closed by QUIT >>>>>>>>>>>>>>>> Exim pid=p1247 (fresh-exec) terminating with rc=0 >>>>>>>>>>>>>>>> Exim version x.yz .... configuration file is TESTSUITE/test-config @@ -416,7 +416,7 @@ callout cache: domain accepts random addresses LOG: MAIN (random) LOG: smtp_connection MAIN - SMTP connection from root closed by QUIT + SMTP connection from root D=qqs closed by QUIT >>>>>>>>>>>>>>>> Exim pid=p1248 (fresh-exec) terminating with rc=0 >>>>>>>>>>>>>>>> Exim version x.yz .... configuration file is TESTSUITE/test-config @@ -463,7 +463,7 @@ wrote callout cache domain record for otherhost41: result=1 postmaster=1 random=2 wrote positive callout cache address record for ok@otherhost41 LOG: smtp_connection MAIN - SMTP connection from root closed by QUIT + SMTP connection from root D=qqs closed by QUIT >>>>>>>>>>>>>>>> Exim pid=p1249 (fresh-exec) terminating with rc=0 >>>>>>>>>>>>>>>> Exim version x.yz .... configuration file is TESTSUITE/test-config @@ -482,7 +482,7 @@ callout cache: domain accepts RCPT TO: callout cache: found address record for ok@otherhost41 callout cache: address record is positive LOG: smtp_connection MAIN - SMTP connection from root closed by QUIT + SMTP connection from root D=qqs closed by QUIT >>>>>>>>>>>>>>>> Exim pid=p1250 (fresh-exec) terminating with rc=0 >>>>>>>>>>>>>>>> Exim version x.yz .... configuration file is TESTSUITE/test-config @@ -523,7 +523,7 @@ wrote callout cache domain record for otherhost21: result=1 postmaster=1 random=0 wrote positive callout cache address record for ok@otherhost21 LOG: smtp_connection MAIN - SMTP connection from root closed by QUIT + SMTP connection from root D=qqs closed by QUIT >>>>>>>>>>>>>>>> Exim pid=p1251 (fresh-exec) terminating with rc=0 >>>>>>>>>>>>>>>> Exim version x.yz .... configuration file is TESTSUITE/test-config @@ -558,7 +558,7 @@ wrote callout cache domain record for otherhost21: result=1 postmaster=1 random=0 wrote positive callout cache address record for ok2@otherhost21 LOG: smtp_connection MAIN - SMTP connection from root closed by QUIT + SMTP connection from root D=qqs closed by QUIT >>>>>>>>>>>>>>>> Exim pid=p1252 (fresh-exec) terminating with rc=0 >>>>>>>>>>>>>>>> Exim version x.yz .... configuration file is TESTSUITE/test-config @@ -598,7 +598,7 @@ wrote callout cache domain record for otherhost31: result=1 postmaster=0 random=2 wrote positive callout cache address record for ok@otherhost31 LOG: smtp_connection MAIN - SMTP connection from root closed by QUIT + SMTP connection from root D=qqs closed by QUIT >>>>>>>>>>>>>>>> Exim pid=p1253 (fresh-exec) terminating with rc=0 >>>>>>>>>>>>>>>> Exim version x.yz .... configuration file is TESTSUITE/test-config @@ -633,7 +633,7 @@ wrote callout cache domain record for otherhost31: result=1 postmaster=0 random=2 wrote positive callout cache address record for okok@otherhost31 LOG: smtp_connection MAIN - SMTP connection from root closed by QUIT + SMTP connection from root D=qqs closed by QUIT >>>>>>>>>>>>>>>> Exim pid=p1254 (fresh-exec) terminating with rc=0 >>>>>>>>>>>>>>>> Exim version x.yz .... configuration file is TESTSUITE/test-config @@ -673,7 +673,7 @@ wrote callout cache domain record for otherhost31: result=1 postmaster=0 random=2 wrote positive callout cache address record for okokok@otherhost31 LOG: smtp_connection MAIN - SMTP connection from root closed by QUIT + SMTP connection from root D=qqs closed by QUIT >>>>>>>>>>>>>>>> Exim pid=p1255 (fresh-exec) terminating with rc=0 >>>>>>>>>>>>>>>> Exim version x.yz .... configuration file is TESTSUITE/test-config @@ -709,7 +709,7 @@ LOG: MAIN REJECT LOG: MAIN REJECT H=(test) [V4NET.0.0.5] U=root F= temporarily rejected RCPT : Could not complete sender verify callout LOG: smtp_connection MAIN - SMTP connection from root closed by QUIT + SMTP connection from root D=qqs closed by QUIT >>>>>>>>>>>>>>>> Exim pid=p1256 (fresh-exec) terminating with rc=0 >>>>>>>>>>>>>>>> Exim version x.yz .... configuration file is TESTSUITE/test-config @@ -750,7 +750,7 @@ wrote callout cache domain record for otherhost52: result=1 postmaster=1 random=0 wrote positive callout cache address record for okokok@otherhost52 LOG: smtp_connection MAIN - SMTP connection from root closed by QUIT + SMTP connection from root D=qqs closed by QUIT >>>>>>>>>>>>>>>> Exim pid=p1257 (fresh-exec) terminating with rc=0 >>>>>>>>>>>>>>>> Exim version x.yz .... configuration file is TESTSUITE/test-config @@ -787,7 +787,7 @@ wrote positive callout cache address record for abcd@x.y.z/ LOG: MAIN <= ok7@otherhost53 H=(test) [V4NET.0.0.7] U=root P=smtp S=sss LOG: smtp_connection MAIN - SMTP connection from root closed by QUIT + SMTP connection from root D=qqs closed by QUIT >>>>>>>>>>>>>>>> Exim pid=p1258 (fresh-exec) terminating with rc=0 >>>>>>>>>>>>>>>> Exim version x.yz .... configuration file is TESTSUITE/test-config @@ -822,7 +822,7 @@ wrote callout cache domain record for x.y.z: LOG: MAIN <= ok7@otherhost53 H=(test) [V4NET.0.0.8] U=root P=smtp S=sss LOG: smtp_connection MAIN - SMTP connection from root closed by QUIT + SMTP connection from root D=qqs closed by QUIT >>>>>>>>>>>>>>>> Exim pid=p1259 (fresh-exec) terminating with rc=0 >>>>>>>>>>>>>>>> Exim version x.yz .... configuration file is TESTSUITE/test-config @@ -865,7 +865,7 @@ wrote callout cache domain record for otherhost9: result=1 postmaster=1 random=0 wrote positive callout cache address record for ok@otherhost9 LOG: smtp_connection MAIN - SMTP connection from root closed by QUIT + SMTP connection from root D=qqs closed by QUIT >>>>>>>>>>>>>>>> Exim pid=p1260 (fresh-exec) terminating with rc=0 >>>>>>>>>>>>>>>> Exim version x.yz .... configuration file is TESTSUITE/test-config @@ -912,5 +912,5 @@ wrote callout cache domain record for test.ex: result=1 postmaster=1 random=2 wrote positive callout cache address record for z@test.ex/ LOG: smtp_connection MAIN - SMTP connection from root closed by QUIT + SMTP connection from root D=qqs closed by QUIT >>>>>>>>>>>>>>>> Exim pid=p1261 (fresh-exec) terminating with rc=0 >>>>>>>>>>>>>>>> diff --git a/test/stderr/0609 b/test/stderr/0609 index 676809138..8e99a3f7e 100644 --- a/test/stderr/0609 +++ b/test/stderr/0609 @@ -28,7 +28,7 @@ Listening... p1235 accept: condition test succeeded in ACL "delay4_accept" p1235 end of ACL "delay4_accept": ACCEPT p1235 LOG: smtp_connection MAIN -p1235 SMTP connection from (test) [127.0.0.1] closed by QUIT +p1235 SMTP connection from (test) [127.0.0.1] D=qqs closed by QUIT p1235 >>>>>>>>>>>>>>>> Exim pid=p1235 (daemon-accept) terminating with rc=0 >>>>>>>>>>>>>>>> child p1235 ended: status=0x0 normal exit, 0 diff --git a/test/stderr/0620 b/test/stderr/0620 index 8b11e90f3..577a8771d 100644 --- a/test/stderr/0620 +++ b/test/stderr/0620 @@ -51,7 +51,7 @@ LOG: MAIN LOG: MAIN $0 'trythiskey.ex' $1 '' LOG: smtp_connection MAIN - SMTP connection from CALLER closed by QUIT + SMTP connection from CALLER D=qqs closed by QUIT >>>>>>>>>>>>>>>> Exim pid=p1234 (fresh-exec) terminating with rc=0 >>>>>>>>>>>>>>>> Exim version x.yz .... environment after trimming: @@ -105,5 +105,5 @@ LOG: MAIN LOG: MAIN $0 'trythiskey.ex' $1 '' LOG: smtp_connection MAIN - SMTP connection from CALLER closed by QUIT + SMTP connection from CALLER D=qqs closed by QUIT >>>>>>>>>>>>>>>> Exim pid=p1235 (fresh-exec) terminating with rc=0 >>>>>>>>>>>>>>>> diff --git a/test/stderr/0628 b/test/stderr/0628 index 757d24dd7..215206a82 100644 --- a/test/stderr/0628 +++ b/test/stderr/0628 @@ -22,7 +22,7 @@ 01:01:01 p1237 SMTP<< QUIT 01:01:01 p1237 SMTP>> 221 myhost.test.ex closing connection 01:01:01 p1237 LOG: smtp_connection MAIN -01:01:01 p1237 SMTP connection from (test.ex) [127.0.0.1] closed by QUIT +01:01:01 p1237 SMTP connection from (test.ex) [127.0.0.1] D=qqs closed by QUIT 01:01:01 p1239 Exim version x.yz uid=EXIM_UID gid=EXIM_GID pid=p1239 D=fff9ffff 01:01:01 p1239 macros_trusted overridden to true by whitelisting 01:01:01 p1239 changed uid/gid: forcing real = effective @@ -136,7 +136,7 @@ 01:01:01 p1240 SMTP<< QUIT 01:01:01 p1240 SMTP>> 221 myhost.test.ex closing connection 01:01:01 p1240 LOG: smtp_connection MAIN -01:01:01 p1240 SMTP connection from (test.ex) [127.0.0.1] closed by QUIT +01:01:01 p1240 SMTP connection from (test.ex) [127.0.0.1] D=qqs closed by QUIT 01:01:01 p1240 search_tidyup called 01:01:01 p1240 SMTP>>(close on process exit) 01:01:01 p1240 >>>>>>>>>>>>>>>> Exim pid=p1240 (daemon-accept) terminating with rc=0 >>>>>>>>>>>>>>>> diff --git a/test/stderr/0629 b/test/stderr/0629 index 16390eec3..96fdb14f3 100644 --- a/test/stderr/0629 +++ b/test/stderr/0629 @@ -13,7 +13,7 @@ LOG: PANIC SMTP<< QUIT SMTP>> 221 myhost.test.ex closing connection LOG: smtp_connection MAIN - SMTP connection from (test.ex) [127.0.0.1] closed by QUIT + SMTP connection from (test.ex) [127.0.0.1] D=qqs closed by QUIT search_tidyup called SMTP>>(close on process exit) >>>>>>>>>>>>>>>> Exim pid=p1235 (daemon-accept) terminating with rc=0 >>>>>>>>>>>>>>>> diff --git a/test/stderr/0632 b/test/stderr/0632 index 49eb5fa89..a65d074f4 100644 --- a/test/stderr/0632 +++ b/test/stderr/0632 @@ -459,7 +459,7 @@ LOG: MAIN search_tidyup called Process p1235 is ready for new message LOG: smtp_connection MAIN - SMTP connection from (test.ex) [127.0.0.1] closed by QUIT + SMTP connection from (test.ex) [127.0.0.1] D=qqs closed by QUIT p1234 1 SMTP accept process running p1234 Listening... p1234 daemon_notification (from unknown addr) @@ -896,7 +896,7 @@ LOG: MAIN search_tidyup called Process p1236 is ready for new message LOG: smtp_connection MAIN - SMTP connection from (test.ex) [127.0.0.1] closed by QUIT + SMTP connection from (test.ex) [127.0.0.1] D=qqs closed by QUIT p1234 1 SMTP accept process running p1234 Listening... search_tidyup called diff --git a/test/stderr/0911 b/test/stderr/0911 index b6ff35cca..55dff42df 100644 --- a/test/stderr/0911 +++ b/test/stderr/0911 @@ -63,7 +63,7 @@ LOG: MAIN Completed >>>>>>>>>>>>>>>> Exim pid=p1235 (local-accept-delivery) terminating with rc=0 >>>>>>>>>>>>>>>> LOG: smtp_connection MAIN - SMTP connection from root closed by QUIT + SMTP connection from root D=q.qqqs closed by QUIT >>>>>>>>>>>>>>>> Exim pid=p1234 (fresh-exec) terminating with rc=0 >>>>>>>>>>>>>>>> Exim version x.yz .... configuration file is TESTSUITE/test-config @@ -128,7 +128,7 @@ LOG: MAIN Completed >>>>>>>>>>>>>>>> Exim pid=p1237 (local-accept-delivery) terminating with rc=0 >>>>>>>>>>>>>>>> LOG: smtp_connection MAIN - SMTP connection from root closed by QUIT + SMTP connection from root D=q.qqqs closed by QUIT >>>>>>>>>>>>>>>> Exim pid=p1236 (fresh-exec) terminating with rc=0 >>>>>>>>>>>>>>>> Exim version x.yz .... configuration file is TESTSUITE/test-config @@ -196,7 +196,7 @@ LOG: MAIN == tempreject@test.ex R=client T=send_to_server defer (-46) H=127.0.0.1 [127.0.0.1]: SMTP error from remote mail server after pipelined end of data: 451 Service not available >>>>>>>>>>>>>>>> Exim pid=p1239 (local-accept-delivery) terminating with rc=0 >>>>>>>>>>>>>>>> LOG: smtp_connection MAIN - SMTP connection from root closed by QUIT + SMTP connection from root D=q.qqqs closed by QUIT >>>>>>>>>>>>>>>> Exim pid=p1238 (fresh-exec) terminating with rc=0 >>>>>>>>>>>>>>>> Exim version x.yz .... configuration file is TESTSUITE/test-config @@ -266,7 +266,7 @@ LOG: MAIN Completed >>>>>>>>>>>>>>>> Exim pid=p1241 (local-accept-delivery) terminating with rc=0 >>>>>>>>>>>>>>>> LOG: smtp_connection MAIN - SMTP connection from root closed by QUIT + SMTP connection from root D=q.qqqs closed by QUIT >>>>>>>>>>>>>>>> Exim pid=p1240 (fresh-exec) terminating with rc=0 >>>>>>>>>>>>>>>> Exim version x.yz .... configuration file is TESTSUITE/test-config @@ -336,5 +336,5 @@ LOG: MAIN == dataloss@test.ex R=client T=send_to_server defer (-18) H=127.0.0.1 [127.0.0.1]: Remote host closed connection in response to pipelined end of data >>>>>>>>>>>>>>>> Exim pid=p1243 (local-accept-delivery) terminating with rc=0 >>>>>>>>>>>>>>>> LOG: smtp_connection MAIN - SMTP connection from root closed by QUIT + SMTP connection from root D=q.qqqs closed by QUIT >>>>>>>>>>>>>>>> Exim pid=p1242 (fresh-exec) terminating with rc=0 >>>>>>>>>>>>>>>> diff --git a/test/stderr/2035 b/test/stderr/2035 index a0e5f374c..d2621e37f 100644 --- a/test/stderr/2035 +++ b/test/stderr/2035 @@ -35,7 +35,7 @@ sync_responses expect rcpt for userb@test.ex LOG: MAIN <= CALLER@myhost.test.ex U=CALLER P=local-smtp S=sss LOG: smtp_connection MAIN - SMTP connection from CALLER closed by QUIT + SMTP connection from CALLER D=qqs closed by QUIT >>>>>>>>>>>>>>>> Exim pid=p1236 (fresh-exec) terminating with rc=0 >>>>>>>>>>>>>>>> Exim version x.yz .... configuration file is TESTSUITE/test-config diff --git a/test/stderr/2135 b/test/stderr/2135 index a0e5f374c..d2621e37f 100644 --- a/test/stderr/2135 +++ b/test/stderr/2135 @@ -35,7 +35,7 @@ sync_responses expect rcpt for userb@test.ex LOG: MAIN <= CALLER@myhost.test.ex U=CALLER P=local-smtp S=sss LOG: smtp_connection MAIN - SMTP connection from CALLER closed by QUIT + SMTP connection from CALLER D=qqs closed by QUIT >>>>>>>>>>>>>>>> Exim pid=p1236 (fresh-exec) terminating with rc=0 >>>>>>>>>>>>>>>> Exim version x.yz .... configuration file is TESTSUITE/test-config diff --git a/test/stderr/2201 b/test/stderr/2201 index 6566cad54..927c7c6de 100644 --- a/test/stderr/2201 +++ b/test/stderr/2201 @@ -249,7 +249,7 @@ LOG: MAIN <= a@shorthost.test.ex H=localhost (myhost.test.ex) [127.0.0.1] P=esmtp S=sss id=E10HmaX-0005vi-00@myhost.test.ex Process p1238 is ready for new message LOG: smtp_connection MAIN - SMTP connection from localhost (myhost.test.ex) [127.0.0.1] closed by QUIT + SMTP connection from localhost (myhost.test.ex) [127.0.0.1] D=qqs closed by QUIT >>>>>>>>>>>>>>>> Exim pid=p1238 (daemon-accept) terminating with rc=0 >>>>>>>>>>>>>>>> p1235 child p1238 ended: status=0x0 p1235 normal exit, 0 diff --git a/test/stderr/2202 b/test/stderr/2202 index 8c2da8190..9cd2772a2 100644 --- a/test/stderr/2202 +++ b/test/stderr/2202 @@ -101,7 +101,7 @@ LOG: MAIN REJECT SMTP<< quit SMTP>> 221 myhost.test.ex closing connection LOG: smtp_connection MAIN - SMTP connection from the.local.host.name (test) [ip4.ip4.ip4.ip4] closed by QUIT + SMTP connection from the.local.host.name (test) [ip4.ip4.ip4.ip4] D=qqs closed by QUIT search_tidyup called >>>>>>>>>>>>>>>> Exim pid=p1234 (fresh-exec) terminating with rc=0 >>>>>>>>>>>>>>>> Exim version x.yz .... diff --git a/test/stderr/2600 b/test/stderr/2600 index da02c5815..7d8e76824 100644 --- a/test/stderr/2600 +++ b/test/stderr/2600 @@ -260,7 +260,7 @@ LOG: MAIN REJECT SMTP<< quit SMTP>> 221 myhost.test.ex closing connection LOG: smtp_connection MAIN - SMTP connection from (test) [10.0.0.0] closed by QUIT + SMTP connection from (test) [10.0.0.0] D=qqs closed by QUIT search_tidyup called >>>>>>>>>>>>>>>> Exim pid=p1235 (fresh-exec) terminating with rc=0 >>>>>>>>>>>>>>>> Exim version x.yz .... @@ -388,7 +388,7 @@ LOG: MAIN REJECT SMTP<< quit SMTP>> 221 myhost.test.ex closing connection LOG: smtp_connection MAIN - SMTP connection from (test) [10.0.0.0] closed by QUIT + SMTP connection from (test) [10.0.0.0] D=qqs closed by QUIT search_tidyup called >>>>>>>>>>>>>>>> Exim pid=p1236 (fresh-exec) terminating with rc=0 >>>>>>>>>>>>>>>> Exim version x.yz .... @@ -505,7 +505,7 @@ SMTP>> 250 Accepted SMTP<< quit SMTP>> 221 myhost.test.ex closing connection LOG: smtp_connection MAIN - SMTP connection from (test) [10.10.10.10] closed by QUIT + SMTP connection from (test) [10.10.10.10] D=qqs closed by QUIT search_tidyup called >>>>>>>>>>>>>>>> Exim pid=p1237 (fresh-exec) terminating with rc=0 >>>>>>>>>>>>>>>> Exim version x.yz .... diff --git a/test/stderr/2610 b/test/stderr/2610 index 7dd4b2953..435da7644 100644 --- a/test/stderr/2610 +++ b/test/stderr/2610 @@ -458,7 +458,7 @@ LOG: MAIN REJECT SMTP<< quit SMTP>> 221 myhost.test.ex closing connection LOG: smtp_connection MAIN - SMTP connection from (test) [10.0.0.0] closed by QUIT + SMTP connection from (test) [10.0.0.0] D=qqs closed by QUIT search_tidyup called close MYSQL connection: 127.0.0.1:PORT_N/test/root >>>>>>>>>>>>>>>> Exim pid=p1235 (fresh-exec) terminating with rc=0 >>>>>>>>>>>>>>>> diff --git a/test/stderr/2620 b/test/stderr/2620 index 2674d9e1d..2e0e38247 100644 --- a/test/stderr/2620 +++ b/test/stderr/2620 @@ -624,7 +624,7 @@ LOG: MAIN REJECT SMTP<< quit SMTP>> 221 myhost.test.ex closing connection LOG: smtp_connection MAIN - SMTP connection from (test) [10.0.0.0] closed by QUIT + SMTP connection from (test) [10.0.0.0] D=qqs closed by QUIT search_tidyup called close PGSQL connection: localhost:PORT_N/test/CALLER >>>>>>>>>>>>>>>> Exim pid=p1236 (fresh-exec) terminating with rc=0 >>>>>>>>>>>>>>>> diff --git a/test/stderr/3000 b/test/stderr/3000 index 45103c44a..137ca11ef 100644 --- a/test/stderr/3000 +++ b/test/stderr/3000 @@ -67,7 +67,7 @@ LOG: smtp_connection MAIN LOG: MAIN this is a warning at TESTSUITE/aux-fixed/3000.pl line 25. LOG: smtp_connection MAIN - SMTP connection from CALLER closed by QUIT + SMTP connection from CALLER D=qqs closed by QUIT >>> host in hosts_connection_nolog? no (option unset) >>> host in host_lookup? no (option unset) >>> host in host_reject_connection? no (option unset) diff --git a/test/stderr/3400 b/test/stderr/3400 index b19b82bee..9d7bfaabd 100644 --- a/test/stderr/3400 +++ b/test/stderr/3400 @@ -690,6 +690,6 @@ SMTP>> 235 Authentication succeeded SMTP<< quit SMTP>> 221 myhost.test.ex closing connection LOG: smtp_connection MAIN - SMTP connection from CALLER closed by QUIT + SMTP connection from CALLER D=qqs closed by QUIT search_tidyup called >>>>>>>>>>>>>>>> Exim pid=p1234 (fresh-exec) terminating with rc=0 >>>>>>>>>>>>>>>> diff --git a/test/stderr/5204 b/test/stderr/5204 index 0a45e2047..63238c27c 100644 --- a/test/stderr/5204 +++ b/test/stderr/5204 @@ -283,5 +283,5 @@ end of inline ACL: implicit DENY LOG: MAIN REJECT H=(some.name) [V4NET.2.3.4] F= rejected RCPT <"FAIL cannot route this one (FAIL)"@some.host>: cannot route this one (FAIL) LOG: smtp_connection MAIN - SMTP connection from (some.name) [V4NET.2.3.4] closed by QUIT + SMTP connection from (some.name) [V4NET.2.3.4] D=qqs closed by QUIT >>>>>>>>>>>>>>>> Exim pid=p1242 (fresh-exec) terminating with rc=0 >>>>>>>>>>>>>>>> diff --git a/test/stderr/5410 b/test/stderr/5410 index 8e65e3feb..42c280a2e 100644 --- a/test/stderr/5410 +++ b/test/stderr/5410 @@ -588,7 +588,7 @@ LOG: MAIN LOG: MAIN Completed LOG: smtp_connection MAIN - SMTP connection from CALLER closed by QUIT + SMTP connection from CALLER D=qqs closed by QUIT >>>>>>>>>>>>>>>> Exim pid=p1235 (fresh-exec) terminating with rc=0 >>>>>>>>>>>>>>>> Exim version x.yz .... environment after trimming: @@ -1133,7 +1133,7 @@ LOG: MAIN LOG: MAIN Completed LOG: smtp_connection MAIN - SMTP connection from CALLER closed by QUIT + SMTP connection from CALLER D=qqs closed by QUIT >>>>>>>>>>>>>>>> Exim pid=p1236 (fresh-exec) terminating with rc=0 >>>>>>>>>>>>>>>> Exim version x.yz .... environment after trimming: @@ -1678,7 +1678,7 @@ LOG: MAIN LOG: MAIN Completed LOG: smtp_connection MAIN - SMTP connection from CALLER closed by QUIT + SMTP connection from CALLER D=qqs closed by QUIT >>>>>>>>>>>>>>>> Exim pid=p1237 (fresh-exec) terminating with rc=0 >>>>>>>>>>>>>>>> ******** SERVER ******** diff --git a/test/stderr/5420 b/test/stderr/5420 index 5caa8fcc0..3b7c2ca78 100644 --- a/test/stderr/5420 +++ b/test/stderr/5420 @@ -592,7 +592,7 @@ LOG: MAIN LOG: MAIN Completed LOG: smtp_connection MAIN - SMTP connection from CALLER closed by QUIT + SMTP connection from CALLER D=qqs closed by QUIT >>>>>>>>>>>>>>>> Exim pid=p1235 (fresh-exec) terminating with rc=0 >>>>>>>>>>>>>>>> Exim version x.yz .... environment after trimming: @@ -1141,7 +1141,7 @@ LOG: MAIN LOG: MAIN Completed LOG: smtp_connection MAIN - SMTP connection from CALLER closed by QUIT + SMTP connection from CALLER D=qqs closed by QUIT >>>>>>>>>>>>>>>> Exim pid=p1236 (fresh-exec) terminating with rc=0 >>>>>>>>>>>>>>>> Exim version x.yz .... environment after trimming: @@ -1690,7 +1690,7 @@ LOG: MAIN LOG: MAIN Completed LOG: smtp_connection MAIN - SMTP connection from CALLER closed by QUIT + SMTP connection from CALLER D=qqs closed by QUIT >>>>>>>>>>>>>>>> Exim pid=p1237 (fresh-exec) terminating with rc=0 >>>>>>>>>>>>>>>> ******** SERVER ******** -- 2.30.2