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