summaryrefslogtreecommitdiff
path: root/test/confs/0375
blob: 1c246afa0d66508af0a7184f8ccb7691a4719583 (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
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
# Exim test configuration 0375

exim_path = EXIM_PATH
host_lookup_order = bydns
primary_hostname = myhost.test.ex
spool_directory = DIR/spool
log_file_path = DIR/spool/log/%slog
gecos_pattern = ""
gecos_name = CALLER_NAME

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

domainlist local_domains = test.ex : *.test.ex
log_selector = +return_path_on_delivery
remote_max_parallel = 1


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

begin routers

u1:
  driver = accept
  local_parts = ^a\\d
  transport = ut1
  errors_to =
  unseen

ut2:
  driver = accept
  local_parts = ^b\\d
  transport = ut2
  errors_to = ""
  unseen

ut3:
  driver = accept
  local_parts = ^c\\d
  transport = ut3
  errors_to =
  unseen

ut4:
  driver = accept
  local_parts = ^d\\d
  transport = ut4
  errors_to =
  unseen

ut5:
  driver = accept
  local_parts = ^e\\d
  transport = ut5
  unseen

ut6:
  driver = accept
  local_parts = ^f\\d
  address_data = $sender_address
  transport = ut6
  errors_to =
  unseen

ut7:
  driver = accept
  local_parts = ^g\\d
  address_data = $bad expansion
  transport = ut6
  errors_to =
  unseen
  disable_logging

ut8:
  driver = accept
  local_parts = ^h\\d
  transport = ut1
  errors_to = ${if eq{0}{1}{x@y}fail}
  unseen

real:
  driver = accept
  transport = real


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

begin transports

# Successful local transport
ut1:
  driver = appendfile
  file = DIR/test-mail/$local_part-u
  user = CALLER
  return_path_add
  envelope_to_add
  disable_logging

# Hard unsuccessful local transport

ut2:
  driver = pipe
  command = /non/existent/file
  user = CALLER
  disable_logging

# Soft unsuccessful local transport

ut3:
  driver = pipe
  command = /non/existent/file
  temp_errors = *
  user = CALLER
  disable_logging

# Remote transport - all types

ut4:
  driver = smtp
  hosts = 127.0.0.1
  port = PORT_S
  allow_localhost
  max_rcpt = 1
  disable_logging

# Another remote transport with return_path set empty

ut5:
  driver = smtp
  hosts = 127.0.0.1
  port = PORT_S
  allow_localhost
  max_rcpt = 1
  disable_logging
  return_path =

# Another remote transport with return_path reinstating original

ut6:
  driver = smtp
  hosts = 127.0.0.1
  port = PORT_S
  allow_localhost
  max_rcpt = 1
  disable_logging
  return_path = $address_data

# Real delivery
real:
  driver = appendfile
  file = DIR/test-mail/$local_part
  user = CALLER
  return_path_add
  envelope_to_add


# ----- Retry -----


begin retry

* * F,5d,1d


# End