Merge branch 'multiqueue_336': Named queues
[exim.git] / test / confs / 0432
CommitLineData
afda344b
PH
1# Exim test configuration 0432
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
12
13# ----- Main settings -----
14
15# This isn't relevant - it's just here to test that -odi
16# can override it.
17
18acl_smtp_mail = mail
19
20
21# ----- ACLs -----
22
23begin acl
24
25mail:
26 accept verify = sender/callout=1s,maxwait=1s
27
28
29# ----- Routers -----
30
31begin routers
32
33r1:
34 driver = accept
35 transport = t1
36
37
38# ----- Transports -----
39
40begin transports
41
42t1:
43 driver = smtp
44 hosts = <; 127.0.0.1 ;
45 port = PORT_S
46 allow_localhost
47
48# End