Apply Jakob Hirsch's patch for arbitrary ACL variable names, tidied up
[exim.git] / test / confs / 0217
CommitLineData
afda344b
PH
1# Exim test configuration 0217
2
3exim_path = EXIM_PATH
4host_lookup_order = bydns
5primary_hostname = myhost.test.ex
6rfc1413_query_timeout = 0s
7spool_directory = DIR/spool
8log_file_path = DIR/spool/log/%slog
9gecos_pattern = ""
10gecos_name = CALLER_NAME
11
12# ----- Main settings -----
13
14qualify_domain = test.ex
15ignore_bounce_errors_after = 0s
16
17
18# ----- Routers -----
19
20begin routers
21
22bounce:
23 driver = redirect
24 allow_defer
25 allow_fail
26 data = :fail: just discard
27 retry_use_local_part
28 senders = :
29
30client:
31 driver = accept
32 retry_use_local_part
33 transport = send_to_server
34
35
36# ----- Transports -----
37
38begin transports
39
40send_to_server:
41 driver = smtp
42 allow_localhost
43 command_timeout = 1s
44 hosts = 127.0.0.1
45 port = PORT_S
46
47
48# ----- Retry -----
49
50
51begin retry
52
53* * F,5d,10s
54
55
56# End