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