testcase
[exim.git] / test / confs / 0211
CommitLineData
afda344b
PH
1# Exim test configuration 0211
2
3exim_path = EXIM_PATH
bc3c7bb7 4keep_environment =
afda344b 5host_lookup_order = bydns
afda344b
PH
6spool_directory = DIR/spool
7log_file_path = DIR/spool/log/%slog
8gecos_pattern = ""
9gecos_name = CALLER_NAME
23f3dc67 10tls_advertise_hosts =
afda344b
PH
11
12# ----- Main settings -----
13
14domainlist local_domains = test.ex
15
16acl_smtp_rcpt = check_recipient
17
18log_selector = +sender_on_delivery
19qualify_domain = test.ex
20
21
22# ----- ACLs -----
23
24begin acl
25
26check_recipient:
27 accept hosts = :
28 accept domains = +local_domains
29 deny message = relay not permitted
30
31
32# ----- Routers -----
33
34begin routers
35
36others:
37 driver = manualroute
38 domains = ! +local_domains
5980e628 39 route_list = * localhost4.test.ex byname
afda344b
PH
40 self = send
41 transport = smtp
42 no_more
43
44all:
45 driver = accept
46 retry_use_local_part
47 transport = local_delivery
48
49
50# ----- Transports -----
51
52begin transports
53
54smtp:
55 driver = smtp
56 port = PORT_S
57
58local_delivery:
59 driver = appendfile
60 file = DIR/test-mail/$local_part
61 return_path_add
62 user = CALLER
63
64
65# ----- Retry -----
66
67
68begin retry
69
70* * F,5d,8h
71
72
73# End