fix CID 1596595: Resource leaks, and CID 1596594: (CHECKED_RETURN)
[claws.git] / src / plugins / spamassassin / spamassassin.h
index 4874ef8281b3fdf5218b7626d15b3cb3fb308411..4f447dc490d531c0327b96c3fe55b4b6c0123168 100644 (file)
@@ -1,10 +1,10 @@
 /*
- * Sylpheed -- a GTK+ based, lightweight, and fast e-mail client
- * Copyright (C) 1999-2006 Hiroyuki Yamamoto and the Sylpheed-Claws Team
+ * Claws Mail -- a GTK based, lightweight, and fast e-mail client
+ * Copyright (C) 1999-2012 the Claws Mail Team
  *
  * This program is free software; you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation; either version 2 of the License, or
+ * the Free Software Foundation; either version 3 of the License, or
  * (at your option) any later version.
  *
  * This program is distributed in the hope that it will be useful,
  * GNU General Public License for more details.
  *
  * You should have received a copy of the GNU General Public License
- * along with this program; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
+ * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * 
  */
 
 #ifndef SPAMASSASSIN_H
 #define SPAMASSASSIN_H 1
 
 #include <glib.h>
+#include "folder.h"
 
 typedef struct _SpamAssassinConfig SpamAssassinConfig;
 
 typedef void (*MessageCallback) (gchar *);
 
 typedef enum {
-       SPAMASSASSIN_DISABLED            = 0,
+       SPAMASSASSIN_DISABLED            = 0, /* unused, just for compatibility */
        SPAMASSASSIN_TRANSPORT_LOCALHOST = 1,
        SPAMASSASSIN_TRANSPORT_TCP       = 2,
        SPAMASSASSIN_TRANSPORT_UNIX      = 3,
@@ -35,20 +36,32 @@ typedef enum {
 
 struct _SpamAssassinConfig
 {
+       gboolean                 enable;
        SpamAssassinTransport    transport;
        gchar                   *hostname;
        guint                    port;
        gchar                   *socket;
+       gboolean                 process_emails;
        gboolean                 receive_spam;
        gchar                   *save_folder;
        guint                    max_size;
        guint                    timeout;
+       gchar                   *username;
+       gboolean                 mark_as_read;
+       gboolean                 whitelist_ab;
+       gchar                   *whitelist_ab_folder;
+       gboolean                 compress;
 };
 
 SpamAssassinConfig *spamassassin_get_config          (void);
 void               spamassassin_save_config          (void);
+gint                   spamassassin_check_username           (void);  
 void               spamassassin_set_message_callback (MessageCallback callback);
 gint spamassassin_gtk_init(void);
 void spamassassin_gtk_done(void);
+int spamassassin_learn(MsgInfo *msginfo, GSList *msglist, gboolean spam);
+void spamassassin_register_hook(void);
+void spamassassin_unregister_hook(void);
+FolderItem *spamassassin_get_spam_folder(MsgInfo *msginfo);
 
 #endif