Testsuite: Explicit disabling of identd no longer needed
[exim.git] / test / confs / 0026
CommitLineData
afda344b
PH
1# Exim test configuration 0026
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
14
15acl_smtp_rcpt = accept
16acl_smtp_data = acl_data
17
18trusted_users = CALLER
19
20# ------ ACLs ------
21
22begin acl
23
24acl_data:
25 deny log_message = body contains trigger
26 condition = ${if match{$message_body}{trigger}{yes}{no}}
27 require verify = header_syntax
28 warn message = X-warning: this is a test warning
29 accept senders = ! :
30 accept verify = header_sender
31
32
33# ------ Routers ------
34
35begin routers
36
37r1:
38 driver = dnslookup
39 domains = ! +local_domains
40 transport = dev_null
41 no_more
42
43r2:
44 driver = accept
45 local_parts = userx : postmaster
46 transport = local_delivery
47
48
49# ------ Transports ------
50
51begin transports
52
53dev_null:
54 driver = appendfile
55 file = /dev/null
56 user = CALLER
57
58local_delivery:
59 driver = appendfile
60 file = DIR/test-mail/$local_part
61 user = CALLER
62
63# End