Apply Jakob Hirsch's patch for arbitrary ACL variable names, tidied up
[exim.git] / test / confs / 5207
CommitLineData
afda344b
PH
1# Exim test configuration 5207
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
15
16# ----- Transports -----
17
18begin transports
19
20t1:
21 driver = appendfile
22 file = DIR/test-mail/${if eq{$address_data}{}{$local_part}{$address_data}}
23 user = CALLER
24
25# ----- Routers -----
26
27begin routers
28
29# Delivered without changing address_data
30
31nodata:
32 driver = accept
33 local_parts = nodata
34 transport = t1
35
36r6:
37 driver = queryprogram
38 domains = r6
39 address_data = qpgm
40 command = /bin/echo ACCEPT transport=t1
41 command_user = nobody
42
43r7:
44 driver = queryprogram
45 domains = r7
46 address_data = qpgm
47 command = /bin/echo redirect nodata@test.ex
48 command_user = nobody
49
50# ----- Retry -----
51
52begin retry
53
54* * F,5d,5m
55
56# End