Dovecot test needs renumbering (shouldn't be run automatically).
[exim.git] / test / confs / 0293
1 # Exim test configuration 0293
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 trusted_users = CALLER
12
13 # ----- Main settings -----
14
15 acl_smtp_rcpt = accept
16 smtp_accept_queue_per_connection = 1
17 smtp_accept_max_per_connection = 2
18 no_write_rejectlog
19
20
21 # ------ Routers ------
22
23 begin routers
24
25 r1:
26 driver = accept
27 transport = t1
28
29
30 # ------ Transports ------
31
32 begin transports
33
34 t1:
35 driver = appendfile
36 file = /dev/null
37 user = CALLER
38
39 # End