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
|
### LOGIN/userx/secret
220 myhost.test.ex ESMTP Exim x.yz Tue, 2 Mar 1999 09:44:33 +0000
250-myhost.test.ex Hello CALLER at test.host [10.0.0.1]
250-SIZE 52428800
250-8BITMIME
250-PIPELINING
250-AUTH LOGIN
250 HELP
334 VXNlcm5hbWU6
334 UGFzc3dvcmQ6
235 Authentication succeeded
250 OK
250 Accepted
354 Enter message, ending with "." on a line by itself
250 OK id=10HmaX-000000005vi-0000
221 myhost.test.ex closing connection
### ditto, on two lines from client rather than three; fails
### (not legit; the username & passwd should be suplied separately in response to prompts)
220 myhost.test.ex ESMTP Exim x.yz Tue, 2 Mar 1999 09:44:33 +0000
250-myhost.test.ex Hello CALLER at test.host [10.0.0.1]
250-SIZE 52428800
250-8BITMIME
250-PIPELINING
250-AUTH LOGIN
250 HELP
334 VXNlcm5hbWU6
535 Incorrect authentication data
221 myhost.test.ex closing connection
### ditto, on one line; fails
220 myhost.test.ex ESMTP Exim x.yz Tue, 2 Mar 1999 09:44:33 +0000
250-myhost.test.ex Hello CALLER at test.host [10.0.0.1]
250-SIZE 52428800
250-8BITMIME
250-PIPELINING
250-AUTH LOGIN
250 HELP
535 Incorrect authentication data
221 myhost.test.ex closing connection
### ditto, a different split of two lines; passes (though not strictly within spec)
220 myhost.test.ex ESMTP Exim x.yz Tue, 2 Mar 1999 09:44:33 +0000
250-myhost.test.ex Hello CALLER at test.host [10.0.0.1]
250-SIZE 52428800
250-8BITMIME
250-PIPELINING
250-AUTH LOGIN
250 HELP
334 UGFzc3dvcmQ6
235 Authentication succeeded
221 myhost.test.ex closing connection
### LOGIN - cancelled part-way through (returns a fail)
220 myhost.test.ex ESMTP Exim x.yz Tue, 2 Mar 1999 09:44:33 +0000
250-myhost.test.ex Hello CALLER at test.host [10.0.0.1]
250-SIZE 52428800
250-8BITMIME
250-PIPELINING
250-AUTH LOGIN
250 HELP
334 VXNlcm5hbWU6
334 UGFzc3dvcmQ6
501 Authentication cancelled
221 myhost.test.ex closing connection
### LOGIN (empty username; bad auth) should fail
220 myhost.test.ex ESMTP Exim x.yz Tue, 2 Mar 1999 09:44:33 +0000
250-myhost.test.ex Hello CALLER at test.host [10.0.0.1]
250-SIZE 52428800
250-8BITMIME
250-PIPELINING
250-AUTH LOGIN
250 HELP
334 VXNlcm5hbWU6
535 Incorrect authentication data
500 unrecognized command
221 myhost.test.ex closing connection
### LOGIN (bad username; bad auth) should fail
220 myhost.test.ex ESMTP Exim x.yz Tue, 2 Mar 1999 09:44:33 +0000
250-myhost.test.ex Hello CALLER at test.host [10.0.0.1]
250-SIZE 52428800
250-8BITMIME
250-PIPELINING
250-AUTH LOGIN
250 HELP
334 VXNlcm5hbWU6
535 Incorrect authentication data
500 unrecognized command
221 myhost.test.ex closing connection
### Shut down dovecot
******** SERVER ********
### LOGIN/userx/secret
### ditto, on two lines from client rather than three; fails
### (not legit; the username & passwd should be suplied separately in response to prompts)
### ditto, on one line; fails
### ditto, a different split of two lines; passes (though not strictly within spec)
### LOGIN - cancelled part-way through (returns a fail)
### LOGIN (empty username; bad auth) should fail
### LOGIN (bad username; bad auth) should fail
### Shut down dovecot
|