Docs: clarify helo_allow_chars option
[exim.git] / test / confs / 0241
1 # Exim test configuration 0241
2
3 exim_path = EXIM_PATH/junk
4 keep_environment =
5 host_lookup_order = bydns
6 spool_directory = DIR/spool
7 log_file_path = DIR/spool/log/%slog
8 gecos_pattern = ""
9 gecos_name = CALLER_NAME
10 tls_advertise_hosts =
11
12 .ifdef _HAVE_DMARC
13 dmarc_tld_file =
14 .endif
15
16 # ----- Main settings -----
17
18 qualify_domain = test.ex
19
20 system_filter = DIR/aux-fixed/TESTNUM.filter
21 system_filter_reply_transport = address_reply
22
23
24 # ----- Routers -----
25
26 begin routers
27
28 all:
29   driver = accept
30   retry_use_local_part
31   transport = local
32
33
34 # ----- Transports -----
35
36 begin transports
37
38 local:
39   driver = appendfile
40   file = DIR/test-mail/$local_part
41   create_file = DIR/test-mail
42   user = CALLER
43
44 address_reply:
45   driver = autoreply
46   user = EXIMUSER
47
48
49 # ----- Retry -----
50
51
52 begin retry
53
54 * * F,5d,1d
55
56
57 # End