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