source: npl/overig/libvmime/vmime-disable-rfc2231.diff @ c5c522c

gcc484ntopperl-5.22
Last change on this file since c5c522c was c5c522c, checked in by Edwin Eefting <edwin@datux.nl>, 8 years ago

initial commit, transferred from cleaned syn3 svn tree

  • Property mode set to 100644
File size: 575 bytes
RevLine 
[c5c522c]1diff -urb libvmime-0.9.2.orig/src/parameter.cpp libvmime-0.9.2/src/parameter.cpp
2--- libvmime-0.9.2.orig/src/parameter.cpp       2014-06-30 16:44:39.982907192 +0200
3+++ libvmime-0.9.2/src/parameter.cpp    2014-07-15 14:21:20.865680985 +0200
4@@ -403,7 +403,9 @@
5 
6        // Also generate an extended parameter if the value contains 8-bit characters
7        // or is too long for a single line
8-       if (extended || cutValue)
9+
10+       // Disable RFC-2231 header generation. Some email clients have bad reactions to it.
11+       if ((extended || cutValue) && false)
12        {
13 
14 #if VMIME_ALWAYS_GENERATE_7BIT_PARAMETER
Note: See TracBrowser for help on using the repository browser.