Fix CVE-2016-1531
[exim.git] / test / confs / 2007
1 # Exim test configuration 2007
2
3 SERVER =
4
5 exim_path = EXIM_PATH
6 keep_environment =
7 host_lookup_order = bydns
8 primary_hostname = myhost.test.ex
9 rfc1413_query_timeout = 0s
10 spool_directory = DIR/spool
11 log_file_path = DIR/spool/log/SERVER%slog
12 gecos_pattern = ""
13 gecos_name = CALLER_NAME
14
15 # ----- Main settings -----
16
17 acl_smtp_rcpt = accept
18
19 log_selector = +smtp_confirmation+tls_peerdn
20
21 queue_only
22 queue_run_in_order
23
24 tls_advertise_hosts = *
25
26 # Set certificate only if server
27
28 tls_certificate = ${if eq {SERVER}{server}{DIR/aux-fixed/cert1}fail}
29 tls_privatekey = ${if eq {SERVER}{server}{DIR/aux-fixed/cert1}fail}
30
31
32 # ----- Routers -----
33
34 begin routers
35
36 client:
37   driver = accept
38   condition = ${if eq {SERVER}{server}{no}{yes}}
39   retry_use_local_part
40   transport = send_to_server${if eq{$local_part}{abcd}{2}{1}}
41
42 server:
43   driver = accept
44   retry_use_local_part
45   transport = local_delivery
46
47
48 # ----- Transports -----
49
50 begin transports
51
52 local_delivery:
53   driver = appendfile
54   file = DIR/test-mail/$local_part
55   headers_add = TLS: cipher=$tls_cipher peerdn=$tls_peerdn
56   user = CALLER
57
58 send_to_server1:
59   driver = smtp
60   allow_localhost
61   hosts = 127.0.0.1
62   port = PORT_D
63
64 send_to_server2:
65   driver = smtp
66   allow_localhost
67   hosts = HOSTIPV4
68   port = PORT_D
69
70 # End