summaryrefslogtreecommitdiff
path: root/test/confs/0102
blob: c73eed924919be14556966baffd8ee267dce7226 (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

.include DIR/aux-var/std_conf_prefix


# ----- 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 = ${if !def:local_part_prefix {} \
		{${if eq {bsmtp_}{$local_part_prefix} {bsmtp_}\
			{${if eq {mmdf_}{$local_part_prefix} {mmdf_} {}}}}}}local_delivery


# ----- Transports -----

begin transports

local_delivery:
  driver = appendfile
  delivery_date_add
  envelope_to_add
  file = DIR/test-mail/$local_part
  create_file = DIR/test-mail
  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
  create_file = DIR/test-mail
  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
  create_file = DIR/test-mail
  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