Removed doc references to relay-test.mail-abuse.org
[exim.git] / test / confs / 0282
1 # Exim test configuration 0282
2
3 exim_path = EXIM_PATH
4 host_lookup_order = bydns
5 primary_hostname = myhost.test.ex
6 spool_directory = DIR/spool
7 log_file_path = DIR/spool/log/%slog
8 gecos_pattern = ""
9 gecos_name = CALLER_NAME
10 tls_advertise_hosts =
11
12 # ----- Main settings -----
13
14 acl_smtp_rcpt = accept
15 local_interfaces = <; 127.0.0.1.PORT_D ; [127.0.0.1]:PORT_D2 ; HOSTIPV4
16 log_selector = +incoming_interface+incoming_port
17 queue_only
18 queue_run_in_order
19
20 # ----- Routers -----
21
22 begin routers
23
24 all:
25 driver = accept
26 transport = local_delivery
27
28 # ----- Transports -----
29
30 begin transports
31
32 local_delivery:
33 driver = appendfile
34 file = DIR/test-mail/$local_part
35 user = CALLER
36 headers_add = interface-port: $interface_port\n\
37 received-port: $received_port
38
39 # End