Merge branch 'multiqueue_336': Named queues
[exim.git] / test / confs / 0610
CommitLineData
6f6dedcc
JH
1# Exim test configuration 0610
2
3SERVER =
4
5exim_path = EXIM_PATH
bc3c7bb7 6keep_environment =
6f6dedcc
JH
7host_lookup_order = bydns
8#primary_hostname = myhost.test.ex
9rfc1413_query_timeout = 0s
10spool_directory = DIR/spool
11log_file_path = DIR/spool/log/SERVER%slog
12log_selector = +sender_on_delivery
13gecos_pattern = ""
14gecos_name = CALLER_NAME
23f3dc67 15tls_advertise_hosts =
6f6dedcc
JH
16
17# ----- Main settings -----
18
19acl_smtp_connect = conn_chk
20acl_smtp_rcpt = accept
21
22untrusted_set_sender = *
23queue_only
24queue_run_in_order
25
26# ----- ACL -----
27
28begin acl
29
30conn_chk:
31 defer condition = ${if eq {SERVER}{server}}
32 accept
33
34# ----- Routers -----
35
36begin routers
37
38client:
39 driver = accept
40 transport = $sender_address_local_part
41
42# ----- Transports -----
43
44begin transports
45
46t1:
47 driver = smtp
48 allow_localhost
49 hosts = 127.0.0.1
50 port = PORT_D
51 interface = 127.0.0.1
52
53t2:
54 driver = smtp
55 allow_localhost
56 hosts = 127.0.0.1
57 port = PORT_D
78ca7fd5 58 interface = HOSTIPV4
6f6dedcc
JH
59
60# ----- Retry -----
61
62begin retry
63
64* * F,5d,10s
65
66# End
67