taint: allow appendfile create_file option to specify a de-tainting safe path
[exim.git] / test / confs / 1152
1 # Exim test configuration 1152
2
3 SERVER =
4
5 .include DIR/aux-var/tls_conf_prefix
6
7 primary_hostname = myhost.test.ex
8
9 # ----- Main settings -----
10
11 acl_smtp_rcpt = accept
12
13 log_selector = +smtp_confirmation
14
15 queue_only
16 queue_run_in_order
17
18 tls_advertise_hosts = *
19 .ifdef _HAVE_GNUTLS
20 tls_require_ciphers = NORMAL:!DHE-RSA:!DHE-DSS:!ECDHE-RSA:!ECDHE-ECDSA:!ECDHE-PSK
21 .endif
22
23 tls_certificate = DIR/aux-fixed/cert1
24
25
26 # ----- Routers -----
27
28 begin routers
29
30 client:
31   driver = accept
32   condition = ${if eq {SERVER}{server}{no}{yes}}
33   retry_use_local_part
34   transport = send_to_server${if eq{$local_part}{abcd}{2}{1}}
35
36 server:
37   driver = accept
38   retry_use_local_part
39   transport = local_delivery
40
41
42 # ----- Transports -----
43
44 begin transports
45
46 local_delivery:
47   driver = appendfile
48   file = DIR/test-mail/$local_part
49   create_file = DIR/test-mail
50   headers_add = TLS: cipher=$tls_cipher peerdn=$tls_peerdn
51   user = CALLER
52
53 send_to_server1:
54   driver = smtp
55   allow_localhost
56   hosts = 127.0.0.1
57   port = PORT_D
58   hosts_try_fastopen =  :
59   tls_verify_certificates = DIR/aux-fixed/cert1
60   tls_verify_cert_hostnames =
61
62 send_to_server2:
63   driver = smtp
64   allow_localhost
65   hosts = HOSTIPV4
66   port = PORT_D
67   hosts_try_fastopen =  :
68   tls_verify_certificates = DIR/aux-fixed/cert1
69   tls_verify_cert_hostnames =
70
71 # End