2 * Sylpheed -- a GTK+ based, lightweight, and fast e-mail client
3 * Copyright (C) 1999-2012 Hiroyuki Yamamoto & The Claws Mail Team
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 3 of the License, or
8 * (at your option) any later version.
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.
15 * You should have received a copy of the GNU General Public License
16 * along with this program. If not, see <http://www.gnu.org/licenses/>.
28 struct _FilteringAction
{
37 typedef struct _FilteringAction FilteringAction
;
39 struct _FilteringProp
{
43 MatcherList
* matchers
;
47 typedef struct _FilteringProp FilteringProp
;
50 FILTERING_ACCOUNT_RULES_SKIP
= 0,
51 FILTERING_ACCOUNT_RULES_FORCE
= 1,
52 FILTERING_ACCOUNT_RULES_USE_CURRENT
= 2
56 FILTERING_INCORPORATION
,
58 FILTERING_FOLDER_PROCESSING
,
59 FILTERING_PRE_PROCESSING
,
60 FILTERING_POST_PROCESSING
61 } FilteringInvocationType
;
64 FILTERING_DEBUG_LEVEL_LOW
,
65 FILTERING_DEBUG_LEVEL_MED
,
66 FILTERING_DEBUG_LEVEL_HIGH
67 } FilteringDebugLevel
;
69 /* extern GSList * prefs_filtering; */
72 FilteringAction
* filteringaction_new(int type
, int account_id
,
74 gint labelcolor
, gint score
, gchar
*header
);
75 void filteringaction_free(FilteringAction
*action
);
76 FilteringAction
* filteringaction_parse(gchar
**str
);
77 gboolean
filteringaction_apply_action_list (GSList
*action_list
, MsgInfo
*info
);
79 FilteringProp
* filteringprop_new(gboolean enabled
,
82 MatcherList
*matchers
,
84 void filteringprop_free(FilteringProp
*prop
);
86 FilteringProp
* filteringprop_parse(gchar
**str
);
88 void filter_msginfo_move_or_delete(GSList
*filtering_list
, MsgInfo
*info
);
89 gboolean
filter_message_by_msginfo(GSList
*flist
, MsgInfo
*info
, PrefsAccount
*ac_prefs
,
90 FilteringInvocationType context
, gchar
*extra_info
);
92 gchar
* filteringaction_to_string(FilteringAction
*action
);
93 void prefs_filtering_write_config(void);
94 void prefs_filtering_read_config(void);
95 gchar
* filteringaction_list_to_string(GSList
* action_list
);
96 gchar
* filteringprop_to_string(FilteringProp
*prop
);
98 void prefs_filtering_clear(void);
99 void prefs_filtering_clear_folder(Folder
*folder
);
101 FilteringProp
* filteringprop_copy(FilteringProp
*src
);
102 void filtering_move_and_copy_msgs(GSList
*msglist
);
103 extern GSList
* filtering_rules
;
104 extern GSList
* pre_global_processing
;
105 extern GSList
* post_global_processing
;
107 gboolean
filtering_peek_per_account_rules(GSList
*filtering_list
);
109 GSList
*filtering_action_list_sort(GSList
*action_list
);
110 gboolean
filtering_action_list_rename_path(GSList
*action_list
, const gchar
*old_path
,
111 const gchar
*new_path
);