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