r1547 - in /unstable/evolution-mapi/debian: changelog patches/10_remove_duplicate_cc.patch patches/series

tao at users.alioth.debian.org tao at users.alioth.debian.org
Sun Mar 7 23:16:39 UTC 2010


Author: tao
Date: Sun Mar  7 23:16:39 2010
New Revision: 1547

URL: http://svn.debian.org/wsvn/pkg-evolution/?sc=1&rev=1547
Log:
* 10_remove_duplicate_cc.patch: Fix duplicate Cc: fields
  and show the To:-field even in the Sent Mail folder
  - Improved package description for libexchangemapi-1.0-dev.

Added:
    unstable/evolution-mapi/debian/patches/10_remove_duplicate_cc.patch
Modified:
    unstable/evolution-mapi/debian/changelog
    unstable/evolution-mapi/debian/patches/series

Modified: unstable/evolution-mapi/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-evolution/unstable/evolution-mapi/debian/changelog?rev=1547&op=diff
==============================================================================
--- unstable/evolution-mapi/debian/changelog (original)
+++ unstable/evolution-mapi/debian/changelog Sun Mar  7 23:16:39 2010
@@ -1,9 +1,16 @@
+evolution-mapi (0.28.3-2) unstable; urgency=low
+
+  * 10_remove_duplicate_cc.patch: Fix duplicate Cc: fields
+    and show the To:-field even in the Sent Mail folder
+
+ -- David Weinehall <tao at debian.org>  Mon, 08 Mar 2010 00:22:36 +0200
+
 evolution-mapi (0.28.3-1) unstable; urgency=low
 
   * New upstream release (Closes: #572099).
   * Bump standards version to 3.8.4 (No changes needed).
   * debian/control:
-    - Improved package description for libexchangemapi-1.0-dev
+    - Improved package description for libexchangemapi-1.0-dev.
   * 01_link_privlib.patch: Added patch description.
   * 90_relibtoolize.patch: Regenerated.
 

Added: unstable/evolution-mapi/debian/patches/10_remove_duplicate_cc.patch
URL: http://svn.debian.org/wsvn/pkg-evolution/unstable/evolution-mapi/debian/patches/10_remove_duplicate_cc.patch?rev=1547&op=file
==============================================================================
--- unstable/evolution-mapi/debian/patches/10_remove_duplicate_cc.patch (added)
+++ unstable/evolution-mapi/debian/patches/10_remove_duplicate_cc.patch Sun Mar  7 23:16:39 2010
@@ -1,0 +1,29 @@
+From 7feb7f9ed93b9292a48118ecc8936344cc9afdfa Mon Sep 17 00:00:00 2001
+From: Milan Crha <mcrha at redhat.com>
+Date: Thu, 18 Feb 2010 18:47:39 +0000
+Subject: Bug #602896 - CC field is shown twice in message
+
+---
+diff -urpN evolution-mapi-0.28.3/src/camel/camel-mapi-folder.c evolution-mapi-0.28.3-patch/src/camel/camel-mapi-folder.c
+--- evolution-mapi-0.28.3/src/camel/camel-mapi-folder.c	2010-03-01 15:28:12.000000000 +0200
++++ evolution-mapi-0.28.3-patch/src/camel/camel-mapi-folder.c	2010-03-07 23:41:07.309941507 +0200
+@@ -1403,11 +1403,15 @@ mapi_msg_set_recipient_list (CamelMimeMe
+ 		}
+ 		/* g_free (display_name); */
+ 	}
+-	
++
+ 	/*Add to message*/
+-	/*Note : To field is added from PR_TRANSPORT_MESSAGE_HEADERS*/
+-	camel_mime_message_set_recipients(msg, "Cc", cc_addr);
+-	camel_mime_message_set_recipients(msg, "Bcc", bcc_addr);
++	/*Note : To field is added from PR_TRANSPORT_MESSAGE_HEADERS
++	  But, in sent_items folder we don't get TRANSPORT_MESSAGE_HEADERS */
++	if (!item->header.transport_headers) {
++		camel_mime_message_set_recipients(msg, "To", to_addr);
++		camel_mime_message_set_recipients(msg, "Cc", cc_addr);
++		camel_mime_message_set_recipients(msg, "Bcc", bcc_addr);
++	}
+ 
+ 	/*TODO : Unref *_addr ? */
+ }

Modified: unstable/evolution-mapi/debian/patches/series
URL: http://svn.debian.org/wsvn/pkg-evolution/unstable/evolution-mapi/debian/patches/series?rev=1547&op=diff
==============================================================================
--- unstable/evolution-mapi/debian/patches/series (original)
+++ unstable/evolution-mapi/debian/patches/series Sun Mar  7 23:16:39 2010
@@ -1,2 +1,3 @@
 01_link_privlib.patch
+10_remove_duplicate_cc.patch
 90_relibtoolize.patch




More information about the pkg-evolution-commits mailing list