aboutsummaryrefslogtreecommitdiffstats
path: root/modules/spamassassin
diff options
context:
space:
mode:
authorMatthew Barnes <mbarnes@redhat.com>2012-08-21 04:42:47 +0800
committerMatthew Barnes <mbarnes@redhat.com>2012-10-01 11:26:23 +0800
commitc539a9ec20f46e0dc66df76fa518f8b659467bcd (patch)
tree26699d756bf65041f34bb8cf69d6086ad0c525a7 /modules/spamassassin
parentf186c2a87448f0e6410344b5e8e4b8f587e9987f (diff)
downloadgsoc2013-evolution-c539a9ec20f46e0dc66df76fa518f8b659467bcd.tar
gsoc2013-evolution-c539a9ec20f46e0dc66df76fa518f8b659467bcd.tar.gz
gsoc2013-evolution-c539a9ec20f46e0dc66df76fa518f8b659467bcd.tar.bz2
gsoc2013-evolution-c539a9ec20f46e0dc66df76fa518f8b659467bcd.tar.lz
gsoc2013-evolution-c539a9ec20f46e0dc66df76fa518f8b659467bcd.tar.xz
gsoc2013-evolution-c539a9ec20f46e0dc66df76fa518f8b659467bcd.tar.zst
gsoc2013-evolution-c539a9ec20f46e0dc66df76fa518f8b659467bcd.zip
Remove e_mail_junk_filter_available().
Because we now check for junk filtering software in configure, junk filtering modules can now safely assume the required junk filtering software is installed. No more having the module installed but not the required software. If this invariant is broken, an error will be shown for each new message received.
Diffstat (limited to 'modules/spamassassin')
-rw-r--r--modules/spamassassin/evolution-spamassassin.c67
1 files changed, 0 insertions, 67 deletions
diff --git a/modules/spamassassin/evolution-spamassassin.c b/modules/spamassassin/evolution-spamassassin.c
index 8db0ce278c..4adb1e8cc3 100644
--- a/modules/spamassassin/evolution-spamassassin.c
+++ b/modules/spamassassin/evolution-spamassassin.c
@@ -379,55 +379,6 @@ spam_assassin_set_use_daemon (ESpamAssassin *extension,
g_object_notify (G_OBJECT (extension), "use-daemon");
}
-static gboolean
-spam_assassin_get_version (ESpamAssassin *extension,
- gint *spam_assassin_version,
- GCancellable *cancellable,
- GError **error)
-{
- GByteArray *output_buffer;
- gint exit_code;
- guint ii;
-
- const gchar *argv[] = {
- SA_LEARN_COMMAND,
- "--version",
- NULL
- };
-
- if (extension->version_set) {
- if (spam_assassin_version != NULL)
- *spam_assassin_version = extension->version;
- return TRUE;
- }
-
- output_buffer = g_byte_array_new ();
-
- exit_code = spam_assassin_command_full (
- argv, NULL, NULL, output_buffer, TRUE, cancellable, error);
-
- if (exit_code != 0) {
- g_byte_array_free (output_buffer, TRUE);
- return FALSE;
- }
-
- for (ii = 0; ii < output_buffer->len; ii++) {
- if (g_ascii_isdigit (output_buffer->data[ii])) {
- guint8 ch = output_buffer->data[ii];
- extension->version = (ch - '0');
- extension->version_set = TRUE;
- break;
- }
- }
-
- if (spam_assassin_version != NULL)
- *spam_assassin_version = extension->version;
-
- g_byte_array_free (output_buffer, TRUE);
-
- return TRUE;
-}
-
#ifdef HAVE_SPAM_DAEMON
static void
spam_assassin_test_spamd_allow_tell (ESpamAssassin *extension)
@@ -783,23 +734,6 @@ spam_assassin_finalize (GObject *object)
G_OBJECT_CLASS (e_spam_assassin_parent_class)->finalize (object);
}
-static gboolean
-spam_assassin_available (EMailJunkFilter *junk_filter)
-{
- ESpamAssassin *extension = E_SPAM_ASSASSIN (junk_filter);
- gboolean available;
- GError *error = NULL;
-
- available = spam_assassin_get_version (extension, NULL, NULL, &error);
-
- if (error != NULL) {
- g_warning ("%s", error->message);
- g_error_free (error);
- }
-
- return available;
-}
-
static GtkWidget *
spam_assassin_new_config_widget (EMailJunkFilter *junk_filter)
{
@@ -1094,7 +1028,6 @@ e_spam_assassin_class_init (ESpamAssassinClass *class)
junk_filter_class = E_MAIL_JUNK_FILTER_CLASS (class);
junk_filter_class->filter_name = "SpamAssassin";
junk_filter_class->display_name = _("SpamAssassin");
- junk_filter_class->available = spam_assassin_available;
junk_filter_class->new_config_widget = spam_assassin_new_config_widget;
g_object_class_install_property (