Testsuite: also handle -XX in version
[exim.git] / test / confs / 0548
CommitLineData
8852dff2
PH
1# Exim test configuration 0548
2
3SERVER=
4
5exim_path = EXIM_PATH
6host_lookup_order = bydns
7rfc1413_query_timeout = 0s
8spool_directory = DIR/spool
9log_file_path = DIR/spool/log/SERVER%slog
10gecos_pattern = ""
11gecos_name = CALLER_NAME
12
13# ----- Main settings -----
14
15acl_smtp_connect = acl_connect
16acl_smtp_rcpt = acl_rcpt
17qualify_domain = test.ex
273f34d0 18queue_run_in_order
8852dff2
PH
19
20
21# ----- ACLs -----
22
23begin acls
24
25acl_connect:
26 defer message = host deferred
27 hosts = thishost.test.ex
28 accept
29
30acl_rcpt:
31 defer message = Recipient deferred
32
33
34# ----- Routers -----
35
36begin routers
37
38smarthost:
39 driver = accept
40 transport = smtp
41
42
43# ----- Transports -----
44
45begin transports
46
47smtp:
48 driver = smtp
49 hosts = HOSTIPV4 : thishost.test.ex
50 allow_localhost
51 port = PORT_D
52
53
54# ----- Retry -----
55
56begin retry
57
58thishost.test.ex * F,15s,1s
59* * F,1s,1s; F,1s,5s
60
61# End