diff options
author | Jeremy Harris <jgh146exb@wizmail.org> | 2022-05-19 14:23:02 +0100 |
---|---|---|
committer | Jeremy Harris <jgh146exb@wizmail.org> | 2022-05-19 14:23:02 +0100 |
commit | 8c74b00980bc7e3e479e8dfcd7c0008b2ac3f543 (patch) | |
tree | 800bc3d1b95960827d855be118f3b24253042053 /test/confs/2011 | |
parent | c9771b0f607127d89018dd79bab6febb14db3d6d (diff) |
GnuTLS: Do not free the cached creds on transport connection close. Bug 2886
Diffstat (limited to 'test/confs/2011')
-rw-r--r-- | test/confs/2011 | 72 |
1 files changed, 72 insertions, 0 deletions
diff --git a/test/confs/2011 b/test/confs/2011 new file mode 100644 index 000000000..eac8ccd4a --- /dev/null +++ b/test/confs/2011 @@ -0,0 +1,72 @@ +# Exim test configuration 2011 + +SERVER= + +keep_environment = PATH:EXIM_TESTHARNESS_DISABLE_OCSPVALIDITYCHECK +add_environment = SSLKEYLOGFILE=DIR/spool/sslkeys +exim_path = EXIM_PATH +host_lookup_order = bydns +spool_directory = DIR/spool + +.ifdef SERVER +log_file_path = DIR/spool/log/SERVER%slog +.else +log_file_path = DIR/spool/log/%slog +.endif + +gecos_pattern = "" +gecos_name = CALLER_NAME +dns_cname_loops = 9 +chunking_advertise_hosts = * + +.ifdef _HAVE_PIPE_CONNECT +pipelining_connect_advertise_hosts = : +.endif +.ifdef _HAVE_DMARC +dmarc_tld_file = +.endif +.ifdef _EXP_LIMITS +limits_advertise_hosts = !* +.endif + +primary_hostname = test.ex + +# ----- Main settings ----- + +acl_smtp_rcpt = check_rcpt + +log_selector = +received_recipients +dkim_verbose +queue_only +queue_run_in_order + +# ----- ACL ----- +begin acl + +check_rcpt: + defer hosts = HOSTIPV4 + accept + +# ----- Routers ----- + +begin routers + +d0: + driver = manualroute + route_list = * "HOSTIPV4::PORT_D : 127.0.0.1::PORT_D" + self = send + transport = gsmtp + +# ----- Transports ----- + +begin transports + +gsmtp: + driver = smtp + allow_localhost + tls_verify_certificates = system + hosts_require_tls = * + +begin retry +* * F,5d,10s + +# End |