Add new errors mail_4xx, data_4xx, lost_connection, tls_required.
[exim.git] / test / confs / 0022
1 # Exim test configuration 0022
2
3 SERVER=
4
5 exim_path = EXIM_PATH
6 host_lookup_order = bydns
7 primary_hostname = myhost.test.ex
8 rfc1413_query_timeout = 0s
9 spool_directory = DIR/spool
10 log_file_path = DIR/spool/log/SERVER%slog
11 gecos_pattern = ""
12 gecos_name = CALLER_NAME
13
14 # ----- Main settings -----
15
16 hostlist some_hosts = net-lsearch;DIR/aux-var/TESTNUM.hosts
17
18 acl_smtp_rcpt = $local_part
19 log_selector = +smtp_connection
20 hosts_connection_nolog = : 127.0.0.1
21 qualify_domain = test.ex
22
23
24 # ----- ACLs -----
25
26 begin acl
27
28 accept:
29 accept
30
31 # Check "warn" with and without messages
32
33 warn_empty:
34 warn
35 accept
36
37 warn_log:
38 warn log_message = warn log message
39 accept
40
41 warn_user:
42 warn message = warn user message
43 accept
44
45 drop:
46 drop message = forcibly dropped
47
48 nested_drop:
49 accept endpass
50 acl = drop
51
52 nested_drop_require:
53 require acl = drop
54
55 defer:
56 defer message = forcibly deferred
57
58 defer_senders:
59 defer senders = :
60
61 delay_accept:
62 accept delay = 1s
63
64 delay_warn:
65 warn delay = 1s
66 accept
67
68 freeze:
69 accept control = freeze
70
71 queue_only:
72 accept control = queue_only
73
74 host_check:
75 deny hosts = net-lsearch;DIR/aux-var/TESTNUM.hosts
76 message = host data >$host_data<
77
78 host_check2:
79 deny message = host data >$host_data<
80 hosts = +some_hosts
81
82
83 # ----- Routers -----
84
85 begin routers
86
87 accept:
88 driver = accept
89 transport = appendfile
90
91 # ----- Transports -----
92
93 begin transports
94
95 appendfile:
96 driver = appendfile
97 file = DIR/test-mail/$local_part
98 user = CALLER
99
100 # End