Remove previous comment about Outlook brokenness, since it turns out the
authorDan Winship <danw@src.gnome.org>
Fri, 27 Oct 2000 22:05:45 +0000 (22:05 +0000)
committerDan Winship <danw@src.gnome.org>
Fri, 27 Oct 2000 22:05:45 +0000 (22:05 +0000)
brokenness was actually somewhere else. (Still in Outlook, just not in
the part of Outlook I was told it was.)

camel/ChangeLog
camel/camel-mime-utils.c

index dc33a42..41c4454 100644 (file)
@@ -1,8 +1,8 @@
 2000-10-27  Dan Winship  <danw@helixcode.com>
 
-       * camel-mime-utils.c (header_param_list_format_append): Work
-       around Outlook brokenness in iMIP parsing by only quoting
-       Content-type parameters when the quoting is mandatory.
+       * camel-mime-utils.c (header_param_list_format_append): Only quote
+       Content-type parameters when the quoting is mandatory, and deal
+       with embedded quotes/backslashes when quoting.
 
 2000-10-27    <jpr@helixcode.com>
 
index 76aa672..8b61947 100644 (file)
@@ -2213,10 +2213,6 @@ header_param_list_format_append(GString *out, struct _header_param *p)
 
                g_string_sprintfa(out, " ; %s=", p->name);
 
-               /* Outlook will not recognize an iTIP attachment with
-                * eg 'method="request"'. It must be 'method=request'.
-                * So only quote if we need to. (Sigh)
-                */
                for (ch = p->value; *ch; ch++) {
                        if (is_tspecial(*ch))
                                break;