revise label colouring, add filter action for label colouring, fix filtering issues
[claws.git] / src / filtering.h
index aaaf77f854ec971f7d9fe66770c673e6bdfa63b6..113e33be0b4ddbe5d4690f0f0f5846debbb36b51 100644 (file)
@@ -1,3 +1,22 @@
+/*
+ * Sylpheed -- a GTK+ based, lightweight, and fast e-mail client
+ * Copyright (C) 1999-2001 Hiroyuki Yamamoto & The Sylpheed Claws 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
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * 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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ */
+
 #ifndef FILTER_NEW_H
 
 #define FILTER_NEW_H
@@ -8,10 +27,9 @@
 
 struct _FilteringAction {
        gint type;
-       gchar * dest_folder;
        gint account_id;
-       gchar * address;
-       gchar * newsgroups;
+       gchar *destination;
+       gint labelcolor;
 };
 
 typedef struct _FilteringAction FilteringAction;
@@ -26,9 +44,9 @@ typedef struct _FilteringProp FilteringProp;
 extern GSList * prefs_filtering;
 
 
-FilteringAction * filteringaction_new(int type, gchar * dest_folder,
-                                     int account_id, gchar * address,
-                                     gchar * newsgroups);
+FilteringAction * filteringaction_new(int type, int account_id,
+                                     gchar * destination,
+                                     gint labelcolor);
 void filteringaction_free(FilteringAction * action);
 FilteringAction * filteringaction_parse(gchar ** str);
 
@@ -41,8 +59,12 @@ FilteringProp * filteringprop_parse(gchar ** str);
 
 void filter_msginfo(GSList * filtering_list, MsgInfo * info,
                    GHashTable *folder_table);
+void filter_msginfo_move_or_delete(GSList * filtering_list, MsgInfo * info,
+                                  GHashTable *folder_table);
 void filter_message(GSList * filtering_list, FolderItem * item,
                    gint msgnum, GHashTable *folder_table);
+void filter_incoming_message(FolderItem *default_folder, const gchar *file_name, 
+                            GHashTable *folder_table);
 
 gchar * filteringaction_to_string(FilteringAction * action);
 void prefs_filtering_write_config(void);