testsuite: abstract out common conf settings
[exim.git] / test / confs / 0215
1 # Exim test configuration 0215
2
3 IGNORE_QUOTA=false
4 AUTHS=
5 AUTHF=
6
7 .include DIR/aux-var/std_conf_prefix
8
9 primary_hostname = myhost.test.ex
10
11 # ----- Main settings -----
12
13 domainlist local_domains = test.ex : *.test.ex
14 log_selector =  +sender_on_delivery
15
16
17 # ----- Routers -----
18
19 begin routers
20
21 bounces:
22   driver = redirect
23   allow_defer
24   data = :blackhole:
25   retry_use_local_part
26   senders = :
27
28 smartuser:
29   driver = accept
30   retry_use_local_part
31   transport = lmtp
32
33
34 # ----- Transports -----
35
36 begin transports
37
38 lmtp:
39   driver = smtp
40   allow_localhost
41   hosts = 127.0.0.1
42   port = PORT_S
43   protocol = LMTP
44   lmtp_ignore_quota = IGNORE_QUOTA
45   AUTHS
46   AUTHF
47
48
49 # ----- Retry -----
50
51
52 begin retry
53
54 * * F,5d,1d
55
56
57 # End