diff options
author | Jeremy Harris <jgh146exb@wizmail.org> | 2015-09-19 13:59:22 +0100 |
---|---|---|
committer | Jeremy Harris <jgh146exb@wizmail.org> | 2015-09-19 16:31:37 +0100 |
commit | 6f6dedccb47f231a0712d882da20feffbac8d0bc (patch) | |
tree | 32c098794a1df4cacf008677a1491f0b2389aca7 /test/confs | |
parent | 14b3c5bc64a16df07583fe4b5ef2e0129d063893 (diff) |
Retry: always use interface, if set, for retry DB key. Bug 1678
Even constant values must be used, as multiple transports with
different values may be in play and should be kept distinct.
Diffstat (limited to 'test/confs')
-rw-r--r-- | test/confs/0610 | 65 |
1 files changed, 65 insertions, 0 deletions
diff --git a/test/confs/0610 b/test/confs/0610 new file mode 100644 index 000000000..f805c086c --- /dev/null +++ b/test/confs/0610 @@ -0,0 +1,65 @@ +# Exim test configuration 0610 + +SERVER = + +exim_path = EXIM_PATH +host_lookup_order = bydns +#primary_hostname = myhost.test.ex +rfc1413_query_timeout = 0s +spool_directory = DIR/spool +log_file_path = DIR/spool/log/SERVER%slog +log_selector = +sender_on_delivery +gecos_pattern = "" +gecos_name = CALLER_NAME + +# ----- Main settings ----- + +acl_smtp_connect = conn_chk +acl_smtp_rcpt = accept + +untrusted_set_sender = * +queue_only +queue_run_in_order + +# ----- ACL ----- + +begin acl + +conn_chk: + defer condition = ${if eq {SERVER}{server}} + accept + +# ----- Routers ----- + +begin routers + +client: + driver = accept + transport = $sender_address_local_part + +# ----- Transports ----- + +begin transports + +t1: + driver = smtp + allow_localhost + hosts = 127.0.0.1 + port = PORT_D + interface = 127.0.0.1 + +t2: + driver = smtp + allow_localhost + hosts = 127.0.0.1 + port = PORT_D + interface = 127.0.0.2 + +# ----- Retry ----- + +begin retry + +* * F,5d,10s + +# End + |