Merge branch 'master'
[exim.git] / test / confs / 0553
1 # Exim test configuration 0553
2
3 DCF =
4 SERVER =
5
6 exim_path = EXIM_PATH
7 keep_environment =
8 host_lookup_order = bydns
9 primary_hostname = myhost.test.ex
10 spool_directory = DIR/spool
11 log_file_path = DIR/spool/log/SERVER%slog
12 gecos_pattern = ""
13 gecos_name = CALLER_NAME
14 tls_advertise_hosts =
15
16 # ----- Main settings -----
17
18 acl_smtp_rcpt = check_recipient
19
20 queue_only
21
22 # ----- ACL -----
23
24 begin acl
25
26 check_recipient:
27 # Callouts accepted with a delay
28 accept senders = :
29 delay = 1s
30
31 # Non-callouts do the callout
32 accept verify = recipient/callout
33 DCF
34
35
36 # ----- Routers -----
37
38 begin routers
39
40 t1:
41 driver = manualroute
42 route_list = * 127.0.0.1 byname
43 self = send
44 transport = smtp
45
46
47 # ----- Transports -----
48
49 begin transports
50
51 smtp:
52 driver = smtp
53 port = PORT_D
54 command_timeout = 2s
55
56
57 # ----- Retry -----
58
59 begin retry
60
61 * * F,5d,10s
62
63
64 # End