Disable identd (rfc1413) lookups by default
[exim.git] / test / confs / 0374
CommitLineData
afda344b
PH
1# Exim test configuration 0374
2
3exim_path = EXIM_PATH
4host_lookup_order = bydns
5primary_hostname = myhost.test.ex
afda344b
PH
6spool_directory = DIR/spool
7log_file_path = DIR/spool/log/%slog
8gecos_pattern = ""
9gecos_name = CALLER_NAME
10
11# ----- Main settings -----
12
13domainlist local_domains = test.ex : *.test.ex
14remote_max_parallel = 1
15
16
17# ----- Routers -----
18
19begin routers
20
21u1:
22 driver = accept
23 local_parts = ^a\\d
24 transport = ut1
25 unseen
26
27ut2:
28 driver = accept
29 local_parts = ^b\\d
30 transport = ut2
31 unseen
32
33ut3:
34 driver = accept
35 local_parts = ^c\\d
36 transport = ut3
37 unseen
38
39ut4:
40 driver = accept
41 local_parts = ^d\\d
42 transport = ut4
43 unseen
44
45real:
46 driver = accept
47 transport = real
48
49
50# ----- Transports -----
51
52begin transports
53
54# Successful local transport
55ut1:
56 driver = appendfile
57 file = DIR/test-mail/$local_part-u
58 user = CALLER
59 return_path_add
60 envelope_to_add
61
62# Hard unsuccessful local transport
63
64ut2:
65 driver = pipe
66 command = /non/existent/file
67 user = CALLER
68
69# Soft unsuccessful local transport
70
71ut3:
72 driver = pipe
73 command = /non/existent/file
74 temp_errors = *
75 user = CALLER
76
77# Remote transport - all types
78
79ut4:
80 driver = smtp
81 hosts = 127.0.0.1
82 port = PORT_S
83 allow_localhost
84 max_rcpt = 1
85
86# Real delivery
87real:
88 driver = appendfile
89 file = DIR/test-mail/$local_part
90 user = CALLER
91 return_path_add
92 envelope_to_add
93
94
95# ----- Retry -----
96
97
98begin retry
99
100* * F,5d,1d
101
102
103# End