Fix dcc_header content corruption.
[exim.git] / test / confs / 0538
1 # Exim test configuration 0538
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_mail = check_mail
15 acl_smtp_rcpt = check_rcpt
16
17
18 # ----- ACLs -----
19
20 begin acl
21
22 check_mail:
23 accept sender_domains = broken.example
24 endpass
25 verify = sender/callout
26 accept
27
28 check_rcpt:
29 accept verify = recipient/callout=use_sender
30
31
32 # ----- Routers -----
33
34 begin routers
35
36 r1:
37 driver = manualroute
38 route_list = * "<= 127.0.0.1:PORT_S"
39 self = send
40 verify_only
41
42
43 # End