2007-03-05 [wwp] 2.8.0cvs19
[claws.git] / src / filtering.h
1 /*
2  * Sylpheed -- a GTK+ based, lightweight, and fast e-mail client
3  * Copyright (C) 1999-2007 Hiroyuki Yamamoto & The Claws Mail Team
4  *
5  * This program is free software; you can redistribute it and/or modify
6  * it under the terms of the GNU General Public License as published by
7  * the Free Software Foundation; either version 2 of the License, or
8  * (at your option) any later version.
9  *
10  * This program is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13  * GNU General Public License for more details.
14  *
15  * You should have received a copy of the GNU General Public License
16  * along with this program; if not, write to the Free Software
17  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
18  */
19
20 #ifndef FILTER_NEW_H
21
22 #define FILTER_NEW_H
23
24 #include <glib.h>
25 #include "matcher.h"
26 #include "procmsg.h"
27
28 struct _FilteringAction {
29         gint    type;
30         gint    account_id;
31         gchar  *destination;
32         gint    labelcolor;
33         gint    score;
34         gchar  *header;
35 };
36
37 typedef struct _FilteringAction FilteringAction;
38
39 struct _FilteringProp {
40         gboolean enabled;
41         gchar *name;
42         gint account_id;
43         MatcherList * matchers;
44         GSList * action_list;
45 };
46
47 typedef struct _FilteringProp FilteringProp;
48
49 enum {
50         FILTERING_ACCOUNT_RULES_SKIP = 0,
51         FILTERING_ACCOUNT_RULES_FORCE = 1,
52         FILTERING_ACCOUNT_RULES_USE_CURRENT = 2
53 };
54
55 /* extern GSList * prefs_filtering; */
56
57
58 FilteringAction * filteringaction_new(int type, int account_id,
59                                       gchar * destination,
60                                       gint labelcolor, gint score, gchar *header);
61 void filteringaction_free(FilteringAction *action);
62 FilteringAction * filteringaction_parse(gchar **str);
63 gboolean filteringaction_apply_action_list (GSList *action_list, MsgInfo *info);
64
65 FilteringProp * filteringprop_new(gboolean enabled,
66                                   const gchar *name,
67                                   gint account_id,
68                                   MatcherList *matchers,
69                                   GSList *action_list);
70 void filteringprop_free(FilteringProp *prop);
71
72 FilteringProp * filteringprop_parse(gchar **str);
73
74 void filter_msginfo_move_or_delete(GSList *filtering_list, MsgInfo *info);
75 gboolean filter_message_by_msginfo(GSList *flist, MsgInfo *info, PrefsAccount *ac_prefs);
76
77 gchar * filteringaction_to_string(gchar *dest, gint destlen, FilteringAction *action);
78 void prefs_filtering_write_config(void);
79 void prefs_filtering_read_config(void);
80 gchar * filteringaction_list_to_string(GSList * action_list);
81 gchar * filteringprop_to_string(FilteringProp *prop);
82
83 void prefs_filtering_clear(void);
84 void prefs_filtering_clear_folder(Folder *folder);
85 void prefs_filtering_free(GSList *prefs_filtering);
86
87 FilteringProp * filteringprop_copy(FilteringProp *src);
88 void filtering_move_and_copy_msgs(GSList *msglist);
89 void filtering_move_and_copy_msg(MsgInfo *msginfo);
90 extern GSList * filtering_rules;
91 extern GSList * pre_global_processing;
92 extern GSList * post_global_processing;
93
94 gboolean filtering_peek_per_account_rules(GSList *filtering_list);
95
96 #endif