Merge branch 'multiqueue_336': Named queues
[exim.git] / test / confs / 0292
CommitLineData
afda344b
PH
1# Exim test configuration 0292
2
3exim_path = EXIM_PATH
bc3c7bb7 4keep_environment =
afda344b
PH
5host_lookup_order = bydns
6primary_hostname = myhost.test.ex
afda344b
PH
7spool_directory = DIR/spool
8log_file_path = DIR/spool/log/%slog
9gecos_pattern = ""
10gecos_name = CALLER_NAME
23f3dc67 11tls_advertise_hosts =
afda344b
PH
12trusted_users = CALLER
13
14# ----- Main settings -----
15
16
17# ------ Routers ------
18
19begin routers
20
21r1:
22 driver = manualroute
23 domains = t1
24 route_list = * host.1:host.2
25 transport = t1
26
27r2:
28 driver = manualroute
29 domains = t2
30 route_list = * 127.0.0.1:ten-1.test.ex bydns
31 transport = t2
32 self = send
33
34
35# ------ Transports ------
36
37begin transports
38
39t1:
40 driver = appendfile
41 file = /dev/null
42 debug_print = \$host=$host \$host_address=$host_address
43 user = CALLER
44
45t2:
46 driver = smtp
47 debug_print = \$host=$host \$host_address=$host_address
48
49# End