2001-07-16 18:43:28 +02:00
|
|
|
/*
|
|
|
|
* Sylpheed -- a GTK+ based, lightweight, and fast e-mail client
|
2007-01-03 06:42:43 +01:00
|
|
|
* Copyright (C) 1999-2007 Hiroyuki Yamamoto & The Claws Mail Team
|
2001-07-16 18:43:28 +02:00
|
|
|
*
|
|
|
|
* 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
|
2005-09-21 20:22:51 +02:00
|
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
2001-07-16 18:43:28 +02:00
|
|
|
*/
|
|
|
|
|
2001-05-15 06:50:27 +02:00
|
|
|
#ifndef FILTER_NEW_H
|
|
|
|
|
|
|
|
#define FILTER_NEW_H
|
|
|
|
|
|
|
|
#include <glib.h>
|
|
|
|
#include "matcher.h"
|
|
|
|
#include "procmsg.h"
|
|
|
|
|
|
|
|
struct _FilteringAction {
|
2001-12-06 21:48:32 +01:00
|
|
|
gint type;
|
|
|
|
gint account_id;
|
|
|
|
gchar *destination;
|
|
|
|
gint labelcolor;
|
2004-01-12 22:28:31 +01:00
|
|
|
gint score;
|
2001-05-15 06:50:27 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
typedef struct _FilteringAction FilteringAction;
|
|
|
|
|
|
|
|
struct _FilteringProp {
|
2006-05-13 15:04:55 +02:00
|
|
|
gboolean enabled;
|
2005-08-22 18:13:03 +02:00
|
|
|
gchar *name;
|
2006-07-31 13:44:30 +02:00
|
|
|
gint account_id;
|
2001-05-15 06:50:27 +02:00
|
|
|
MatcherList * matchers;
|
2003-08-07 15:30:23 +02:00
|
|
|
GSList * action_list;
|
2001-05-15 06:50:27 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
typedef struct _FilteringProp FilteringProp;
|
|
|
|
|
2006-08-03 10:37:30 +02:00
|
|
|
enum {
|
|
|
|
FILTERING_ACCOUNT_RULES_SKIP = 0,
|
|
|
|
FILTERING_ACCOUNT_RULES_FORCE = 1,
|
|
|
|
FILTERING_ACCOUNT_RULES_USE_CURRENT = 2
|
|
|
|
};
|
|
|
|
|
2001-11-15 23:41:46 +01:00
|
|
|
/* extern GSList * prefs_filtering; */
|
2001-05-15 06:50:27 +02:00
|
|
|
|
|
|
|
|
2001-05-17 12:57:37 +02:00
|
|
|
FilteringAction * filteringaction_new(int type, int account_id,
|
2004-01-12 22:28:31 +01:00
|
|
|
gchar * destination,
|
|
|
|
gint labelcolor, gint score);
|
2001-12-06 21:48:32 +01:00
|
|
|
void filteringaction_free(FilteringAction *action);
|
|
|
|
FilteringAction * filteringaction_parse(gchar **str);
|
2004-01-12 22:28:31 +01:00
|
|
|
gboolean filteringaction_apply_action_list (GSList *action_list, MsgInfo *info);
|
2001-05-15 06:50:27 +02:00
|
|
|
|
2006-05-13 15:04:55 +02:00
|
|
|
FilteringProp * filteringprop_new(gboolean enabled,
|
|
|
|
const gchar *name,
|
2006-07-31 13:44:30 +02:00
|
|
|
gint account_id,
|
2005-08-22 18:13:03 +02:00
|
|
|
MatcherList *matchers,
|
2003-08-07 15:30:23 +02:00
|
|
|
GSList *action_list);
|
2001-12-06 21:48:32 +01:00
|
|
|
void filteringprop_free(FilteringProp *prop);
|
2001-05-15 06:50:27 +02:00
|
|
|
|
2001-12-06 21:48:32 +01:00
|
|
|
FilteringProp * filteringprop_parse(gchar **str);
|
2001-07-12 16:00:15 +02:00
|
|
|
|
2002-10-10 20:21:11 +02:00
|
|
|
void filter_msginfo_move_or_delete(GSList *filtering_list, MsgInfo *info);
|
2006-07-31 13:44:30 +02:00
|
|
|
gboolean filter_message_by_msginfo(GSList *flist, MsgInfo *info, PrefsAccount *ac_prefs);
|
2001-05-15 06:50:27 +02:00
|
|
|
|
2001-12-06 21:48:32 +01:00
|
|
|
gchar * filteringaction_to_string(gchar *dest, gint destlen, FilteringAction *action);
|
2001-05-15 06:50:27 +02:00
|
|
|
void prefs_filtering_write_config(void);
|
|
|
|
void prefs_filtering_read_config(void);
|
2003-08-07 15:30:23 +02:00
|
|
|
gchar * filteringaction_list_to_string(GSList * action_list);
|
2001-12-06 21:48:32 +01:00
|
|
|
gchar * filteringprop_to_string(FilteringProp *prop);
|
2001-05-15 06:50:27 +02:00
|
|
|
|
2003-05-13 13:54:19 +02:00
|
|
|
void prefs_filtering_clear(void);
|
2003-06-10 19:02:05 +02:00
|
|
|
void prefs_filtering_clear_folder(Folder *folder);
|
2001-12-06 21:48:32 +01:00
|
|
|
void prefs_filtering_free(GSList *prefs_filtering);
|
2001-11-15 23:41:46 +01:00
|
|
|
|
2002-11-08 21:29:43 +01:00
|
|
|
FilteringProp * filteringprop_copy(FilteringProp *src);
|
2006-02-06 19:02:18 +01:00
|
|
|
void filtering_move_and_copy_msgs(GSList *msglist);
|
2006-02-06 20:22:08 +01:00
|
|
|
void filtering_move_and_copy_msg(MsgInfo *msginfo);
|
2004-01-12 22:28:31 +01:00
|
|
|
extern GSList * filtering_rules;
|
|
|
|
extern GSList * pre_global_processing;
|
|
|
|
extern GSList * post_global_processing;
|
2001-11-15 23:41:46 +01:00
|
|
|
|
2006-08-03 10:37:30 +02:00
|
|
|
gboolean filtering_peek_per_account_rules(GSList *filtering_list);
|
|
|
|
|
2001-05-15 06:50:27 +02:00
|
|
|
#endif
|