aboutsummaryrefslogtreecommitdiffstats
path: root/mail
diff options
context:
space:
mode:
Diffstat (limited to 'mail')
-rw-r--r--mail/ChangeLog5
-rw-r--r--mail/mail-format.c2
2 files changed, 7 insertions, 0 deletions
diff --git a/mail/ChangeLog b/mail/ChangeLog
index 023b31d611..f69c3c8e8a 100644
--- a/mail/ChangeLog
+++ b/mail/ChangeLog
@@ -1,5 +1,10 @@
2000-07-12 Chris Toshok <toshok@helixcode.com>
+ * mail-format.c (setup_function_table): add "message/news" to the
+ mime_function_table using the same handler as message/rfc822.
+
+2000-07-12 Chris Toshok <toshok@helixcode.com>
+
* mail-config.glade*: add news server tab to dialog.
* mail-config.c (on_NewsServerConfigDialogButton_clicked): new function.
diff --git a/mail/mail-format.c b/mail/mail-format.c
index 56f361aebf..a161a000bb 100644
--- a/mail/mail-format.c
+++ b/mail/mail-format.c
@@ -201,6 +201,8 @@ setup_function_table (void)
g_hash_table_insert (mime_function_table, "message/rfc822",
handle_message_rfc822);
+ g_hash_table_insert (mime_function_table, "message/news",
+ handle_message_rfc822);
g_hash_table_insert (mime_function_table, "message/external-body",
handle_message_external_body);