diff options
author | hiro <hiro@ee746299-78ed-0310-b773-934348b2243d> | 2010-05-08 01:00:25 +0000 |
---|---|---|
committer | hiro <hiro@ee746299-78ed-0310-b773-934348b2243d> | 2010-05-08 01:00:25 +0000 |
commit | aab139f193c935ee159f903a00d81939b3506d0c (patch) | |
tree | 15cc821f0f83d6bb5e6644de3e17b34f269249ab /libsylph/mbox.c | |
parent | d02f2ea9f76f7e10e84073b071d3487e849c1a18 (diff) |
fixed a bug that MIME flag was not set on importing mbox file.
git-svn-id: svn://sylpheed.sraoss.jp/sylpheed/trunk@2536 ee746299-78ed-0310-b773-934348b2243d
Diffstat (limited to 'libsylph/mbox.c')
-rw-r--r-- | libsylph/mbox.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/libsylph/mbox.c b/libsylph/mbox.c index d63278c5..21beadb7 100644 --- a/libsylph/mbox.c +++ b/libsylph/mbox.c @@ -1,6 +1,6 @@ /* * LibSylph -- E-Mail client library - * Copyright (C) 1999-2008 Hiroyuki Yamamoto + * Copyright (C) 1999-2010 Hiroyuki Yamamoto * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public @@ -234,6 +234,7 @@ gint proc_mbox_full(FolderItem *dest, const gchar *mbox, fclose(mbox_fp); return -1; } + fltinfo->flags = msginfo->flags; msginfo->file_path = g_strdup(tmp_file); if (filter_junk && prefs_common.enable_junk && |