blob: 3b34b0cad19a6dd2cca3ad8c4f89bf34d675a566 (
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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
|
# Exim test configuration 0190
exim_path = EXIM_PATH
host_lookup_order = bydns
rfc1413_query_timeout = 0s
spool_directory = DIR/spool
log_file_path = DIR/spool/log/%slog
gecos_pattern = ""
gecos_name = CALLER_NAME
# ----- Main settings -----
dns_ipv4_lookup = *
qualify_domain = test.ex
remote_max_parallel = 1
# ----- Routers -----
begin routers
# Specified and randomized in the transport
domainx:
driver = manualroute
domains = ^domain
route_list = * V4NET.9.8.7 byname
transport = smtp
# Specified in the router, randomized in the transport
r2:
driver = manualroute
domains = ^adomain
route_list = * "$primary_hostname : 127.0.0.1 : HOSTIPV4" byname
self = send
transport = smtp3
# Randomized in the router, to check "sameness" testing
r3:
driver = manualroute
domains = ^bdomain
hosts_randomize
route_list = * "$primary_hostname : 127.0.0.1 : HOSTIPV4" byname
self = send
transport = smtp2
# Specified and randomized in the router, with batching
batched:
driver = manualroute
hosts_randomize
route_list = batch V4NET.0.0.1:V4NET.0.0.2:V4NET.0.0.3:+:\
V4NET.0.0.4:V4NET.0.0.5:V4NET.0.0.6:+:\
V4NET.0.0.7 byname;\
batch2 V4NET.0.0.1:V4NET.0.0.2:V4NET.0.0.3:+:\
V4NET.0.0.4:V4NET.0.0.5:V4NET.0.0.6:+:\
V4NET.0.0.7 byname no_randomize;
transport = smtp2
batched2:
driver = manualroute
route_list = batch3 V4NET.0.0.1:V4NET.0.0.2:V4NET.0.0.3:+:\
V4NET.0.0.4:V4NET.0.0.5:V4NET.0.0.6:+:\
V4NET.0.0.7 byname;\
batch4 V4NET.0.0.1:V4NET.0.0.2:V4NET.0.0.3:+:\
V4NET.0.0.4:V4NET.0.0.5:V4NET.0.0.6:+:\
V4NET.0.0.7 byname randomize;
transport = smtp2
# Specified and randomized in the router, no grouping
others:
driver = manualroute
hosts_randomize
route_list = * V4NET.0.0.1:V4NET.0.0.2:V4NET.0.0.3 byname
transport = smtp2
# ----- Transports -----
begin transports
smtp:
driver = smtp
allow_localhost
hosts = $primary_hostname : 127.0.0.1 : HOSTIPV4
hosts_override
hosts_randomize
max_rcpt = 1
connection_max_messages = 1
port = PORT_S
smtp2:
driver = smtp
port = PORT_S
smtp3:
driver = smtp
hosts_randomize
max_rcpt = 2
connection_max_messages = 1
port = PORT_S
# ----- Retry -----
begin retry
* * F,5d,1d
# End
|