Cutthrough: expand transport dkim_domain option when testing for dkim signing
[exim.git] / test / confs / 0300
CommitLineData
afda344b
PH
1# Exim test configuration 0300
2
3DELAY=0s
4PAH=127.0.0.1
5
6exim_path = EXIM_PATH
bc3c7bb7 7keep_environment =
afda344b
PH
8host_lookup_order = bydns
9primary_hostname = myhost.test.ex
afda344b
PH
10spool_directory = DIR/spool
11log_file_path = DIR/spool/log/%slog
12gecos_pattern = ""
13gecos_name = CALLER_NAME
23f3dc67 14tls_advertise_hosts =
afda344b
PH
15
16# ----- Main settings -----
17
18acl_smtp_connect = check_connect
19acl_smtp_helo = check_helo
20acl_smtp_rcpt = accept
21pipelining_advertise_hosts = PAH
22
23
24# ----- ACL -----
25
26begin ACL
27
28check_connect:
29 accept delay = DELAY
30
31check_helo:
32 warn condition = ${if eq {$sender_helo_name}{dis.able}{yes}{no}}
33 control = no_enforce_sync
34 accept
35
36
37# ------ Routers ------
38
39begin routers
40
41r1:
42 driver = redirect
43 data = :blackhole:
44
45# End