Add References: support to autoreply.
[exim.git] / test / confs / 0215
CommitLineData
afda344b
PH
1# Exim test configuration 0215
2
3IGNORE_QUOTA=false
4
5exim_path = EXIM_PATH
6host_lookup_order = bydns
7primary_hostname = myhost.test.ex
8rfc1413_query_timeout = 0s
9spool_directory = DIR/spool
10log_file_path = DIR/spool/log/%slog
11gecos_pattern = ""
12gecos_name = CALLER_NAME
13
14# ----- Main settings -----
15
16domainlist local_domains = test.ex : *.test.ex
17log_selector = +sender_on_delivery
18
19
20# ----- Routers -----
21
22begin routers
23
24bounces:
25 driver = redirect
26 allow_defer
27 data = :blackhole:
28 retry_use_local_part
29 senders = :
30
31smartuser:
32 driver = accept
33 retry_use_local_part
34 transport = lmtp
35
36
37# ----- Transports -----
38
39begin transports
40
41lmtp:
42 driver = smtp
43 allow_localhost
44 hosts = 127.0.0.1
45 port = PORT_S
46 protocol = LMTP
47 lmtp_ignore_quota = IGNORE_QUOTA
48
49
50# ----- Retry -----
51
52
53begin retry
54
55* * F,5d,1d
56
57
58# End