testcases for value return
[exim.git] / test / confs / 0211
CommitLineData
afda344b
PH
1# Exim test configuration 0211
2
d4dc049f
JH
3.include DIR/aux-var/std_conf_prefix
4
afda344b
PH
5
6# ----- Main settings -----
7
8domainlist local_domains = test.ex
9
10acl_smtp_rcpt = check_recipient
11
12log_selector = +sender_on_delivery
13qualify_domain = test.ex
14
15
16# ----- ACLs -----
17
18begin acl
19
20check_recipient:
21 accept hosts = :
22 accept domains = +local_domains
23 deny message = relay not permitted
24
25
26# ----- Routers -----
27
28begin routers
29
30others:
31 driver = manualroute
32 domains = ! +local_domains
e69636bc
JH
33.ifdef LIST
34 route_data = 127.0.0.1:HOSTIPV4
35.else
36 route_data = localhost4.test.ex byname
37.endif
afda344b
PH
38 self = send
39 transport = smtp
40 no_more
41
42all:
43 driver = accept
44 retry_use_local_part
45 transport = local_delivery
46
47
48# ----- Transports -----
49
50begin transports
51
52smtp:
53 driver = smtp
54 port = PORT_S
277b9979 55 hosts_try_fastopen = :
e69636bc 56 command_timeout = 1s
afda344b
PH
57
58local_delivery:
59 driver = appendfile
0d2e392e 60 file = DIR/test-mail/${bless:$local_part}
afda344b
PH
61 return_path_add
62 user = CALLER
63
64
65# ----- Retry -----
66
67
68begin retry
69
70* * F,5d,8h
71
72
73# End