DMARC: Avoid using Resent-From: header. Bug 3029
[exim.git] / test / confs / 0950
1 # Exim test configuration 0950
2
3 SERVER=
4
5 .include DIR/aux-var/std_conf_prefix
6
7 primary_hostname = myhost.test.ex
8 log_selector = +received_recipients +smtp_connection +millisec
9
10
11 # ----- Main settings -----
12
13 acl_smtp_rcpt = accept
14
15 # ----- Routers -----
16
17 begin routers
18
19 discard:
20   driver =              redirect
21   domains =             !test.ex
22   data =                :blackhole:
23
24 client:
25   driver =              redirect
26   file =                DIR/aux-fixed/TESTNUM.sieve
27   allow_filter
28   user =                CALLER
29   file_transport =      local_file
30   errors_to =           ""
31
32 # ----- Transports -----
33
34 begin transports
35
36 local_file:
37   driver =              appendfile
38   file =                DIR/test-mail/${if eq{$address_file}{inbox} {$local_part} {$address_file}}
39   create_file =         DIR/test-mail
40   delivery_date_add
41   envelope_to_add
42   return_path_add
43
44 send_to_server:
45   driver = smtp
46   allow_localhost
47   hosts = 127.0.0.1
48   port = PORT_D
49
50 # ----- Retry -----
51
52
53 begin retry
54
55 * * F,5d,10s
56
57
58 # End