diff -u evolution-data-server-2.22.2/debian/changelog evolution-data-server-2.22.2/debian/changelog --- evolution-data-server-2.22.2/debian/changelog +++ evolution-data-server-2.22.2/debian/changelog @@ -1,3 +1,10 @@ +evolution-data-server (2.22.2-0ubuntu3) hardy; urgency=low + + * Add patch from upstream SVN repository to work around servers which + do not appropriately parse MIME. (LP: #194642) + + -- Michael B. Trausch Tue, 15 Jul 2008 02:08:24 -0400 + evolution-data-server (2.22.2-0ubuntu2) hardy-proposed; urgency=low * debian/patches/90_from_svn_fix_no_translations_index.patch: only in patch2: unchanged: --- evolution-data-server-2.22.2.orig/debian/patches/99-from-svn-fix-broken-mime-server.path.patch +++ evolution-data-server-2.22.2/debian/patches/99-from-svn-fix-broken-mime-server.path.patch @@ -0,0 +1,29 @@ +diff -Nur -x '*.orig' -x '*~' evolution-data-server-2.22.2/camel/camel-mime-utils.c evolution-data-server-2.22.2.new/camel/camel-mime-utils.c +--- evolution-data-server-2.22.2/camel/camel-mime-utils.c 2008-04-04 05:01:59.000000000 -0400 ++++ evolution-data-server-2.22.2.new/camel/camel-mime-utils.c 2008-07-15 02:07:23.000000000 -0400 +@@ -3418,8 +3418,11 @@ + } + } else { + g_string_append_printf (out, "%s%s=", p->name, encoded ? "*" : ""); +- +- if (encoded || !quote) ++ ++ /* Quote even if we don't need to in order to ++ * work around broken mail software like the ++ * Jive Forums' NNTP gateway */ ++ if (encoded /*|| !quote*/) + g_string_append (out, value); + else + quote_word (out, TRUE, value, vlen); +diff -Nur -x '*.orig' -x '*~' evolution-data-server-2.22.2/camel/ChangeLog evolution-data-server-2.22.2.new/camel/ChangeLog +--- evolution-data-server-2.22.2/camel/ChangeLog 2008-05-23 07:23:02.000000000 -0400 ++++ evolution-data-server-2.22.2.new/camel/ChangeLog 2008-07-15 02:07:23.000000000 -0400 +@@ -1,3 +1,8 @@ ++2008-05-22 Jeffrey Stedfast ++ ++ * camel-mime-utils.c (camel_header_param_list_format_append): Work ++ around the broken "Jive Forums" NNTP gateway. Fixes bug #518312. ++ + 2008-05-13 Tor Lillqvist + + * camel-net-utils.h [Win32]: Define WIN32_LEAN_AND_MEAN around