47bb2d5d1dba92b288fd18855715b3e037b16bcf
[exim.git] / test / confs / 1160
1 # Exim test configuration 2160
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 domainlist local_domains = test.ex : *.test.ex
12
13 acl_smtp_rcpt = check_recipient
14 queue_only
15 queue_run_in_order
16 remote_max_parallel = 1
17
18 tls_advertise_hosts = *
19 tls_on_connect_ports = PORT_D
20
21 tls_certificate = DIR/aux-fixed/cert1
22
23 log_selector = +millisec
24
25 # ------ ACL ------
26
27 begin acl
28
29 check_recipient:
30   accept  domains = +local_domains
31   deny    message = relay not permitted
32
33
34 # ----- Routers -----
35
36 begin routers
37
38 client:
39   driver = accept
40   condition = ${if eq {SERVER}{server}{no}{yes}}
41   retry_use_local_part
42   transport = send_to_server${if eq{$local_part}{abcd}{2}{1}}
43
44 server:
45   driver = accept
46   retry_use_local_part
47   transport = local_delivery
48
49
50 # ----- Transports -----
51
52 begin transports
53
54 local_delivery:
55   driver = appendfile
56   file = DIR/test-mail/${bless:$local_part}
57   headers_add = TLS: cipher=$tls_cipher peerdn=$tls_peerdn
58   user = CALLER
59
60 send_to_server1:
61   driver = smtp
62   allow_localhost
63   hosts = 127.0.0.1
64   port = PORT_D
65   hosts_try_fastopen = :
66   protocol = smtps
67   tls_verify_certificates =     DIR/aux-fixed/cert1
68   tls_verify_cert_hostnames =   :
69   helo_data = helo.data.changed
70
71 send_to_server2:
72   driver = smtp
73   allow_localhost
74   hosts = HOSTIPV4
75   port = PORT_D
76   hosts_try_fastopen = :
77   protocol = smtps
78   tls_verify_certificates =     DIR/aux-fixed/cert1
79   tls_verify_cert_hostnames =   :
80
81
82 # ----- Retry -----
83
84
85 begin retry
86
87 * * F,5d,10s
88
89
90 # End