Get TLS SNI server-switching working with GnuTLS.
[exim.git] / test / confs / 9100
CommitLineData
afda344b
PH
1# Exim test configuration 9100
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
14domainlist local_domains = @
15hostlist relay_hosts = net-mysql;select * from them where id='$sender_host_address'
16
17acl_smtp_rcpt = check_recipient
18
1b781f48 19mysql_servers = localhost/test/root/
afda344b
PH
20
21
22# ----- ACL -----
23
24begin acl
25
26check_recipient:
27 accept domains = +local_domains
28 accept hosts = +relay_hosts
29 deny message = relay not permitted
30
31
32# ----- Routers -----
33
34begin routers
35
36r1:
37 driver = accept
38 address_data = ${lookup mysql{select name from them where id='ph10'}}
39 transport = t1
40
41
42# ----- Transports -----
43
44begin transports
45
46t1:
47 driver = appendfile
48 file = DIR/test-mail/\
49 ${lookup mysql{select id from them where id='ph10'}{$value}fail}
50 user = CALLER
51
52
53# End