192e3edafd40ee07564da2039bcd88517e29055f
[exim.git] / test / confs / 0531
1 # Exim test configuration 0531
2
3 exim_path = EXIM_PATH
4 host_lookup_order = bydns
5 primary_hostname = myhost.test.ex
6 spool_directory = DIR/spool
7 log_file_path = DIR/spool/log/%slog
8 gecos_pattern = ""
9 gecos_name = CALLER_NAME
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 = accept
23   senders = :
24   transport = t1
25
26 smartuser:
27   driver = accept
28   retry_use_local_part
29   transport = lmtp
30
31
32 # ----- Transports -----
33
34 begin transports
35
36 t1:
37   driver = appendfile
38   file = DIR/test-mail/$local_part
39   user = CALLER
40
41 lmtp:
42   driver = smtp
43   allow_localhost
44   hosts = 127.0.0.1
45   port = PORT_S
46   protocol = LMTP
47
48
49 # ----- Retry -----
50
51
52 begin retry
53
54 retry.test.ex * F,1s,1s
55
56
57 # End