BUGFIX: forced-fail smtp option tls_sni would dereference NULL
[exim.git] / test / confs / 0538
CommitLineData
2b1c6e3a
PH
1# Exim test configuration 0538
2
3exim_path = EXIM_PATH
4host_lookup_order = bydns
5primary_hostname = myhost.test.ex
6rfc1413_query_timeout = 0s
7spool_directory = DIR/spool
8log_file_path = DIR/spool/log/%slog
9gecos_pattern = ""
10gecos_name = CALLER_NAME
11
12# ----- Main settings -----
13
14acl_smtp_mail = check_mail
15acl_smtp_rcpt = check_rcpt
16
17
18# ----- ACLs -----
19
20begin acl
21
22check_mail:
23 accept sender_domains = broken.example
24 endpass
25 verify = sender/callout
26 accept
27
28check_rcpt:
29 accept verify = recipient/callout=use_sender
30
31
32# ----- Routers -----
33
34begin routers
35
36r1:
37 driver = manualroute
38 route_list = * "<= 127.0.0.1:PORT_S"
39 self = send
40 verify_only
193e3acd
JH
41 transport = t1
42
43
44begin transports
45
46t1:
47 driver = smtp
2b1c6e3a
PH
48
49
50# End