Testsuite: move perl-dependent testcases
[exim.git] / test / confs / 0209
CommitLineData
afda344b
PH
1# Exim test configuration 0209
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
14acl_smtp_rcpt = check_recipient
15domainlist local_domains = test.ex
16qualify_domain = test.ex
17queue_run_in_order
18
19# ----- ACL -----
20
21begin acl
22
23check_recipient:
24 accept hosts = :
25 accept domains = +local_domains
26 deny message = relay not permitted
27
28
29# ----- Routers -----
30
31begin routers
32
33others:
34 driver = manualroute
35 domains = ! +local_domains
36 route_list = * 127.0.0.1 byname
37 self = send
38 transport = smtp
39 no_more
40
41# ----- Transports -----
42
43begin transports
44
45smtp:
46 driver = smtp
47 port = PORT_S
48
49
50# ----- Retry -----
51
52begin retry
53
54* * F,5d,8h
55
56
57# End