Log deferred deliveries for transport max_parallel
[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
17
18# ----- Main settings -----
19
1ad6489e
JH
20OPT = 2s
21smtp_receive_timeout = OPT
afda344b
PH
22receive_timeout = 2s
23
24
25begin acl
26
27check_recipient:
28 accept hosts = :
29 deny message = unrouteable address
30 recipients = verify@test.ex
31 !verify = recipient
32 accept domains = +local_domains
33 accept domains = +relay_domains
34 deny message = relay not permitted
35
36check_message:
37 accept
38
39
40# ----- Rewrite -----
41
42# End
43
44
45
46
47# ----- Routers -----
48
49begin routers
50
51fail_remote_domains:
52 driver = redirect
53 domains = ! +local_domains
54 data = :fail: unrouteable mail domain "$domain"
55
56# ----- Directors -----
57
58forward:
59 driver = redirect
60 file = DIR/aux-fixed/non-exist
61 retry_use_local_part
62
63# End