diff options
author | Dan Winship <danw@src.gnome.org> | 2001-10-30 13:25:40 +0800 |
---|---|---|
committer | Dan Winship <danw@src.gnome.org> | 2001-10-30 13:25:40 +0800 |
commit | 83cbc43d1ca7492cd3029460323a529562b23352 (patch) | |
tree | 33d76a18dcddaffd7bfdd36cbd6a0dfb312ba8dc /composer/e-msg-composer.c | |
parent | ac2ffbc8e371424999b80e22304b3c1f77ebfe6b (diff) | |
download | gsoc2013-evolution-83cbc43d1ca7492cd3029460323a529562b23352.tar.gz gsoc2013-evolution-83cbc43d1ca7492cd3029460323a529562b23352.tar.zst gsoc2013-evolution-83cbc43d1ca7492cd3029460323a529562b23352.zip |
Remove Content-Disposition in the no_body case. (More kludging around
* e-msg-composer.c (build_message): Remove Content-Disposition in
the no_body case. (More kludging around Outlook iCalendar
brokenness.)
svn path=/trunk/; revision=14433
Diffstat (limited to 'composer/e-msg-composer.c')
-rw-r--r-- | composer/e-msg-composer.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/composer/e-msg-composer.c b/composer/e-msg-composer.c index 0eeff9abd0..fbf2827896 100644 --- a/composer/e-msg-composer.c +++ b/composer/e-msg-composer.c @@ -431,6 +431,7 @@ build_message (EMsgComposer *composer) part = camel_multipart_get_part (multipart, 1); current = camel_medium_get_content_object (CAMEL_MEDIUM (part)); copy_headers (CAMEL_MEDIUM (new), CAMEL_MEDIUM (part)); + camel_medium_remove_header (CAMEL_MEDIUM (new), "Content-Disposition"); camel_object_ref (CAMEL_OBJECT (current)); camel_object_unref (CAMEL_OBJECT (multipart)); } else |