update to pre-4.87 master
[exim.git] / test / confs / 0049
CommitLineData
afda344b
PH
1# Exim test configuration 0049
2
3exim_path = EXIM_PATH
4host_lookup_order = bydns
5primary_hostname = myhost.ex
afda344b
PH
6spool_directory = DIR/spool
7log_file_path = DIR/spool/log/%slog
8gecos_pattern = ""
9gecos_name = CALLER_NAME
bfe645c1 10tls_advertise_hosts =
afda344b
PH
11
12# ----- Main settings -----
13
14acl_smtp_rcpt = check_recipient
15
16
17# ------ ACL ------
18begin acl
19
20check_recipient:
21 accept hosts = :
22
23
24# ----- Routers -----
25
26begin routers
27
28localuser:
29 driver = accept
30 local_parts = userx
31 transport = local_delivery
32
33
34# ----- Transports -----
35
36begin transports
37
38local_delivery:
39 driver = appendfile
40 delivery_date_add
41 envelope_to_add
42 file = DIR/test-mail/$local_part
43 return_path_add
44 user = CALLER
45
46# End