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