summaryrefslogtreecommitdiff
path: root/test/confs/5204
blob: 4fb15c351ae6fc4ea5258fff40a19e1a3c3c2c04 (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
# Exim test configuration 5204

COMMAND_USER=EXIMUSER

.include DIR/aux-var/std_conf_prefix

primary_hostname = myhost.test.ex

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

acl_smtp_rcpt = accept verify = recipient
domainlist local_domains = test.ex

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

begin routers

b:
  driver = accept
  senders = :
  transport = local_delivery

q:
  driver = queryprogram
  caseful_local_part
  command = /bin/echo \
    "${if match{$local_part}{^\"([^\"]*)\"(.*)\\$}{$1$2}{$local_part}}"
  command_user = COMMAND_USER
  domains = ! +local_domains
  no_more
  transport = smtp

s:
  driver = manualroute
  domains = ! +local_domains
  route_list = * 127.0.0.1 byname
  self = send
  transport = smtp
  no_more

pm:
  driver = accept
  local_parts = postmaster
  retry_use_local_part
  transport = null


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

begin transports

smtp:
  driver = smtp
  hosts_try_fastopen =	:

other_smtp:
  driver = smtp
  hosts_try_fastopen =	:

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

local_delivery:
  driver = appendfile
  file = DIR/test-mail/$local_part
  create_file = DIR/test-mail
  user = CALLER


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

begin retry

* * F,2h,15m


# End