Apply Jakob Hirsch's patch for arbitrary ACL variable names, tidied up
[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 rfc1413_query_timeout = 0s
7 spool_directory = DIR/spool
8 log_file_path = DIR/spool/log/%slog
9 gecos_pattern = ""
10 gecos_name = CALLER_NAME
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
37
38 # End