summaryrefslogtreecommitdiff
path: root/test/confs/2035
blob: 402239022421a28168ba44afadb9754d597b9f76 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
# Exim test configuration 2135

.include DIR/aux-var/tls_conf_prefix

.ifdef SERVER
tls_certificate = DIR/aux-fixed/exim-ca/example.com/server1.example.com/server1.example.com.chain.pem
tls_privatekey = DIR/aux-fixed/exim-ca/example.com/server1.example.com/server1.example.com.unlocked.key
.else
tls_advertise_hosts =
.endif

primary_hostname = myhost.test.ex

# ----- Main settings -----

.ifdef SERVER
acl_smtp_rcpt = srvr_rcpt
acl_smtp_data = srvr_data
.else
acl_smtp_rcpt = client_rcpt
acl_smtp_data = client_data
.endif

log_selector = +received_recipients +outgoing_port

.ifdef SERVER
queue_only
queue_run_in_order = true
.endif

# ----- ACLs -----

begin acl

client_rcpt:
  accept
	verify =	recipient/callout=use_sender,hold

client_data:
  accept

srvr_rcpt:
  defer	local_parts =	rcpt_defer
  accept

srvr_data:
  defer	condition =	${if eq {data_defer}{${local_part:$recipients}}}
  accept

# ----- Routers -----

begin routers

target:
  driver =	redirect
  condition =	${if or {{eq {SERVER}{server}} {queue_running}}}
  data =	:blackhole:

client:
  driver =	manualroute
  route_list=	* 127.0.0.1::PORT_D
  self =	send
  transport =	t1
  errors_to =	""

begin transports

t1:
  driver =			smtp
  port =			PORT_D
  tls_verify_certificates =	DIR/aux-fixed/exim-ca/example.com/CA/CA.pem
  tls_verify_cert_hostnames =	:

# ----- Retry -----
begin retry

* * F,5d,10s
# End