summaryrefslogtreecommitdiff
path: root/test/confs/0252
blob: 28ce3419ff6d2aa717ac2765f94912014c875611 (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
# Exim test configuration 0252

.include DIR/aux-var/std_conf_prefix

primary_hostname = myhost.test.ex

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

domainlist local_domains = test.ex : *.test.ex
trusted_users = CALLER


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

begin routers

a:
  driver = redirect
  allow_defer
  data = ${lookup{$local_part}lsearch{DIR/aux-fixed/TESTNUM.alias}}
  errors_to = alias@test.ex
  retry_use_local_part

f:
  driver = redirect
  no_check_local_user
  errors_to = forward@test.ex
  file = DIR/aux-fixed/TESTNUM.forward
  local_parts = forward
  retry_use_local_part

s:
  driver = redirect
  allow_defer
  data = from-smart@test.ex
  errors_to = smart@test.ex
  local_parts = smart
  retry_use_local_part

u:
  driver = accept
  errors_to = postmaster@test.ex
  retry_use_local_part
  transport = t1
  unseen

z:
  driver = accept
  retry_use_local_part
  transport = t2


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

begin transports

t1:
  driver = appendfile
  file = DIR/test-mail/t1
  return_path_add
  user = CALLER

t2:
  driver = appendfile
  file = DIR/test-mail/t2
  return_path_add
  user = CALLER


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


begin retry

* * F,5d,10s


# End