summaryrefslogtreecommitdiff
path: root/test/scripts/0000-Basic/0566
blob: b2c5f75b4890e7095b9a323e4f19ebc9aed1c538 (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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
# Optional MAIL FROM args processing
#
# SIZE alone
exim -bs
ehlo Testing
mail from:<x@y> SIZE=1000
rcpt to:<userx@test.ex>
quit
****
# BODY alone
exim -bs
ehlo Testing
mail from:<x@y> BODY=7BIT
rcpt to:<userx@test.ex>
quit
****
# SIZE then BODY
exim -bs
ehlo Testing
mail from:<x@y> SIZE=1000 BODY=7BIT
rcpt to:<userx@test.ex>
quit
****
# BODY then SIZE
exim -bs
ehlo Testing
mail from:<x@y> BODY=7BIT SIZE=1000
rcpt to:<userx@test.ex>
quit
****
# AUTH then BODY then SIZE
exim -bs
ehlo Testing
mail from:<x@y> AUTH=x@y BODY=7BIT SIZE=1000
rcpt to:<userx@test.ex>
quit
****
# BODY then AUTH then SIZE
exim -bs
ehlo Testing
mail from:<x@y> BODY=7BIT AUTH=x@y SIZE=1000
rcpt to:<userx@test.ex>
quit
****
# SIZE then BODY then AUTH
exim -bs
ehlo Testing
mail from:<x@y> SIZE=1000 BODY=7BIT AUTH=x@y
rcpt to:<userx@test.ex>
quit
****
# SIZE then BODY then SIZE
exim -bs
ehlo Testing
mail from:<x@y> SIZE=1000 BODY=7BIT SIZE=1200
rcpt to:<userx@test.ex>
quit
****
# (over)SIZE then BODY
exim -bs
ehlo Testing
mail from:<x@y> SIZE=40004 BODY=8BITMIME
rcpt to:<userx@test.ex>
quit
****
# BODY then (over)SIZE
exim -bs
ehlo Testing
mail from:<x@y> BODY=8BITMIME SIZE=40004
rcpt to:<userx@test.ex>
quit
****
# no BODY, data
exim -bs
ehlo Testing
mail from:<x@y>
rcpt to:<userx@test.ex>
data
Subject: test

foo
.
quit
****
sleep 1
# 7bit BODY, data
exim -bs
ehlo Testing
mail from:<x@y> BODY=7BIT
rcpt to:<userx@test.ex>
data
Subject: test

foo
.
quit
****
sleep 1
# 8bit BODY, data
exim -bs
ehlo Testing
mail from:<x@y> BODY=8BITMIME
rcpt to:<userx@test.ex>
data
Subject: test

foo
.
quit
****
sleep 1
# bad BODY, data
# should fail
1
exim -bs
ehlo Testing
mail from:<x@y> BODY=wrong
rcpt to:<userx@test.ex>
data
Subject: test

foo
.
quit
****
no_msglog_check