Testsuite: Explicit disabling of identd no longer needed
[exim.git] / test / confs / 0251
CommitLineData
afda344b
PH
1# Exim test configuration 0251
2
3SERVER =
4
5exim_path = EXIM_PATH
6host_lookup_order = bydns
7primary_hostname = myhost.test.ex
afda344b
PH
8spool_directory = DIR/spool
9log_file_path = DIR/spool/log/SERVER%slog
10gecos_pattern = ""
11gecos_name = CALLER_NAME
12
13# ----- Main settings -----
14
15acl_smtp_rcpt = check_recipient
16
17domainlist local_domains = test.ex : *.test.ex
18
19# ----- ACL -----
20
21begin acl
22
23check_recipient:
24 deny message = unrouteable address
25 !verify = recipient
26 accept domains = +local_domains
27 deny message = relay not permitted
28
29
30# ----- Routers -----
31
32begin routers
33
34exeter_listr:
35 driver = redirect
36 no_check_local_user
37 domains = listr.test.ex
38 errors_to = ${local_part}-request@test.ex
39 file = DIR/aux-fixed/TESTNUM.list.${local_part}
40 forbid_file
41 forbid_pipe
42 one_time
43 require_files = DIR/aux-fixed/TESTNUM.restrict.${local_part}
44 retry_use_local_part
45 senders = ${if exists{DIR/aux-fixed/TESTNUM.restrict.${local_part}} \
46 {DIR/aux-fixed/TESTNUM.restrict.${local_part}}{zzzz}}
47 syntax_errors_to = ${local_part}-request@test.ex
48
49exeter_listf:
50 driver = accept
51 domains = listr.test.ex
52 no_more
53 retry_use_local_part
54 transport = not_allowed
55
56
57# ----- Transports -----
58
59begin transports
60
61not_allowed:
62 driver = autoreply
63
64
65# ----- Retry -----
66
67
68begin retry
69
70* * F,5d,10s
71
72
73# End