aboutsummaryrefslogtreecommitdiffstats
path: root/mail
diff options
context:
space:
mode:
authorChris Toshok <toshok@helixcode.com>2000-07-13 05:26:45 +0800
committerChris Toshok <toshok@src.gnome.org>2000-07-13 05:26:45 +0800
commitc2f5cf9966ae261a7dab67c150ab3d668c167058 (patch)
tree8c71f95ecb3a0d5175265733615a7b6dac57bd5c /mail
parent77e647292603294f23999183578d8cc276f3d402 (diff)
downloadgsoc2013-evolution-c2f5cf9966ae261a7dab67c150ab3d668c167058.tar
gsoc2013-evolution-c2f5cf9966ae261a7dab67c150ab3d668c167058.tar.gz
gsoc2013-evolution-c2f5cf9966ae261a7dab67c150ab3d668c167058.tar.bz2
gsoc2013-evolution-c2f5cf9966ae261a7dab67c150ab3d668c167058.tar.lz
gsoc2013-evolution-c2f5cf9966ae261a7dab67c150ab3d668c167058.tar.xz
gsoc2013-evolution-c2f5cf9966ae261a7dab67c150ab3d668c167058.tar.zst
gsoc2013-evolution-c2f5cf9966ae261a7dab67c150ab3d668c167058.zip
add "message/news" to the mime_function_table using the same handler as
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. svn path=/trunk/; revision=4122
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);