summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorMark Brand <mabrand@mabrand.nl>2010-09-06 22:18:41 (GMT)
committerMark Brand <mabrand@mabrand.nl>2010-09-06 22:18:41 (GMT)
commit262b007d7e0afec204c5ddbb03e26c2d0650ef94 (patch)
tree1b7e848bcd1fd403a72021090c043e20d84de8df /src
parent9ecaecea9405f1cfa518aed1cf654a768842b45e (diff)
downloadmxe-262b007d7e0afec204c5ddbb03e26c2d0650ef94.zip
mxe-262b007d7e0afec204c5ddbb03e26c2d0650ef94.tar.gz
mxe-262b007d7e0afec204c5ddbb03e26c2d0650ef94.tar.bz2
upgrade package vmime
Diffstat (limited to 'src')
-rw-r--r--src/vmime-1-fastforward.patch28
1 files changed, 28 insertions, 0 deletions
diff --git a/src/vmime-1-fastforward.patch b/src/vmime-1-fastforward.patch
index e3f5852..d9beba0 100644
--- a/src/vmime-1-fastforward.patch
+++ b/src/vmime-1-fastforward.patch
@@ -17230,3 +17230,31 @@ index cb5351a..010c007 100644
}
+
+commit b7ec3accd3fa1b6dc7d7724aab968f860fe1930b
+Author: vincent-richard <vincent-richard@5301114d-f842-0410-bbdd-996ee0417009>
+Date: Mon Sep 6 20:20:45 2010 +0000
+
+ Fixed extraction of root part body.
+
+ git-svn-id: https://vmime.svn.sourceforge.net/svnroot/vmime/trunk@563 5301114d-f842-0410-bbdd-996ee0417009
+
+diff --git a/src/net/imap/IMAPMessage.cpp b/src/net/imap/IMAPMessage.cpp
+index adfef01..bbdba69 100644
+--- a/src/net/imap/IMAPMessage.cpp
++++ b/src/net/imap/IMAPMessage.cpp
+@@ -273,9 +273,12 @@ void IMAPMessage::extract(ref <const part> p, utility::outputStream& os,
+ if (peek) command << ".PEEK";
+ command << "[";
+
+- if (section.str().empty() && headerOnly)
++ if (section.str().empty())
+ {
+- command << "HEADER";
++ if (headerOnly)
++ command << "HEADER";
++ else
++ command << "TEXT";
+ }
+ else
+ {