Allow relative file names in .include lines (Closes 1971)
[exim.git] / test / confs / 0531
CommitLineData
75def545
PH
1# Exim test configuration 0531
2
4fab92fb
HSHR
3.include DIR/aux-var/std_conf_prefix
4
75def545 5primary_hostname = myhost.test.ex
75def545
PH
6
7# ----- Main settings -----
8
9domainlist local_domains = test.ex : *.test.ex
10log_selector = +sender_on_delivery
11
12
13# ----- Routers -----
14
15begin routers
16
17bounces:
18 driver = accept
19 senders = :
20 transport = t1
21
22smartuser:
23 driver = accept
24 retry_use_local_part
25 transport = lmtp
26
27
28# ----- Transports -----
29
30begin transports
31
32t1:
33 driver = appendfile
34 file = DIR/test-mail/$local_part
35 user = CALLER
36
37lmtp:
38 driver = smtp
39 allow_localhost
40 hosts = 127.0.0.1
41 port = PORT_S
42 protocol = LMTP
43
44
45# ----- Retry -----
46
47
48begin retry
49
50retry.test.ex * F,1s,1s
51
52
53# End