git clone of logicmail with some fixes/features added
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Added null check to reduce errors

git-svn-id: https://logicmail.svn.sourceforge.net/svnroot/logicmail/trunk@948 5c734088-3d25-0410-9155-b3c3832efda5

octorian ac95c020 24aa3a60

+1
+1
LogicMail/src/org/logicprobe/LogicMail/util/MailMessageParser.java
··· 447 447 private static byte[] readRawData(MIMEInputStream mimeInputStream) throws IOException { 448 448 byte[] buffer; 449 449 SharedInputStream sis = mimeInputStream.getRawMIMEInputStream(); 450 + if(sis == null) { return new byte[0]; } 450 451 buffer = IOUtilities.streamToBytes(sis); 451 452 452 453 int offset = 0;