diff options
author | Jeffrey Stedfast <fejj@ximian.com> | 2001-06-15 01:16:33 +0800 |
---|---|---|
committer | Jeffrey Stedfast <fejj@src.gnome.org> | 2001-06-15 01:16:33 +0800 |
commit | 9df60c5c8fc3ce56c8800e4776deabc2cecaba91 (patch) | |
tree | b8b543344ef6903992ec8002c19bfa383564876e | |
parent | 4133620058d1ab5a66f3d2253308f4fc679fa5ae (diff) | |
download | gsoc2013-evolution-9df60c5c8fc3ce56c8800e4776deabc2cecaba91.tar gsoc2013-evolution-9df60c5c8fc3ce56c8800e4776deabc2cecaba91.tar.gz gsoc2013-evolution-9df60c5c8fc3ce56c8800e4776deabc2cecaba91.tar.bz2 gsoc2013-evolution-9df60c5c8fc3ce56c8800e4776deabc2cecaba91.tar.lz gsoc2013-evolution-9df60c5c8fc3ce56c8800e4776deabc2cecaba91.tar.xz gsoc2013-evolution-9df60c5c8fc3ce56c8800e4776deabc2cecaba91.tar.zst gsoc2013-evolution-9df60c5c8fc3ce56c8800e4776deabc2cecaba91.zip |
Don't try to format the Reply-To header - we don't want to wrap the
2001-06-14 Jeffrey Stedfast <fejj@ximian.com>
* camel-mime-part.c (init_header_name_table): Don't try to format
the Reply-To header - we don't want to wrap the reply-to address.
svn path=/trunk/; revision=10231
-rw-r--r-- | camel/ChangeLog | 5 | ||||
-rw-r--r-- | camel/camel-mime-part.c | 1 |
2 files changed, 6 insertions, 0 deletions
diff --git a/camel/ChangeLog b/camel/ChangeLog index 3ea6d1ba8e..465364a3e2 100644 --- a/camel/ChangeLog +++ b/camel/ChangeLog @@ -1,3 +1,8 @@ +2001-06-14 Jeffrey Stedfast <fejj@ximian.com> + + * camel-mime-part.c (init_header_name_table): Don't try to format + the Reply-To header - we don't want to wrap the reply-to address. + 2001-06-12 Not Zed <NotZed@Ximian.com> * providers/local/camel-spool-*.[ch]: A new provider, for spool diff --git a/camel/camel-mime-part.c b/camel/camel-mime-part.c index bc06f8147f..b582f8a780 100644 --- a/camel/camel-mime-part.c +++ b/camel/camel-mime-part.c @@ -108,6 +108,7 @@ init_header_name_table() g_hash_table_insert(header_formatted_table, "Content-Disposition", (void *)1); g_hash_table_insert(header_formatted_table, "To", (void *)1); g_hash_table_insert(header_formatted_table, "From", (void *)1); + g_hash_table_insert(header_formatted_table, "Reply-To", (void *)1); g_hash_table_insert(header_formatted_table, "Cc", (void *)1); g_hash_table_insert(header_formatted_table, "Bcc", (void *)1); g_hash_table_insert(header_formatted_table, "Message-ID", (void *)1); |