Get TLS SNI server-switching working with GnuTLS.
[exim.git] / test / confs / 0310
CommitLineData
afda344b
PH
1# Exim test configuration 0310
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
14no_bounce_return_message
15
16# ----- Routers -----
17
18begin routers
19
20bounce:
21 driver = accept
22 senders = :
23 transport = bounce
24
25all:
26 driver = accept
27 transport = local_delivery
28
29
30# ----- Transports -----
31
32begin transports
33
34local_delivery:
35 driver = appendfile
36 file = DIR/test-mail/$local_part
37 quota = 5
38 user = CALLER
39
40bounce:
41 driver = appendfile
42 file = DIR/test-mail/$local_part
43 user = CALLER
44
45
46# End