Get TLS SNI server-switching working with GnuTLS.
[exim.git] / test / confs / 0113
CommitLineData
afda344b
PH
1# Exim test configuration 0113
2
3exim_path = EXIM_PATH
4host_lookup_order = bydns
5rfc1413_query_timeout = 0s
6spool_directory = DIR/spool
7log_file_path = DIR/spool/log/%slog
8gecos_pattern = ""
9gecos_name = CALLER_NAME
10
11# ----- Main settings -----
12
13acl_smtp_rcpt = check_recipient
14acl_smtp_data = check_message
15
16domainlist local_domains = test.ex
17qualify_domain = test.ex
18
19
20# ----- Routers -----
21
22begin routers
23
24deliver:
25 driver = accept
26 condition = ${if eq{$original_local_part}{second}{yes}{no}}
27 retry_use_local_part
28 transport = appendfile
29
30first:
31 driver = redirect
32 no_check_local_user
33 file = DIR/aux-fixed/TESTNUM.forward
34 forbid_file
35 forbid_pipe
36 local_parts = first
37 one_time
38 retry_use_local_part
39
40second:
41 driver = redirect
42 allow_defer
43 data = ${lookup{$local_part}lsearch{DIR/aux-fixed/TESTNUM.alias}}
44 retry_use_local_part
45
46
47# ----- Transports -----
48
49begin transports
50
51appendfile:
52 driver = appendfile
53 file = DIR/test-mail/$local_part
54 user = CALLER
55
56
57# ----- Retry -----
58
59
60begin retry
61
62* * F,5d,1d
63
64
65# End