Testsuite: Explicit disabling of identd no longer needed
[exim.git] / test / confs / 0446
CommitLineData
afda344b
PH
1# Exim test configuration 0446
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
12# ----- Main settings -----
13
14qualify_domain = test.ex
15
16acl_smtp_rcpt = accept
17acl_smtp_data = smtp_data
18acl_not_smtp = not_smtp
19
20
21#----- ACL -----
22
23begin acl
24
25smtp_data:
26 warn message = X-ACL: $received_count
27 accept
28
29not_smtp:
30 warn message = X-ACL: $received_count
31 accept
32
33
34#----- Routers -----
35
36begin routers
37
38r1:
39 driver = accept
40 transport = t1
41 headers_add = X-Router: $received_count
42
43
44# ----- Transports -----
45
46begin transports
47
48t1:
49 driver = appendfile
50 file = DIR/test-mail/$local_part
51 user = CALLER
52
53# End