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