Get TLS SNI server-switching working with GnuTLS.
[exim.git] / test / confs / 0518
CommitLineData
afda344b
PH
1# Exim test configuration 0518
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_rcpt = check_rcpt
15
16queue_only
17
18
19# ----- ACLs -----
20
21begin acl
22
23check_rcpt:
24 accept verify = recipient/callout
25
26
27# ----- Routers -----
28
29begin routers
30
31r1:
32 driver = accept
33 local_part_prefix = *+
34 local_part_suffix = -*
35 local_part_prefix_optional
36 local_part_suffix_optional
37 transport = ${if eq {$domain}{include}{t1}{t2}}
38
39
40# ----- Transports -----
41
42begin transports
43
44t1:
45 driver = smtp
46 hosts = 127.0.0.1
47 port = PORT_S
48 allow_localhost
49 rcpt_include_affixes
50
51t2:
52 driver = smtp
53 hosts = 127.0.0.1
54 port = PORT_S
55 allow_localhost
56
57# End