Fix with-TLS non-International build
[exim.git] / test / confs / 0309
CommitLineData
afda344b
PH
1# Exim test configuration 0309
2
3exim_path = EXIM_PATH
4host_lookup_order = bydns
5primary_hostname = myhost.test.ex
afda344b
PH
6spool_directory = DIR/spool
7log_file_path = DIR/spool/log/%slog
8gecos_pattern = ""
9gecos_name = CALLER_NAME
10
11# ----- Main settings -----
12
13domainlist local_domains = test.ex : *.test.ex
14
15
16# ----- Routers -----
17
18begin routers
19
20bounce:
21 driver = accept
22 senders = :
23 transport = bounce
24
25all:
26 driver = accept
27 transport = local_delivery
28
29
30# ----- Transports -----
31
32begin transports
33
34local_delivery:
35 driver = appendfile
36 file = DIR/test-mail/$local_part
37 message_size_limit = $local_part
38 user = CALLER
39
40bounce:
41 driver = appendfile
42 file = DIR/test-mail/$local_part
43 user = CALLER
44
45
46# End