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