diff options
author | Jeremy Harris <jgh146exb@wizmail.org> | 2020-10-11 12:42:20 +0100 |
---|---|---|
committer | Jeremy Harris <jgh146exb@wizmail.org> | 2020-10-11 13:31:44 +0100 |
commit | 6bacc7090a4d219a48899c5b5b08b33f4811dc7f (patch) | |
tree | d52003a20c412ec92fe07468b318b8635fd6e55d /test/confs/0603 | |
parent | 2d432dfd22141f9933cac8ab3e26a8babaf87bef (diff) |
Testsuite: case-number shuffling
Diffstat (limited to 'test/confs/0603')
-rw-r--r-- | test/confs/0603 | 46 |
1 files changed, 15 insertions, 31 deletions
diff --git a/test/confs/0603 b/test/confs/0603 index eaf6a6b90..7e52e00c0 100644 --- a/test/confs/0603 +++ b/test/confs/0603 @@ -1,57 +1,41 @@ # Exim test configuration 0603 -# Add several messages going to the same location -# And change smtp output based on senders domain - -hostlist loopback = <; 127.0.0.0/8 ; 0.0.0.0 ; ::1 ; 0000:0000:0000:0000:0000:ffff -untrusted_set_sender = * - -SERVER = +# log_defer_output on pipe transport .include DIR/aux-var/std_conf_prefix -rfc1413_query_timeout = 0s -log_selector = +sender_on_delivery +primary_hostname = myhost.test.ex # ----- Main settings ----- -acl_smtp_rcpt = accept +log_selector = +received_recipients -queue_only -queue_run_in_order +#acl_smtp_rcpt = accept # ----- Routers ----- begin routers client: - driver = accept - condition = ${if eq {SERVER}{server}{no}{yes}} - transport = send_to_server - -server: - driver = accept - transport = send_to_server - + driver = accept + transport = pipe # ----- Transports ----- begin transports -send_to_server: - driver = smtp - connection_max_messages = 0 - allow_localhost - hosts = 127.0.0.1 - port = PORT_D - hosts_try_fastopen = : - # assumes that HOSTIPV4 can send to 127.0.0.1 - interface = ${if eq {$sender_address_domain}{dustybelt.tld} {127.0.0.1}{HOSTIPV4}} +pipe: + driver = pipe + temp_errors = * + command = perl -e "print 'Hi from pipe'; exit 5;" + log_defer_output = true + path = ${env{PATH}} # ----- Retry ----- + begin retry -* * F,5d,10s +* * F,1h,10m -# End +# End |