imap continuations must have a space after the "+"

prevented at least the gmail/mail (?) android app from appending a sent message
to the sent mailbox.
This commit is contained in:
Mechiel Lukkien
2023-07-24 19:54:55 +02:00
parent bc62aae0e6
commit cc4ecf2927
4 changed files with 5 additions and 5 deletions

View File

@ -54,7 +54,7 @@ func TestAuthenticatePlain(t *testing.T) {
tc.readstatus("bad")
tc.cmdf("", "authenticate plain")
tc.readprefixline("+")
tc.readprefixline("+ ")
tc.writelinef("%s", base64.StdEncoding.EncodeToString([]byte("\u0000mjl@mox.example\u0000testtest")))
tc.readstatus("ok")
}