3.7.2 unleashed
[claws.git] / src / folder_item_prefs.h
blob6bf81a3c9318118158751ae9059a97d217ecd517
1 /*
2 * Sylpheed -- a GTK+ based, lightweight, and fast e-mail client
3 * Copyright (C) 1999-2009 Hiroyuki Yamamoto and 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/>.
20 #ifndef FOLDER_ITEM_PREFS_H
21 #define FOLDER_ITEM_PREFS_H
23 #include <glib.h>
24 #include <sys/types.h>
26 typedef struct _FolderItemPrefs FolderItemPrefs;
28 #include "folder.h"
30 struct _FolderItemPrefs {
31 gchar * directory;
33 int enable_processing; /* at start-up */
34 int enable_processing_when_opening;
35 GSList * processing;
37 int newmailcheck;
38 int offlinesync;
39 int offlinesync_days;
40 int remove_old_bodies;
42 gboolean request_return_receipt;
43 gboolean enable_default_to;
44 gchar *default_to;
45 gboolean enable_default_reply_to;
46 gchar *default_reply_to;
47 gboolean enable_default_cc;
48 gchar *default_cc;
49 gboolean enable_default_bcc;
50 gchar *default_bcc;
51 gboolean enable_default_replyto;
52 gchar *default_replyto;
53 gboolean enable_simplify_subject;
54 #ifndef G_OS_WIN32
55 gchar *simplify_subject_regexp;
56 #endif
57 gboolean enable_folder_chmod;
58 gint folder_chmod;
59 gboolean enable_default_account;
60 gint default_account;
62 gboolean enable_default_dictionary;
63 gchar *default_dictionary;
64 gboolean enable_default_alt_dictionary;
65 gchar *default_alt_dictionary;
67 gboolean save_copy_to_folder;
68 guint color;
70 gboolean compose_with_format;
71 gchar *compose_override_from_format;
72 gchar *compose_subject_format;
73 gchar *compose_body_format;
74 gboolean reply_with_format;
75 gchar *reply_quotemark;
76 gchar *reply_override_from_format;
77 gchar *reply_body_format;
78 gboolean forward_with_format;
79 gchar *forward_quotemark;
80 gchar *forward_override_from_format;
81 gchar *forward_body_format;
84 void folder_item_prefs_read_config(FolderItem * item);
85 void folder_item_prefs_save_config(FolderItem * item);
86 void folder_item_prefs_save_config_recursive(FolderItem * item);
87 FolderItemPrefs *folder_item_prefs_new(void);
88 void folder_item_prefs_free(FolderItemPrefs * prefs);
89 void folder_item_prefs_copy_prefs(FolderItem * src, FolderItem * dest);
91 #endif /* FOLDER_ITEM_PREFS_H */