blob: dd17eb840a403b2612812cb131cc99077e6de1d1 (
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
|
# Exim test configuration 0102
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 -----
domainlist local_domains = test.ex
qualify_domain = test.ex
# ----- Routers -----
begin routers
batch:
driver = accept
local_part_prefix = batch-
retry_use_local_part
transport = batch_bsmtp1
localuser:
driver = accept
local_part_prefix = bsmtp_ : mmdf_
local_part_prefix_optional
retry_use_local_part
transport = ${local_part_prefix}local_delivery
# ----- Transports -----
begin transports
local_delivery:
driver = appendfile
delivery_date_add
envelope_to_add
file = DIR/test-mail/$local_part
file_format = "From : local_delivery :\
MAIL : bsmtp_local_delivery :\
\1\1\1\1\n : mmdf_local_delivery :\
tpmissing : tpmissing"
return_path_add
user = CALLER
bsmtp_local_delivery:
driver = appendfile
batch_max = 100
use_bsmtp
delivery_date_add
envelope_to_add
file = DIR/test-mail/$local_part
return_path_add
user = CALLER
mmdf_local_delivery:
driver = appendfile
check_string = "\1\1\1\1\n"
escape_string = "\1\1\1\1 \n"
file = DIR/test-mail/$local_part
message_prefix = "\1\1\1\1\n"
message_suffix = "\1\1\1\1\n"
user = CALLER
batch_bsmtp1:
driver = appendfile
batch_max = 100
use_bsmtp
file = DIR/test-mail/batched
file_format = "MAIL : batch_bsmtp2"
user = CALLER
batch_bsmtp2:
driver = appendfile
batch_max = 100
use_bsmtp
file = DIR/test-mail/batched
user = CALLER
# ----- Retry -----
begin retry
* * F,2d,2d
# End
|