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
This commit is contained in:
Jeffrey Stedfast
2001-06-14 17:16:33 +00:00
committed by Jeffrey Stedfast
parent 4133620058
commit 9df60c5c8f
2 changed files with 6 additions and 0 deletions

View File

@ -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

View File

@ -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);