New $queue_name variable
[exim.git] / test / confs / 0359
CommitLineData
afda344b
PH
1# Exim test configuration 0359
2
3exim_path = EXIM_PATH
bc3c7bb7 4keep_environment =
afda344b 5host_lookup_order = bydns
afda344b
PH
6spool_directory = DIR/spool
7log_file_path = DIR/spool/log/%slog
8gecos_pattern = ""
9gecos_name = CALLER_NAME
23f3dc67 10tls_advertise_hosts =
afda344b
PH
11
12# ----- Main settings -----
13
14qualify_domain = test.ex
15
16
17# ----- Routers -----
18
19begin routers
20
21r1:
22 driver = accept
23 transport = t1
24
25
26# ----- Transports -----
27
28begin transports
29
30t1:
31 driver = appendfile
32 file = /dev/null
33 shadow_transport = t2
34 shadow_condition = ${if eq{$local_part}{userx}{yes}{no}}
35 user = CALLER
36
37t2:
38 driver = appendfile
39 file = DIR/test-mail/$local_part
40 headers_add = X-shadowed:
41 user = CALLER
42
43
44# ----- Retry -----
45
46begin retry
47
48* * F,3s,1s; G,1h,2s,2
49
50# End