Get TLS SNI server-switching working with GnuTLS.
[exim.git] / test / confs / 0446
CommitLineData
afda344b
PH
1# Exim test configuration 0446
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
13# ----- Main settings -----
14
15qualify_domain = test.ex
16
17acl_smtp_rcpt = accept
18acl_smtp_data = smtp_data
19acl_not_smtp = not_smtp
20
21
22#----- ACL -----
23
24begin acl
25
26smtp_data:
27 warn message = X-ACL: $received_count
28 accept
29
30not_smtp:
31 warn message = X-ACL: $received_count
32 accept
33
34
35#----- Routers -----
36
37begin routers
38
39r1:
40 driver = accept
41 transport = t1
42 headers_add = X-Router: $received_count
43
44
45# ----- Transports -----
46
47begin transports
48
49t1:
50 driver = appendfile
51 file = DIR/test-mail/$local_part
52 user = CALLER
53
54# End