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

OPT=

.include DIR/aux-var/std_conf_prefix


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

qualify_domain = test.ex

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

begin routers

scan:
   driver = accept
   condition = ${if eq {OPT}{scan} {y}}
   transport = scan

local:
   driver = accept
   transport = local_delivery

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

begin transports

scan:
  driver = queuefile
  directory = DIR/scanner

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

# End