summaryrefslogtreecommitdiff
path: root/test/scripts/0000-Basic/0211
blob: f8750d2e84e55413e62c06b111faa57457d67a36 (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
# SMTP connection & EHLO/HELO error responses (+log_sender_on_delivery)
need_ipv4
munge optional_dsn_info
#
exim -z "Test: temp-rej connect"
****
server PORT_S
450 I'm busy
QUIT
250 OK
****
exim -odi userx@domain1
Test message 1
****
#
exim -z "Test: temp-rej helo"
****
server PORT_S
220 Connected OK
EHLO
450 I'm busy
HELO
450 I'm busy
QUIT
250 OK
****
exim -qf
****
#
exim -z "Test: drop conn after banner"
****
server PORT_S
220 Connected OK
****
exim -qf
****
#
exim -z "Test: reject connect"
****
server PORT_S
550 Go away
QUIT
250 OK
****
exim -qf
****
#
exim -z "Test: reject helo"
****
server PORT_S
220 Connected OK
EHLO
550 Go away
HELO
550 Go away
QUIT
250 OK
****
exim -odi userx@domain1 usery@domain2
Test message 2
****