summaryrefslogtreecommitdiff
path: root/test/confs/0364
blob: 0ae251b366dc86be6a856a7e74dbd18fdc467419 (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
# Exim test configuration 0364

.include DIR/aux-var/std_conf_prefix


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

qualify_domain = test.ex


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

begin routers

r1:
  driver = redirect
  domains = \N^[^.]+$\N
  address_data = $domain
  data = $local_part@$domain.test.ex
  redirect_router = r2

r2:
  driver = dnslookup
  domains = !thishost.test.ex
  transport = t1

r3:
  driver = redirect
  domains = !thishost.test.ex
  condition = ${if eq{$address_data}{}{no}{yes}}
  address_data =
  data = $local_part@$original_domain.sub.test.ex
  redirect_router = r2

r4:
  driver = redirect
  domains = !thishost.test.ex
  allow_fail
  data = :fail:Can't route to $domain

r5:
  driver = accept
  transport = t2


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

begin transports

t1:
  driver = smtp
  hosts_try_fastopen =	:

t2:
  driver = appendfile
  file = /dev/null
  user = CALLER


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

begin retry

*   *   F,3s,1s; G,1h,2s,2

# End