Fix CVE-2016-1531
[exim.git] / test / confs / 0473
1 # Exim test configuration 0473
2
3 USE_SENDER = ,use_sender
4 ACL_RCPT = acl_rcpt
5
6 exim_path = EXIM_PATH
7 keep_environment =
8 host_lookup_order = bydns
9 spool_directory = DIR/spool
10 log_file_path = DIR/spool/log/%slog
11 gecos_pattern = ""
12 gecos_name = CALLER_NAME
13 tls_advertise_hosts =
14
15 # ----- Main settings -----
16
17 acl_smtp_rcpt = ACL_RCPT
18 callout_random_local_part = $primary_hostname--testing
19 trusted_users = CALLER
20
21
22 # ----- ACL -----
23
24 begin acl
25
26 acl_rcpt:
27   accept   verify  = recipient/callout=1sUSE_SENDER
28
29 acl_rcpt_sender:
30   accept   verify  = sender/callout=1s,connect=2s
31
32
33 # ----- Routers -----
34
35 begin routers
36
37 callout:
38   driver = manualroute
39   transport = smtp
40   route_data = 127.0.0.1
41   self = send
42
43
44 # ----- Transports -----
45
46 begin transports
47
48 smtp:
49   driver = smtp
50   port = PORT_S
51
52 # End