Pull strict-aliasing fix for sockaddr_46.
[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
7host_lookup_order = bydns
8primary_hostname = myhost.test.ex
9rfc1413_query_timeout = 0s
10spool_directory = DIR/spool
11log_file_path = DIR/spool/log/%slog
12gecos_pattern = ""
13gecos_name = CALLER_NAME
14
15# ----- Main settings -----
16
17acl_smtp_connect = check_connect
18acl_smtp_helo = check_helo
19acl_smtp_rcpt = accept
20pipelining_advertise_hosts = PAH
21
22
23# ----- ACL -----
24
25begin ACL
26
27check_connect:
28 accept delay = DELAY
29
30check_helo:
31 warn condition = ${if eq {$sender_helo_name}{dis.able}{yes}{no}}
32 control = no_enforce_sync
33 accept
34
35
36# ------ Routers ------
37
38begin routers
39
40r1:
41 driver = redirect
42 data = :blackhole:
43
44# End