summaryrefslogtreecommitdiff
path: root/test/confs/0120
blob: 95a5b3e8ae5a9dbc6a0c50233eb59cc09f5cf590 (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
# Exim test configuration 0120

.include DIR/aux-var/std_conf_prefix


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

acl_smtp_rcpt = check_recipient
acl_smtp_data = check_message

domainlist local_domains = test.ex
qualify_domain = test.ex


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

begin routers

blackhole:
  driver = redirect
  allow_defer
  allow_fail
  data = :blackhole:
  local_parts = CALLER
  retry_use_local_part

force_defer:
  driver = redirect
  allow_defer
  allow_fail
  condition = ${if < {$message_age}{2}{yes}{no}}
  data = :defer: forced defer
  retry_use_local_part

force_fail:
  driver = redirect
  allow_defer
  allow_fail
  data = :fail: forced fail after $message_age seconds
  retry_use_local_part


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


begin retry

* * F,5d,1d


# End