GnuTLS: Do not free the cached creds on transport connection close. Bug 2886
[exim.git] / test / confs / 2011
1 # Exim test configuration 2011
2
3 SERVER=
4
5 keep_environment = PATH:EXIM_TESTHARNESS_DISABLE_OCSPVALIDITYCHECK
6 add_environment = SSLKEYLOGFILE=DIR/spool/sslkeys
7 exim_path = EXIM_PATH
8 host_lookup_order = bydns
9 spool_directory = DIR/spool
10
11 .ifdef SERVER
12 log_file_path = DIR/spool/log/SERVER%slog
13 .else
14 log_file_path = DIR/spool/log/%slog
15 .endif
16
17 gecos_pattern = ""
18 gecos_name = CALLER_NAME
19 dns_cname_loops = 9
20 chunking_advertise_hosts = *
21
22 .ifdef _HAVE_PIPE_CONNECT
23 pipelining_connect_advertise_hosts = :
24 .endif
25 .ifdef _HAVE_DMARC
26 dmarc_tld_file =
27 .endif
28 .ifdef _EXP_LIMITS
29 limits_advertise_hosts = !*
30 .endif
31
32 primary_hostname = test.ex
33
34 # ----- Main settings -----
35
36 acl_smtp_rcpt = check_rcpt
37
38 log_selector = +received_recipients +dkim_verbose
39 queue_only
40 queue_run_in_order
41
42 # ----- ACL -----
43 begin acl
44
45 check_rcpt:
46   defer hosts = HOSTIPV4
47   accept
48
49 # ----- Routers -----
50
51 begin routers
52
53 d0:
54   driver =      manualroute
55   route_list =  *       "HOSTIPV4::PORT_D : 127.0.0.1::PORT_D"
56   self =        send
57   transport =   gsmtp
58
59 # ----- Transports -----
60
61 begin transports
62
63 gsmtp:
64   driver =                      smtp
65   allow_localhost
66   tls_verify_certificates =     system
67   hosts_require_tls =           *
68
69 begin retry
70 * * F,5d,10s
71
72 # End