2008-06-27 [paul] 3.4.0cvs116
[claws.git] / src / folder_item_prefs.c
1 /*
2  * Sylpheed -- a GTK+ based, lightweight, and fast e-mail client
3  * Copyright (C) 1999-2007 Hiroyuki Yamamoto and 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 3 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, see <http://www.gnu.org/licenses/>.
17  * 
18  */
19
20 #ifdef HAVE_CONFIG_H
21 #  include "config.h"
22 #endif
23
24 #include <glib.h>
25 #include <glib/gi18n.h>
26
27 #include "defs.h"
28 #include "folder.h"
29 #include "utils.h"
30 #include "prefs_gtk.h"
31 #include "filtering.h"
32 #include "folder_item_prefs.h"
33
34 FolderItemPrefs tmp_prefs;
35
36 static PrefParam param[] = {
37         {"enable_default_to", "", &tmp_prefs.enable_default_to, P_BOOL,
38          NULL, NULL, NULL},
39         {"default_to", "", &tmp_prefs.default_to, P_STRING,
40          NULL, NULL, NULL},
41         {"enable_default_reply_to", "", &tmp_prefs.enable_default_reply_to, P_BOOL,
42          NULL, NULL, NULL},
43         {"default_reply_to", "", &tmp_prefs.default_reply_to, P_STRING,
44          NULL, NULL, NULL},
45         {"enable_simplify_subject", "", &tmp_prefs.enable_simplify_subject, P_BOOL,
46          NULL, NULL, NULL},
47         {"simplify_subject_regexp", "", &tmp_prefs.simplify_subject_regexp, P_STRING,
48          NULL, NULL, NULL},
49         {"enable_folder_chmod", "", &tmp_prefs.enable_folder_chmod, P_BOOL,
50          NULL, NULL, NULL},
51         {"folder_chmod", "", &tmp_prefs.folder_chmod, P_INT,
52          NULL, NULL, NULL},
53         {"enable_default_account", "", &tmp_prefs.enable_default_account, P_BOOL,
54          NULL, NULL, NULL},
55         {"default_account", NULL, &tmp_prefs.default_account, P_INT,
56          NULL, NULL, NULL},
57 #if USE_ASPELL
58         {"enable_default_dictionary", "", &tmp_prefs.enable_default_dictionary, P_BOOL,
59          NULL, NULL, NULL},
60         {"default_dictionary", NULL, &tmp_prefs.default_dictionary, P_STRING,
61          NULL, NULL, NULL},
62         {"enable_default_alt_dictionary", "", &tmp_prefs.enable_default_alt_dictionary, P_BOOL,
63          NULL, NULL, NULL},
64         {"default_alt_dictionary", NULL, &tmp_prefs.default_alt_dictionary, P_STRING,
65          NULL, NULL, NULL},
66 #endif   
67         {"save_copy_to_folder", NULL, &tmp_prefs.save_copy_to_folder, P_BOOL,
68          NULL, NULL, NULL},
69         {"folder_color", "", &tmp_prefs.color, P_INT,
70          NULL, NULL, NULL},
71         {"enable_processing", "FALSE", &tmp_prefs.enable_processing, P_BOOL,
72          NULL, NULL, NULL},
73         {"enable_processing_when_opening", "TRUE", &tmp_prefs.enable_processing_when_opening, P_BOOL,
74          NULL, NULL, NULL},
75         {"newmailcheck", "TRUE", &tmp_prefs.newmailcheck, P_BOOL,
76          NULL, NULL, NULL},
77         {"offlinesync", "FALSE", &tmp_prefs.offlinesync, P_BOOL,
78          NULL, NULL, NULL},
79         {"offlinesync_days", "0", &tmp_prefs.offlinesync_days, P_INT,
80          NULL, NULL, NULL},
81         {"remove_old_bodies", "FALSE", &tmp_prefs.remove_old_bodies, P_BOOL,
82          NULL, NULL, NULL},
83
84         {"compose_with_format", "FALSE", &tmp_prefs.compose_with_format, P_BOOL,
85          NULL, NULL, NULL},
86         {"compose_override_from_format", NULL, &tmp_prefs.compose_override_from_format, P_STRING,
87          NULL, NULL, NULL},
88         {"compose_subject_format", NULL, &tmp_prefs.compose_subject_format, P_STRING,
89          NULL, NULL, NULL},
90         {"compose_body_format", NULL, &tmp_prefs.compose_body_format, P_STRING,
91          NULL, NULL, NULL},
92         {"reply_with_format", "FALSE", &tmp_prefs.reply_with_format, P_BOOL,
93          NULL, NULL, NULL},
94         {"reply_override_from_format", NULL, &tmp_prefs.reply_override_from_format, P_STRING,
95          NULL, NULL, NULL},
96         {"reply_quotemark", NULL, &tmp_prefs.reply_quotemark, P_STRING,
97          NULL, NULL, NULL},
98         {"reply_body_format", NULL, &tmp_prefs.reply_body_format, P_STRING,
99          NULL, NULL, NULL},
100         {"forward_with_format", "FALSE", &tmp_prefs.forward_with_format, P_BOOL,
101          NULL, NULL, NULL},
102         {"forward_override_from_format", NULL, &tmp_prefs.forward_override_from_format, P_STRING,
103          NULL, NULL, NULL},
104         {"forward_quotemark", NULL, &tmp_prefs.forward_quotemark, P_STRING,
105          NULL, NULL, NULL},
106         {"forward_body_format", NULL, &tmp_prefs.forward_body_format, P_STRING,
107          NULL, NULL, NULL},
108         {NULL, NULL, NULL, P_OTHER, NULL, NULL, NULL}
109 };
110
111 static FolderItemPrefs *folder_item_prefs_clear(FolderItemPrefs *prefs);
112
113 void folder_item_prefs_read_config(FolderItem * item)
114 {
115         gchar * id;
116         gchar *rcpath;
117
118         id = folder_item_get_identifier(item);
119         folder_item_prefs_clear(&tmp_prefs);
120         rcpath = g_strconcat(get_rc_dir(), G_DIR_SEPARATOR_S, FOLDERITEM_RC, NULL);
121         prefs_read_config(param, id, rcpath, NULL);
122         g_free(id);
123         g_free(rcpath);
124
125         *item->prefs = tmp_prefs;
126 }
127
128 void folder_item_prefs_save_config(FolderItem * item)
129 {       
130         gchar * id;
131
132         tmp_prefs = * item->prefs;
133
134         id = folder_item_get_identifier(item);
135         debug_print("saving prefs for %s\n", id?id:"(null)");
136         prefs_write_config(param, id, FOLDERITEM_RC);
137         g_free(id);
138 }
139
140 static gboolean folder_item_prefs_save_config_func(GNode *node, gpointer data)
141 {
142         FolderItem *item = (FolderItem *) node->data;
143         folder_item_prefs_save_config(item);
144         return FALSE;
145 }
146
147 void folder_item_prefs_save_config_recursive(FolderItem * item)
148 {       
149         g_node_traverse(item->node, G_PRE_ORDER, G_TRAVERSE_ALL,
150                         -1, folder_item_prefs_save_config_func, NULL);
151 }
152
153 static FolderItemPrefs *folder_item_prefs_clear(FolderItemPrefs *prefs)
154 {
155         prefs->enable_default_to = FALSE;
156         prefs->default_to = NULL;
157         prefs->enable_default_reply_to = FALSE;
158         prefs->default_reply_to = NULL;
159         prefs->enable_simplify_subject = FALSE;
160         prefs->simplify_subject_regexp = NULL;
161         prefs->enable_folder_chmod = FALSE;
162         prefs->folder_chmod = 0;
163         prefs->enable_default_account = FALSE;
164         prefs->default_account = 0;
165 #if USE_ASPELL
166         prefs->enable_default_dictionary = FALSE;
167         prefs->default_dictionary = NULL;
168         prefs->enable_default_alt_dictionary = FALSE;
169         prefs->default_alt_dictionary = NULL;
170 #endif
171         prefs->save_copy_to_folder = FALSE;
172         prefs->color = 0;
173
174         prefs->enable_processing = TRUE;
175         prefs->enable_processing_when_opening = TRUE;
176         prefs->processing = NULL;
177
178         prefs->newmailcheck = TRUE;
179         prefs->offlinesync = FALSE;
180         prefs->offlinesync_days = 0;
181         prefs->remove_old_bodies = FALSE;
182
183         prefs->compose_with_format = FALSE;
184         prefs->compose_subject_format = NULL;
185         prefs->compose_body_format = NULL;
186         prefs->compose_override_from_format = NULL;
187         prefs->reply_with_format = FALSE;
188         prefs->reply_quotemark = NULL;
189         prefs->reply_body_format = NULL;
190         prefs->reply_override_from_format = NULL;
191         prefs->forward_with_format = FALSE;
192         prefs->forward_quotemark = NULL;
193         prefs->forward_body_format = NULL;
194         prefs->forward_override_from_format = NULL;
195         return prefs;
196 }
197
198 FolderItemPrefs * folder_item_prefs_new(void)
199 {
200         FolderItemPrefs * prefs;
201
202         prefs = g_new0(FolderItemPrefs, 1);
203
204         return folder_item_prefs_clear(prefs);
205 }
206
207 void folder_item_prefs_free(FolderItemPrefs * prefs)
208 {
209         g_free(prefs->default_to);
210         g_free(prefs->default_reply_to);
211         g_free(prefs->compose_subject_format);
212         g_free(prefs->compose_body_format);
213         g_free(prefs->compose_override_from_format);
214         g_free(prefs->reply_quotemark);
215         g_free(prefs->reply_body_format);
216         g_free(prefs->reply_override_from_format);
217         g_free(prefs->forward_quotemark);
218         g_free(prefs->forward_body_format);
219         g_free(prefs->forward_override_from_format);
220         g_free(prefs);
221 }
222
223 #define SAFE_STRING(str) \
224         (str) ? (str) : ""
225
226 void folder_item_prefs_copy_prefs(FolderItem * src, FolderItem * dest)
227 {
228         GSList *tmp_prop_list = NULL, *tmp;
229         folder_item_prefs_read_config(src);
230
231         tmp_prefs.directory                     = g_strdup(src->prefs->directory);
232         tmp_prefs.enable_processing             = src->prefs->enable_processing;
233         tmp_prefs.enable_processing_when_opening = src->prefs->enable_processing_when_opening;
234         tmp_prefs.newmailcheck                  = src->prefs->newmailcheck;
235         tmp_prefs.offlinesync                   = src->prefs->offlinesync;
236         tmp_prefs.offlinesync_days              = src->prefs->offlinesync_days;
237         tmp_prefs.remove_old_bodies             = src->prefs->remove_old_bodies;
238
239         prefs_matcher_read_config();
240
241         for (tmp = src->prefs->processing; tmp != NULL && tmp->data != NULL;) {
242                 FilteringProp *prop = (FilteringProp *)tmp->data;
243                 
244                 tmp_prop_list = g_slist_append(tmp_prop_list,
245                                            filteringprop_copy(prop));
246                 tmp = tmp->next;
247         }
248         tmp_prefs.processing                    = tmp_prop_list;
249         
250         tmp_prefs.request_return_receipt        = src->prefs->request_return_receipt;
251         tmp_prefs.enable_default_to             = src->prefs->enable_default_to;
252         tmp_prefs.default_to                    = g_strdup(src->prefs->default_to);
253         tmp_prefs.enable_default_reply_to       = src->prefs->enable_default_reply_to;
254         tmp_prefs.default_reply_to              = g_strdup(src->prefs->default_reply_to);
255         tmp_prefs.enable_simplify_subject       = src->prefs->enable_simplify_subject;
256         tmp_prefs.simplify_subject_regexp       = g_strdup(src->prefs->simplify_subject_regexp);
257         tmp_prefs.enable_folder_chmod           = src->prefs->enable_folder_chmod;
258         tmp_prefs.folder_chmod                  = src->prefs->folder_chmod;
259         tmp_prefs.enable_default_account        = src->prefs->enable_default_account;
260         tmp_prefs.default_account               = src->prefs->default_account;
261 #if USE_ASPELL
262         tmp_prefs.enable_default_dictionary     = src->prefs->enable_default_dictionary;
263         tmp_prefs.default_dictionary            = g_strdup(src->prefs->default_dictionary);
264         tmp_prefs.enable_default_alt_dictionary = src->prefs->enable_default_alt_dictionary;
265         tmp_prefs.default_alt_dictionary        = g_strdup(src->prefs->default_alt_dictionary);
266 #endif
267         tmp_prefs.save_copy_to_folder           = src->prefs->save_copy_to_folder;
268         tmp_prefs.color                         = src->prefs->color;
269
270         tmp_prefs.compose_with_format = src->prefs->compose_with_format;
271         tmp_prefs.compose_subject_format = g_strdup(src->prefs->compose_subject_format);
272         tmp_prefs.compose_body_format = g_strdup(src->prefs->compose_body_format);
273         tmp_prefs.compose_override_from_format = g_strdup(src->prefs->compose_override_from_format);
274         tmp_prefs.reply_with_format = src->prefs->reply_with_format;
275         tmp_prefs.reply_quotemark = g_strdup(src->prefs->reply_quotemark);
276         tmp_prefs.reply_body_format = g_strdup(src->prefs->reply_body_format);
277         tmp_prefs.reply_override_from_format = g_strdup(src->prefs->reply_override_from_format);
278         tmp_prefs.forward_with_format = src->prefs->forward_with_format;
279         tmp_prefs.forward_quotemark = g_strdup(src->prefs->forward_quotemark);
280         tmp_prefs.forward_body_format = g_strdup(src->prefs->forward_body_format);
281         tmp_prefs.forward_override_from_format = g_strdup(src->prefs->forward_override_from_format);
282
283         *dest->prefs = tmp_prefs;
284         folder_item_prefs_save_config(dest);
285 }