update to pre-4.87 master
[exim.git] / test / confs / 0092
CommitLineData
37ff4e03
TL
1# Exim test configuration 0092
2
afda344b
PH
3acl_smtp_rcpt = check_recipient
4acl_smtp_data = check_message
5
6domainlist local_domains = test.ex : *.test.ex
7
8domainlist relay_domains = test.ex
9
afda344b
PH
10exim_path = EXIM_PATH
11host_lookup_order = bydns
12primary_hostname = myhost.test.ex
afda344b
PH
13spool_directory = DIR/spool
14log_file_path = DIR/spool/log/%slog
15gecos_pattern = ""
16gecos_name = CALLER_NAME
bfe645c1 17tls_advertise_hosts =
afda344b
PH
18
19# ----- Main settings -----
20
a466d09b
JH
21OPT = 2s
22smtp_receive_timeout = OPT
afda344b
PH
23receive_timeout = 2s
24
25
26begin acl
27
28check_recipient:
29 accept hosts = :
30 deny message = unrouteable address
31 recipients = verify@test.ex
32 !verify = recipient
33 accept domains = +local_domains
34 accept domains = +relay_domains
35 deny message = relay not permitted
36
37check_message:
38 accept
39
40
41# ----- Rewrite -----
42
43# End
44
45
46
47
48# ----- Routers -----
49
50begin routers
51
52fail_remote_domains:
53 driver = redirect
54 domains = ! +local_domains
55 data = :fail: unrouteable mail domain "$domain"
56
57# ----- Directors -----
58
59forward:
60 driver = redirect
61 file = DIR/aux-fixed/non-exist
62 retry_use_local_part
63
64# End