Fix CVE-2016-1531
[exim.git] / test / confs / 0491
1 # Exim test configuration 0491
2
3 UL=abc@xyz
4 REWRITE=
5
6 exim_path = EXIM_PATH
7 keep_environment =
8 host_lookup_order = bydns
9 primary_hostname = myhost.test.ex
10 spool_directory = DIR/spool
11 log_file_path = DIR/spool/log/%slog
12 gecos_pattern = ""
13 gecos_name = CALLER_NAME
14
15 # ----- Main settings -----
16
17 # When running in the test harness, this setting overrides the real login
18 # (normally it acts only if no login name can be found).
19
20 unknown_login = UL
21
22
23 # ----- Routers -----
24
25 begin routers
26
27 r1:
28   driver = accept
29   transport = t1
30
31
32 # ----- Transports -----
33
34 begin transports
35
36 t1:
37   driver = appendfile
38   file = DIR/test-mail/$local_part
39   user = CALLER
40
41
42 # ----- Rewrite -----
43
44 begin rewrite
45
46 REWRITE
47
48 # End