0.9.7claws49
authorChristoph Hohmann <reboot@gmx.ch>
Wed, 17 Dec 2003 15:47:05 +0000 (15:47 +0000)
committerChristoph Hohmann <reboot@gmx.ch>
Wed, 17 Dec 2003 15:47:05 +0000 (15:47 +0000)
* src/procheader.c
        revert discarding of whitespace from 0.9.7claws44

        RFC2822 2.2.3: Unfolding is accomplished by simply
        removing any CRLF that is immediately followed by WSP.

ChangeLog.claws
configure.ac
src/procheader.c

index 76acead3813f7ecdb53cfe08150c6fdf0ee09eed..3d717f042c819c744b1eafa4d4486f99b81aaff7 100644 (file)
@@ -1,3 +1,11 @@
+2003-12-17 [christoph] 0.9.7claws49
+
+       * src/procheader.c
+               revert discarding of whitespace from 0.9.7claws44
+
+               RFC2822 2.2.3: Unfolding is accomplished by simply
+               removing any CRLF that is immediately followed by WSP.
+
 2003-12-17 [paul]      0.9.7claws48
 
        * src/folder.c
index 52c39264301eb771ac33f9ca57801ad0b21e9403..6f92f3948e2ddedc2d29538645d0c9da5ed129a7 100644 (file)
@@ -11,7 +11,7 @@ MINOR_VERSION=9
 MICRO_VERSION=7
 INTERFACE_AGE=0
 BINARY_AGE=0
-EXTRA_VERSION=48
+EXTRA_VERSION=49
 if test $EXTRA_VERSION -eq 0; then
     VERSION=${MAJOR_VERSION}.${MINOR_VERSION}.${MICRO_VERSION}claws
 else
index 7def36dfd63f88006c3803d09273baab66a7ca4d..b80f10e49d741d25e3cca59884a7119f73804527 100644 (file)
@@ -152,10 +152,6 @@ static gint generic_get_one_field(gchar *buf, gint len, void *data,
                if (nexthead == ' ' || nexthead == '\t') {
                        size_t buflen = strlen(buf);
                        
-                       /* discard 1*WSP when one header or unfolding was requested */
-                       if (UNFOLD_LINE())
-                               getchar_(data);
-                               
                        /* concatenate next line */
                        if ((len - buflen) > 2) {
                                if (getline(buf + buflen, len - buflen, data) == NULL)