Allow relative file names in .include lines (Closes 1971)
[exim.git] / test / confs / 2026
CommitLineData
afda344b
PH
1# Exim test configuration 2026
2
3exim_path = EXIM_PATH
4fab92fb 4keep_environment =
afda344b
PH
5host_lookup_order = bydns
6primary_hostname = myhost.test.ex
afda344b 7spool_directory = DIR/spool
9f1ec642 8.ifdef SERVER
afda344b 9log_file_path = DIR/spool/log/%slog
9f1ec642
JH
10.else
11log_file_path = DIR/spool/log/%D-%slog
12.endif
afda344b
PH
13gecos_pattern = ""
14gecos_name = CALLER_NAME
15
16# ----- Main settings -----
17
18acl_smtp_rcpt = check_rcpt
19log_selector = +tls_peerdn
20
9f1ec642 21
afda344b
PH
22tls_advertise_hosts = HOSTIPV4
23tls_certificate = DIR/aux-fixed/cert1
24tls_privatekey = DIR/aux-fixed/cert1
25
26
27# ----- ACLs -----
28
29begin acl
30
31check_rcpt:
32 accept local_parts = userx
9f1ec642 33 control = queue_only
afda344b
PH
34
35 defer local_parts = usery
36 hosts = 127.0.0.1
37
9f1ec642 38 accept control = queue_only
afda344b
PH
39
40# ----- Routers -----
41
42begin routers
43
44r0:
45 driver = accept
46 condition = ${if !eq {$sender_host_address}{}}
47 transport = t2
48
49r1:
50 driver = accept
51 transport = t1
52
53
54# ----- Transports -----
55
56begin transports
57
58t1:
59 driver = smtp
60 hosts = 127.0.0.1 : HOSTIPV4
61 port = PORT_D
62 allow_localhost
63
64t2:
65 driver = appendfile
66 file = /dev/null
67 user = CALLER
68
69# End