summaryrefslogtreecommitdiff
path: root/test/confs/2026
blob: 270a0682c8a64ab0026fcacffeba645d5b6ce1a4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
# Exim test configuration 2026

exim_path = EXIM_PATH
keep_environment =
host_lookup_order = bydns
primary_hostname = myhost.test.ex
spool_directory = DIR/spool
.ifdef SERVER
log_file_path = DIR/spool/log/%slog
.else
log_file_path = DIR/spool/log/%D-%slog
.endif
gecos_pattern = ""
gecos_name = CALLER_NAME

.ifdef _HAVE_DMARC
dmarc_tld_file =
.endif

# ----- Main settings -----

acl_smtp_rcpt = check_rcpt
log_selector = +tls_peerdn


tls_advertise_hosts = HOSTIPV4
tls_certificate = DIR/aux-fixed/cert1
tls_privatekey = DIR/aux-fixed/cert1


# ----- ACLs -----

begin acl

check_rcpt:
  accept  local_parts = userx
          control = queue_only

  defer   local_parts = usery
          hosts       = 127.0.0.1

  accept  control = queue_only

# ----- Routers -----

begin routers

r0:
  driver = accept
  condition = ${if !eq {$sender_host_address}{}}
  transport = t2

r1:
  driver = accept
  transport = t1


# ----- Transports -----

begin transports

t1:
  driver = smtp
  hosts = 127.0.0.1 : HOSTIPV4
  port = PORT_D
  hosts_try_fastopen =	:
  allow_localhost

t2:
  driver = appendfile
  file = /dev/null
  user = CALLER

# End