Changeset 3630
- Timestamp:
- 04/25/08 13:20:08
- Files:
-
- trunk/ChangeLog (modified) (1 diff)
- trunk/libtinymail-camel/tny-camel-transport-account.c (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/ChangeLog
r3623 r3630 1 2008-04-25 Philip Van Hoof <pvanhoof@gnome.org> 2 3 * Error reporting when sending a message without From, and a crash-fix 4 about it too 5 1 6 2008-04-24 Philip Van Hoof <pvanhoof@gnome.org> 2 7 3 * R meoved all synchronous API usage in TnyCamelSendQueue8 * Removed all synchronous API usage in TnyCamelSendQueue 4 9 5 10 2008-04-24 Sergio Villar Senin <svillar@igalia.com> trunk/libtinymail-camel/tny-camel-transport-account.c
r3480 r3630 213 213 from = (CamelAddress *) camel_internet_address_new (); 214 214 resentfrom = camel_medium_get_header (CAMEL_MEDIUM (message), "Resent-From"); 215 215 216 if (resentfrom) { 216 217 camel_address_decode (from, resentfrom); 217 218 } else { 218 219 miaddr = camel_mime_message_get_from (message); 219 camel_address_copy (from, CAMEL_ADDRESS (miaddr)); 220 if (miaddr) 221 camel_address_copy (from, CAMEL_ADDRESS (miaddr)); 220 222 } 221 223
