testsuite: abstract out common conf settings
[exim.git] / test / confs / 0531
1 # Exim test configuration 0531
2
3 .include DIR/aux-var/std_conf_prefix
4
5 primary_hostname = myhost.test.ex
6
7 # ----- Main settings -----
8
9 domainlist local_domains = test.ex : *.test.ex
10 log_selector =  +sender_on_delivery
11
12
13 # ----- Routers -----
14
15 begin routers
16
17 bounces:
18   driver = accept
19   senders = :
20   transport = t1
21
22 smartuser:
23   driver = accept
24   retry_use_local_part
25   transport = lmtp
26
27
28 # ----- Transports -----
29
30 begin transports
31
32 t1:
33   driver = appendfile
34   file = DIR/test-mail/$local_part
35   user = CALLER
36
37 lmtp:
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
48 begin retry
49
50 retry.test.ex * F,1s,1s
51
52
53 # End