aboutsummaryrefslogtreecommitdiffstats
path: root/mail/em-popup.c
diff options
context:
space:
mode:
authorMatthew Barnes <mbarnes@redhat.com>2008-05-23 22:41:30 +0800
committerMatthew Barnes <mbarnes@src.gnome.org>2008-05-23 22:41:30 +0800
commit36321cbfdf47628a1c08a901c2978873bfdb87f7 (patch)
tree3c155d34e5b63b8ca7672291641797388086101b /mail/em-popup.c
parent80dd512e6956502055657c1e00ab8feb2c9a3de9 (diff)
downloadgsoc2013-evolution-36321cbfdf47628a1c08a901c2978873bfdb87f7.tar
gsoc2013-evolution-36321cbfdf47628a1c08a901c2978873bfdb87f7.tar.gz
gsoc2013-evolution-36321cbfdf47628a1c08a901c2978873bfdb87f7.tar.bz2
gsoc2013-evolution-36321cbfdf47628a1c08a901c2978873bfdb87f7.tar.lz
gsoc2013-evolution-36321cbfdf47628a1c08a901c2978873bfdb87f7.tar.xz
gsoc2013-evolution-36321cbfdf47628a1c08a901c2978873bfdb87f7.tar.zst
gsoc2013-evolution-36321cbfdf47628a1c08a901c2978873bfdb87f7.zip
** Fixes bug #534476
2008-05-23 Matthew Barnes <mbarnes@redhat.com> ** Fixes bug #534476 * configure.in: Require shared-mime-info >= 0.22 to make sure we pick up the fix for correctly identifying "winmail.dat" attachments. * calendar/gui/e-cal-popup.c (ecalp_standard_menu_factory): * mail/em-utils.c (em_utils_snoop_type): * mail/em-popup.c (emp_standard_menu_factory): Remove the special check for "winmail.dat". GIO correctly identifies it as "application/ms-tnef". svn path=/trunk/; revision=35534
Diffstat (limited to 'mail/em-popup.c')
-rw-r--r--mail/em-popup.c19
1 files changed, 7 insertions, 12 deletions
diff --git a/mail/em-popup.c b/mail/em-popup.c
index b727bf552f..00c9bcbd1e 100644
--- a/mail/em-popup.c
+++ b/mail/em-popup.c
@@ -806,7 +806,7 @@ emp_standard_menu_factory(EPopup *emp, void *data)
if (mime_type) {
gchar *cp;
- /* does gvfs expect lowercase MIME types? */
+ /* GIO expects lowercase MIME types. */
for (cp = mime_type; *cp != '\0'; cp++)
*cp = g_ascii_tolower (*cp);
@@ -815,18 +815,13 @@ emp_standard_menu_factory(EPopup *emp, void *data)
these two soon. */
apps = g_app_info_get_all_for_type (mime_type);
- if (apps == NULL && strcmp(mime_type, "application/octet-stream") == 0) {
- if (filename) {
- /* will gvfs misidentify TNEF attachments as MPEG? */
- if (!strcmp (filename, "winmail.dat"))
- apps = g_app_info_get_all_for_type ("application/vnd.ms-tnef");
- else {
- char *name_type = e_util_guess_mime_type (filename);
+ if (apps == NULL && strcmp (mime_type, "application/octet-stream") == 0) {
+ if (filename != NULL) {
+ gchar *name_type;
- apps = g_app_info_get_all_for_type (name_type);
-
- g_free (name_type);
- }
+ name_type = e_util_guess_mime_type (filename);
+ apps = g_app_info_get_all_for_type (name_type);
+ g_free (name_type);
}
}