Add new errors mail_4xx, data_4xx, lost_connection, tls_required.
[exim.git] / test / confs / 0217
1 # Exim test configuration 0217
2
3 exim_path = EXIM_PATH
4 host_lookup_order = bydns
5 primary_hostname = myhost.test.ex
6 rfc1413_query_timeout = 0s
7 spool_directory = DIR/spool
8 log_file_path = DIR/spool/log/%slog
9 gecos_pattern = ""
10 gecos_name = CALLER_NAME
11
12 # ----- Main settings -----
13
14 qualify_domain = test.ex
15 ignore_bounce_errors_after = 0s
16
17
18 # ----- Routers -----
19
20 begin routers
21
22 bounce:
23 driver = redirect
24 allow_defer
25 allow_fail
26 data = :fail: just discard
27 retry_use_local_part
28 senders = :
29
30 client:
31 driver = accept
32 retry_use_local_part
33 transport = send_to_server
34
35
36 # ----- Transports -----
37
38 begin transports
39
40 send_to_server:
41 driver = smtp
42 allow_localhost
43 command_timeout = 1s
44 hosts = 127.0.0.1
45 port = PORT_S
46
47
48 # ----- Retry -----
49
50
51 begin retry
52
53 * * F,5d,10s
54
55
56 # End