mirror of
https://github.com/moparisthebest/davmail
synced 2025-01-12 22:18:11 -05:00
IMAP: only send partial if startIndex>0 for Outlook
git-svn-id: http://svn.code.sf.net/p/davmail/code/trunk@431 3d1905a2-6b24-0410-a738-b14d5a86fcbd
This commit is contained in:
parent
1a6294a690
commit
4193ae3fa5
@ -503,7 +503,7 @@ public class ImapConnection extends AbstractConnection {
|
|||||||
}
|
}
|
||||||
buffer.append(" RFC822.SIZE ").append(rfc822size).append(" ").append("BODY[]");
|
buffer.append(" RFC822.SIZE ").append(rfc822size).append(" ").append("BODY[]");
|
||||||
// partial
|
// partial
|
||||||
if (ltIndex >= 0) {
|
if (startIndex > 0) {
|
||||||
buffer.append('<').append(startIndex).append('>');
|
buffer.append('<').append(startIndex).append('>');
|
||||||
}
|
}
|
||||||
buffer.append(" {").append(baos.size()).append("}");
|
buffer.append(" {").append(baos.size()).append("}");
|
||||||
|
Loading…
Reference in New Issue
Block a user