aboutsummaryrefslogtreecommitdiff
path: root/src/summaryview.c
diff options
context:
space:
mode:
authorhiro <hiro@ee746299-78ed-0310-b773-934348b2243d>2007-04-06 05:03:00 +0000
committerhiro <hiro@ee746299-78ed-0310-b773-934348b2243d>2007-04-06 05:03:00 +0000
commitbeedd408b15d15073d135252043fd47d421f4ab4 (patch)
treee8ee2290f3399ffa09d1efd347b413ca99eac7ed /src/summaryview.c
parent2dd04f6bc82e5242566c0c829ef50a35f00f4c98 (diff)
display error dialog if the execution of the junk filter command failed.
git-svn-id: svn://sylpheed.sraoss.jp/sylpheed/trunk@1597 ee746299-78ed-0310-b773-934348b2243d
Diffstat (limited to 'src/summaryview.c')
-rw-r--r--src/summaryview.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/summaryview.c b/src/summaryview.c
index 368eacac..e74fe4a5 100644
--- a/src/summaryview.c
+++ b/src/summaryview.c
@@ -4465,6 +4465,14 @@ static gboolean summary_filter_junk_func(GtkTreeModel *model, GtkTreePath *path,
fltinfo->actions[FLT_ACTION_DELETE] ||
fltinfo->actions[FLT_ACTION_MARK_READ])
summaryview->filtered++;
+ else if (fltinfo->error == FLT_ERROR_EXEC_FAILED) {
+ if (summaryview->flt_count == 1) {
+ alertpanel_error
+ (_("Execution of the junk filter command failed.\n"
+ "Please check the junk mail control setting."));
+ }
+ return TRUE;
+ }
if (msginfo->flags.perm_flags != fltinfo->flags.perm_flags) {
msginfo->flags = fltinfo->flags;