Testsuite: Explicit disabling of identd no longer needed
[exim.git] / test / confs / 0324
CommitLineData
afda344b
PH
1# Exim test configuration 0324
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
13
14# ----- Routers -----
15
16begin routers
17
18r1:
19 driver = accept
20 transport = t1
21 headers_add = X-match: ${if match{$message_headers}{final}{YES}{NO}}\n\
22 Y-match: ${if match{$h_X-Long:}{final}{YES}{NO}}\n\
23 Z-match: ${if match{$h_X-LONG:}{another}{YES}{NO}}
24
25
26# ----- Transports -----
27
28begin transports
29
30t1:
31 driver = appendfile
32 file = DIR/test-mail/$local_part
33 user = CALLER
34
35# End