Testsuite: Explicit disabling of identd no longer needed
[exim.git] / test / confs / 0051
CommitLineData
afda344b
PH
1# Exim test configuration 0051
2
3exim_path = EXIM_PATH
4host_lookup_order = bydns
5primary_hostname = myhost.ex
afda344b
PH
6spool_directory = DIR/spool
7log_file_path = DIR/spool/log/%slog
8gecos_pattern = ""
9gecos_name = CALLER_NAME
10trusted_users = CALLER
11
12# ----- Main settings -----
13
14domainlist local_domains = test.ex : \
15 myhost.ex : \
16 bad.ex : \
17 DIR/aux-fixed/TESTNUM.domains : \
18 lsearch;DIR/aux-fixed/TESTNUM.notdomains
19
20
21# ----- Routers -----
22
23begin routers
24
25fail_remote_domains:
26 driver = redirect
27 domains = ! +local_domains
28 allow_fail
29 data = :fail: unrouteable mail domain "$domain" (:fail:)
30
31localuser:
32 driver = accept
33 local_parts = userx : CALLER
34 domains = test.ex : DIR/aux-fixed/TESTNUM.domains :\
35 !lsearch;DIR/aux-fixed/TESTNUM.notdomains : !bad.ex
36 transport = local_delivery
37
38
39# ----- Transports -----
40
41begin transports
42
43local_delivery:
44 driver = appendfile
45 delivery_date_add
46 envelope_to_add
47 file = DIR/test-mail/$local_part
48 return_path_add
49 user = CALLER
50
51# End