diff options
author | Jeremy Harris <jgh146exb@wizmail.org> | 2017-04-30 22:11:27 +0100 |
---|---|---|
committer | Jeremy Harris <jgh146exb@wizmail.org> | 2017-04-30 22:57:21 +0100 |
commit | b7d3afcfad94edf99a8dbc50ab670ded417e6bea (patch) | |
tree | 4be6ecc504d39f91e35e6e0325a4902f61eae643 /test/confs/2038 | |
parent | adc03e34897563d1b7a6ff6252083b0003c34eef (diff) |
Fix continue_more on TLS connection. Bug 2104
Diffstat (limited to 'test/confs/2038')
-rw-r--r-- | test/confs/2038 | 63 |
1 files changed, 63 insertions, 0 deletions
diff --git a/test/confs/2038 b/test/confs/2038 new file mode 100644 index 000000000..140819433 --- /dev/null +++ b/test/confs/2038 @@ -0,0 +1,63 @@ +# Exim test configuration 2035 + +SERVER = + +.include DIR/aux-var/tls_conf_prefix + +primary_hostname = myhost.test.ex + +# ----- Main settings ----- + +acl_smtp_rcpt = accept + +log_selector = +tls_peerdn+smtp_connection+incoming_port+received_recipients + +queue_only +queue_run_in_order + +smtp_accept_max_nonmail = 0 + +tls_advertise_hosts = * + +# Set certificate only if server + +tls_certificate = ${if eq {SERVER}{server}{DIR/aux-fixed/cert1}fail} +tls_privatekey = ${if eq {SERVER}{server}{DIR/aux-fixed/cert1}fail} + + +# ----- Routers ----- + +begin routers + +client: + driver = manualroute + condition = ${if eq {SERVER}{server}{no}{yes}} + route_data = 127.0.0.1 + self = send + retry_use_local_part + transport = send_to_server + +server: + driver = accept + retry_use_local_part + transport = local_delivery + + +# ----- Transports ----- + +begin transports + +local_delivery: + driver = appendfile + file = DIR/test-mail/$local_part + headers_add = TLS: cipher=$tls_cipher peerdn=$tls_peerdn + user = CALLER + +send_to_server: + driver = smtp + allow_localhost + hosts_noproxy_tls = : + port = PORT_D + max_rcpt = 1 + +# End |