More new test committing.
[exim.git] / test / confs / 1003
CommitLineData
afda344b
PH
1# Exim test configuration 264
2
3SERVER =
4
5exim_path = EXIM_PATH
6host_lookup_order = bydns
7primary_hostname = myhost.test.ex
8rfc1413_query_timeout = 0s
9spool_directory = DIR/spool
10log_file_path = DIR/spool/log/SERVER%slog
11gecos_pattern = ""
12gecos_name = CALLER_NAME
13
14# ----- Main settings -----
15
16acl_smtp_rcpt = accept
17
18queue_only
19queue_run_in_order
20
21
22# ----- Routers -----
23
24begin routers
25
26client:
27 driver = accept
28 condition = ${if eq {SERVER}{server}{no}{yes}}
29 transport = send_to_server
30
31server:
32 driver = accept
33 transport = local_delivery
34
35
36# ----- Transports -----
37
38begin transports
39
40local_delivery:
41 driver = appendfile
42 file = DIR/test-mail/$local_part
43 user = CALLER
44
45send_to_server:
46 driver = smtp
47 allow_localhost
48 hosts = $h_hosts
49 port = PORT_D
50 interface = ${expand:$h_interface:}
51
52
53# ----- Retry -----
54
55begin retry
56
57* * F,5d,10s
58
59# End