aboutsummaryrefslogtreecommitdiffstats
path: root/camel/camel-mime-filter-canon.c
diff options
context:
space:
mode:
Diffstat (limited to 'camel/camel-mime-filter-canon.c')
-rw-r--r--camel/camel-mime-filter-canon.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/camel/camel-mime-filter-canon.c b/camel/camel-mime-filter-canon.c
index a72f01c77f..43337ae856 100644
--- a/camel/camel-mime-filter-canon.c
+++ b/camel/camel-mime-filter-canon.c
@@ -195,6 +195,12 @@ complete(CamelMimeFilter *f, char *in, size_t len, size_t prespace, char **out,
while (o>starto && (o[-1] == ' ' || o[-1] == '\t' || o[-1]=='\r'))
o--;
}
+
+#if 0
+ /* Note: #if 0'd out because we do not want to add a
+ * \r\n for PGP/MIME verification if it isn't there in
+ * the original content stream */
+
/* check end of line canonicalisation */
if (o>starto) {
if (flags & CAMEL_MIME_FILTER_CANON_CRLF) {
@@ -208,6 +214,7 @@ complete(CamelMimeFilter *f, char *in, size_t len, size_t prespace, char **out,
/* and always finish with an eol */
*o++ = '\n';
+#endif
*outlen = o - *out;