813143149fb5ab4604ec9580845eb658973cb6a9
[exim.git] / test / confs / 0301
1 # Exim test configuration 0301
2
3 exim_path = EXIM_PATH
4 host_lookup_order = bydns
5 primary_hostname = myhost.test.ex
6 spool_directory = DIR/spool
7 log_file_path = DIR/spool/log/%slog
8 gecos_pattern = ""
9 gecos_name = CALLER_NAME
10
11 # ----- Main settings -----
12
13 acl_smtp_helo = check_helo
14 acl_smtp_rcpt = accept
15 smtp_enforce_sync = no
16 queue_only
17
18
19 # ----- ACL -----
20
21 begin ACL
22
23 check_helo:
24   warn     condition = ${if eq {$sender_helo_name}{en.force}{yes}{no}}
25            control = enforce_sync
26   accept
27
28
29 # End