aboutsummaryrefslogtreecommitdiffstats
path: root/mail/em-junk-filter.c
diff options
context:
space:
mode:
authorRadek Doulik <rodo@ximian.com>2003-11-13 19:09:08 +0800
committerRadek Doulik <rodo@src.gnome.org>2003-11-13 19:09:08 +0800
commit30b6cddec93a0702e4b36858980450af3af62f47 (patch)
treec6837cf97ef4f11e9733ecfe64b499b0600734ec /mail/em-junk-filter.c
parentd697d3d4202a98a0ffeea5651242d987759a33cd (diff)
downloadgsoc2013-evolution-30b6cddec93a0702e4b36858980450af3af62f47.tar
gsoc2013-evolution-30b6cddec93a0702e4b36858980450af3af62f47.tar.gz
gsoc2013-evolution-30b6cddec93a0702e4b36858980450af3af62f47.tar.bz2
gsoc2013-evolution-30b6cddec93a0702e4b36858980450af3af62f47.tar.lz
gsoc2013-evolution-30b6cddec93a0702e4b36858980450af3af62f47.tar.xz
gsoc2013-evolution-30b6cddec93a0702e4b36858980450af3af62f47.tar.zst
gsoc2013-evolution-30b6cddec93a0702e4b36858980450af3af62f47.zip
new helper function, use it before any call to spamassassin, spamc and
2003-11-13 Radek Doulik <rodo@ximian.com> * em-junk-filter.c (em_junk_sa_is_available): new helper function, use it before any call to spamassassin, spamc and sa-learn (em_junk_sa_test_spamd): first test if spamassassin is available svn path=/trunk/; revision=23317
Diffstat (limited to 'mail/em-junk-filter.c')
-rw-r--r--mail/em-junk-filter.c46
1 files changed, 36 insertions, 10 deletions
diff --git a/mail/em-junk-filter.c b/mail/em-junk-filter.c
index 04bbadc2ba..cb0a53557e 100644
--- a/mail/em-junk-filter.c
+++ b/mail/em-junk-filter.c
@@ -61,6 +61,7 @@ static EMJunkPlugin spam_assassin_plugin =
static gboolean em_junk_sa_spamd_tested = FALSE;
static gboolean em_junk_sa_use_spamc = FALSE;
+static gboolean em_junk_sa_available = FALSE;
static gint em_junk_sa_spamd_port = -1;
#define d(x) x
@@ -78,6 +79,8 @@ pipe_to_sa (CamelMimeMessage *msg, gchar *in, int argc, gchar **argv)
int result, status;
int in_fds[2];
pid_t pid;
+
+ d(printf ("pipe_to_sa %s, %s, %s, %s\n", argc > 0 ? argv [0] : "N/A", argc > 1 ? argv [1] : "N/A", argc > 2 ? argv [2] : "N/A", argc > 3 ? argv [3] : "N/A"));
if (argc < 1 || argv[0] == '\0')
return 0;
@@ -111,7 +114,7 @@ pipe_to_sa (CamelMimeMessage *msg, gchar *in, int argc, gchar **argv)
}
execvp (argv [0], argv);
-
+
d(printf ("Could not execute %s: %s\n", argv [0], g_strerror (errno)));
_exit (255);
} else if (pid < 0) {
@@ -183,6 +186,17 @@ static void
em_junk_sa_test_spamd ()
{
gint i, port = 7830;
+ static gchar *args [3] = {
+ "/bin/sh",
+ "-c",
+ "spamassassin --version"
+ };
+
+ if (pipe_to_sa (NULL, NULL, 3, args)) {
+ em_junk_sa_available = FALSE;
+ return;
+ } else
+ em_junk_sa_available = TRUE;
em_junk_sa_use_spamc = FALSE;
@@ -232,6 +246,17 @@ em_junk_sa_test_spamd ()
}
static gboolean
+em_junk_sa_is_available ()
+{
+ LOCK (em_junk_sa_test_lock);
+ if (!em_junk_sa_spamd_tested)
+ em_junk_sa_test_spamd ();
+ UNLOCK (em_junk_sa_test_lock);
+
+ return em_junk_sa_available;
+}
+
+static gboolean
em_junk_sa_check_junk (CamelMimeMessage *msg)
{
static gchar *args [3] = {
@@ -243,10 +268,8 @@ em_junk_sa_check_junk (CamelMimeMessage *msg)
d(fprintf (stderr, "em_junk_sa_check_junk\n"));
- LOCK (em_junk_sa_test_lock);
- if (!em_junk_sa_spamd_tested)
- em_junk_sa_test_spamd ();
- UNLOCK (em_junk_sa_test_lock);
+ if (!em_junk_sa_is_available ())
+ return FALSE;
args [2] = em_junk_sa_use_spamc
? (em_junk_sa_spamd_port == -1
@@ -281,9 +304,10 @@ em_junk_sa_report_junk (CamelMimeMessage *msg)
" --local" /* local only */
};
- d(fprintf (stderr, "em_junk_sa_report_junk\n");)
+ d(fprintf (stderr, "em_junk_sa_report_junk\n"));
- pipe_to_sa (msg, NULL, 3, args) > 0;
+ if (em_junk_sa_is_available ())
+ pipe_to_sa (msg, NULL, 3, args);
}
static void
@@ -299,9 +323,10 @@ em_junk_sa_report_notjunk (CamelMimeMessage *msg)
" --local" /* local only */
};
- d(fprintf (stderr, "em_junk_sa_report_notjunk\n");)
+ d(fprintf (stderr, "em_junk_sa_report_notjunk\n"));
- pipe_to_sa (msg, NULL, 3, args) > 0;
+ if (em_junk_sa_is_available ())
+ pipe_to_sa (msg, NULL, 3, args);
}
static void
@@ -317,7 +342,8 @@ em_junk_sa_commit_reports (void)
d(fprintf (stderr, "em_junk_sa_commit_reports\n");)
- pipe_to_sa (NULL, NULL, 3, args) > 0;
+ if (em_junk_sa_is_available ())
+ pipe_to_sa (NULL, NULL, 3, args);
}
const EMJunkPlugin *