Testsuite: Explicit disabling of identd no longer needed
[exim.git] / test / confs / 2005
CommitLineData
afda344b
PH
1# Exim test configuration 2005
2
3exim_path = EXIM_PATH
4host_lookup_order = bydns
5primary_hostname = myhost.test.ex
afda344b
PH
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
14
15domainlist local_domains = test.ex
16hostlist tls_relay_hosts = 127.0.0.1
17
18queue_only
19queue_run_in_order
20
21tls_advertise_hosts = *
22
23tls_certificate = DIR/aux-fixed/cert1
24tls_privatekey = DIR/aux-fixed/cert1
25
26# ----- ACL -----
27
28begin acl
29
30check_recipient:
31 accept domains = +local_domains
32 accept hosts = +tls_relay_hosts
33 endpass
34 message = encryption required
35 encrypted = *
36 deny message = relay not permitted
37
38
39# ----- Routers -----
40
41begin routers
42
43fail_remote_domains:
44 driver = redirect
45 domains = ! +local_domains
46 data = :fail: unrouteable mail domain "$domain"
47
48abc:
49 driver = accept
50 retry_use_local_part
51 transport = local_delivery
52
53
54# ----- Transports -----
55
56begin transports
57
58local_delivery:
59 driver = appendfile
60 file = DIR/test-mail/$local_part
61 headers_add = TLS: cipher=$tls_cipher peerdn=$tls_peerdn
62 user = CALLER
63
64# End