Get TLS SNI server-switching working with GnuTLS.
[exim.git] / test / confs / 0491
CommitLineData
afda344b
PH
1# Exim test configuration 0491
2
3UL=abc@xyz
4REWRITE=
5
6exim_path = EXIM_PATH
7host_lookup_order = bydns
8primary_hostname = myhost.test.ex
9rfc1413_query_timeout = 0s
10spool_directory = DIR/spool
11log_file_path = DIR/spool/log/%slog
12gecos_pattern = ""
13gecos_name = CALLER_NAME
14
15# ----- Main settings -----
16
17# When running in the test harness, this setting overrides the real login
18# (normally it acts only if no login name can be found).
19
20unknown_login = UL
21
22
23# ----- Routers -----
24
25begin routers
26
27r1:
28 driver = accept
29 transport = t1
30
31
32# ----- Transports -----
33
34begin transports
35
36t1:
37 driver = appendfile
38 file = DIR/test-mail/$local_part
39 user = CALLER
40
41
42# ----- Rewrite -----
43
44begin rewrite
45
46REWRITE
47
48# End