Testsuite: Explicit disabling of identd no longer needed
[exim.git] / test / confs / 0447
1 # Exim test configuration 0447
2
3 INSERT=
4
5 exim_path = EXIM_PATH
6 host_lookup_order = bydns
7 primary_hostname = myhost.test.ex
8 spool_directory = DIR/spool
9 log_file_path = DIR/spool/log/%slog
10 gecos_pattern = ""
11 gecos_name = CALLER_NAME
12
13
14 # ----- Main settings -----
15
16 qualify_domain = test.ex
17
18 #----- Routers -----
19
20 begin routers
21
22 r0:
23 driver = dnslookup
24 domains = *.test.again.dns
25 transport = t1
26
27 r1:
28 driver = accept
29 transport = t1
30
31
32 # ----- Transports -----
33
34 begin transports
35
36 # A connection timeout of 999999 turns connection refused into connection
37 # timeout when running in the test harness.
38
39 t1:
40 driver = smtp
41 hosts = 127.0.0.1
42 port = PORT_S
43 allow_localhost
44 connect_timeout = 999999s
45
46
47 # ----- Retry -----
48
49 begin retry
50
51 INSERT
52 #* timeout_dns F,1d,13s
53 * timeout_connect F,1d,1m
54 * timeout F,1d,2m
55 * auth_failed F,1d,10m
56 * * F,1d,3m
57
58
59 # End