summaryrefslogtreecommitdiff
path: root/test/confs/0552
blob: 153185561f8cf64803472aba8af1ca652c00b969 (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
59
60
61
62
# Exim test configuration 0552

DDF=
SERVER=

.include DIR/aux-var/std_conf_prefix

primary_hostname = myhost.test.ex

# ----- Main settings -----

acl_not_smtp = check_not
acl_smtp_connect = check_connect
acl_smtp_rcpt = check_rcpt

queue_only

# ----- ACL -----

begin ACL

check_connect:
  accept DDF

check_rcpt:
  accept delay = 1s

check_not:
  accept delay = 1s
         logwrite = Accept non-SMTP


# ----- Routers -----

begin routers

r1:
  driver = accept
  transport = t1


# ----- Transports -----

begin transports

t1:
  driver = smtp
  port = PORT_D
  hosts_try_fastopen = :
  hosts = 127.0.0.1
  allow_localhost
  command_timeout = 2s


# ----- Retry -----

begin retry

* * F,1d,1s


# End