Add new errors mail_4xx, data_4xx, lost_connection, tls_required.
[exim.git] / test / confs / 0072
CommitLineData
afda344b
PH
1# Exim test configuration 0072
2
3ONCE=once=DIR/spool/autolog
4ONLY=
5RETURN=
6
7exim_path = EXIM_PATH
8host_lookup_order = bydns
9rfc1413_query_timeout = 0s
10spool_directory = DIR/spool
11log_file_path = DIR/spool/log/%slog
12gecos_pattern = ""
13gecos_name = CALLER_NAME
14
15# ----- Main settings -----
16
17qualify_domain = test.ex
18
19
20# ----- Routers -----
21
22begin routers
23
24filter:
25 driver = redirect
26 local_parts = userx-filter
27 allow_filter
28 data = #Exim filter\n seen mail text "This is an autoreply."
29 user = EXIMUSER
30
31
32reply:
33 driver = accept
34 retry_use_local_part
35 senders = !
36 transport = reply
37
38localuser:
39 driver = accept
40 check_local_user
41 transport = local_delivery
42
43
44# ----- Transports -----
45
46begin transports
47
48reply:
49 driver = autoreply
50 text = "Test auto reply to ${escape:$h_subject:}"
51 to = $reply_address
52 user = EXIMUSER
53 ONCE
54 RETURN
55 ONLY
56
57local_delivery:
58 driver = appendfile
59 delivery_date_add
60 envelope_to_add
61 file = DIR/test-mail/$local_part
62 return_path_add
63
64
65# End