blob: 8f9d71980022f297afd2a4decdc7a192f79c375e (
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
|
# Exim test configuration 0622
SERVER=
HAP=
.include DIR/aux-var/std_conf_prefix
primary_hostname = myhost.test.ex
log_selector = +pipelining +received_recipients +smtp_connection
# ----- Main settings -----
acl_smtp_rcpt = check_rcpt
begin acl
check_rcpt:
defer
condition = ${if eq {$acl_m0}{1}}
recipients = B@test.ex : C@test.ex : D@test.ex : E@test.ex : F@test.ex
message = 452 4.5.3 Try again
defer
condition = ${if eq {$acl_m0}{2}}
recipients = C@test.ex : D@test.ex
message = 452 4.5.3 Try again
warn
recipients = A@test.ex
set acl_m0 = 1
warn
recipients = B@test.ex
set acl_m0 = 2
accept
# ----- Routers -----
begin routers
server:
driver = redirect
condition = ${if eq {SERVER}{server} {yes}{no}}
data = :blackhole:
client:
driver = accept
condition = ${if eq {SERVER}{server} {no}{yes}}
retry_use_local_part
transport = send_to_server
# ----- Transports -----
begin transports
send_to_server:
driver = smtp
allow_localhost
hosts = 127.0.0.1
port = PORT_D
max_rcpt = 0
HAP
# ----- Retry -----
begin retry
* * F,5d,10s
# End
|