Disable identd (rfc1413) lookups by default
[exim.git] / test / confs / 0266
1 # Exim test configuration 0266
2
3 exim_path = EXIM_PATH
4 host_lookup_order = bydns
5 primary_hostname = myhost.test.ex
6 spool_directory = DIR/spool
7 log_file_path = DIR/spool/log/%slog
8 gecos_pattern = ""
9 gecos_name = CALLER_NAME
10
11 # ----- Main settings -----
12
13 qualify_domain = test.ex
14 queue_run_in_order
15
16 # ----- Transports -----
17
18 begin transports
19
20 t1:
21 driver = appendfile
22 file = DIR/test-mail/$local_part
23 user = CALLER
24 envelope_to_add
25 return_path_add
26
27 # ----- Routers -----
28
29 begin routers
30
31 r1:
32 driver = redirect
33 skip_syntax_errors
34 local_parts = ^list
35 syntax_errors_to = postmaster@test.ex
36 file = DIR/aux-fixed/TESTNUM.$local_part
37
38 r1a:
39 driver = redirect
40 skip_syntax_errors
41 local_parts = ^nmlist
42 syntax_errors_to = postmaster@test.ex
43 file = DIR/aux-fixed/TESTNUM.$local_part
44 no_more
45
46 r2:
47 driver = redirect
48 skip_syntax_errors
49 local_parts = ^filter
50 syntax_errors_to = postmaster@test.ex
51 syntax_errors_text = "There's an error in your filter file.\n\
52 The file has been ignored."
53 file = DIR/aux-fixed/TESTNUM.$local_part
54 allow_filter
55 router_home_directory = DIR
56 user = CALLER
57
58 r3:
59 driver = accept
60 transport = t1
61
62 # ----- Retry -----
63
64 begin retry
65
66 * * F,5d,5m
67
68 # End