3250331b1fb953c25907d0799882a7ff764e127d
[exim.git] / test / confs / 0216
1 # Exim test configuration 0216
2
3 SERVER=
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/SERVER%slog
10 gecos_pattern = ""
11 gecos_name = CALLER_NAME
12
13
14 # ----- Main settings -----
15
16 acl_smtp_rcpt = accept
17 queue_only
18 queue_run_in_order
19
20
21 # ----- Routers -----
22
23 begin routers
24
25 client:
26   driver = accept
27   condition = ${if eq {SERVER}{server}{no}{yes}}
28   retry_use_local_part
29   transport = send_to_server
30
31
32 # ----- Transports -----
33
34 begin transports
35
36 send_to_server:
37   driver = smtp
38   allow_localhost
39   hosts = 127.0.0.1
40   port = PORT_D
41   max_rcpt = 0
42
43
44 # ----- Retry -----
45
46
47 begin retry
48
49 * * F,5d,10s
50
51
52 # End