Testsuite: Explicit disabling of identd no longer needed
[exim.git] / test / confs / 0209
1 # Exim test configuration 0209
2
3 exim_path = EXIM_PATH
4 host_lookup_order = bydns
5 spool_directory = DIR/spool
6 log_file_path = DIR/spool/log/%slog
7 gecos_pattern = ""
8 gecos_name = CALLER_NAME
9
10 # ----- Main settings -----
11
12 acl_smtp_rcpt = check_recipient
13 domainlist local_domains = test.ex
14 qualify_domain = test.ex
15 queue_run_in_order
16
17 # ----- ACL -----
18
19 begin acl
20
21 check_recipient:
22 accept hosts = :
23 accept domains = +local_domains
24 deny message = relay not permitted
25
26
27 # ----- Routers -----
28
29 begin routers
30
31 others:
32 driver = manualroute
33 domains = ! +local_domains
34 route_list = * 127.0.0.1 byname
35 self = send
36 transport = smtp
37 no_more
38
39 # ----- Transports -----
40
41 begin transports
42
43 smtp:
44 driver = smtp
45 port = PORT_S
46
47
48 # ----- Retry -----
49
50 begin retry
51
52 * * F,5d,8h
53
54
55 # End