Remove unreachable code
[claws.git] / src / mh.c
1 /*
2  * Sylpheed -- a GTK+ based, lightweight, and fast e-mail client
3  * Copyright (C) 1999-2013 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 #include "claws-features.h"
23 #endif
24
25 #include "defs.h"
26
27 #include <glib.h>
28 #include <glib/gi18n.h>
29 #include <dirent.h>
30 #include <sys/stat.h>
31 #include <unistd.h>
32 #include <string.h>
33 #include <errno.h>
34 #include <time.h>
35
36 #include "folder.h"
37 #include "folder_item_prefs.h"
38 #include "mh.h"
39 #include "procmsg.h"
40 #include "procheader.h"
41 #include "utils.h"
42 #include "codeconv.h"
43 #include "statusbar.h"
44 #include "gtkutils.h"
45 #include "timing.h"
46 #include "msgcache.h"
47
48 /* Define possible missing constants for Windows. */
49 #ifdef G_OS_WIN32
50 # ifndef S_IRGRP
51 # define S_IRGRP 0
52 # define S_IWGRP 0
53 # endif
54 # ifndef S_IROTH
55 # define S_IROTH 0
56 # define S_IWOTH 0
57 # endif
58 #endif
59
60
61 static void     mh_folder_init          (Folder         *folder,
62                                          const gchar    *name,
63                                          const gchar    *path);
64
65 static Folder   *mh_folder_new          (const gchar    *name,
66                                          const gchar    *path);
67 static void     mh_folder_destroy       (Folder         *folder);
68 static gchar   *mh_fetch_msg            (Folder         *folder,
69                                          FolderItem     *item,
70                                          gint            num);
71 static MsgInfo *mh_get_msginfo          (Folder         *folder,
72                                          FolderItem     *item,
73                                          gint            num);
74 static gint     mh_add_msg              (Folder         *folder,
75                                          FolderItem     *dest,
76                                          const gchar    *file,
77                                          MsgFlags       *flags);
78 static gint     mh_add_msgs             (Folder         *folder,
79                                          FolderItem     *dest,
80                                          GSList         *file_list,
81                                          GHashTable     *relation);
82 static gint     mh_copy_msg             (Folder         *folder,
83                                          FolderItem     *dest,
84                                          MsgInfo        *msginfo);
85 static gint     mh_copy_msgs            (Folder         *folder, 
86                                          FolderItem     *dest, 
87                                          MsgInfoList    *msglist, 
88                                          GHashTable     *relation);
89 static gint     mh_remove_msg           (Folder         *folder,
90                                          FolderItem     *item,
91                                          gint            num);
92 static gint     mh_remove_msgs          (Folder         *folder, 
93                                          FolderItem     *item, 
94                                          MsgInfoList    *msglist, 
95                                          GHashTable     *relation);
96 static gint     mh_remove_all_msg       (Folder         *folder,
97                                          FolderItem     *item);
98 static gboolean mh_is_msg_changed       (Folder         *folder,
99                                          FolderItem     *item,
100                                          MsgInfo        *msginfo);
101
102 static gint     mh_get_num_list         (Folder         *folder,
103                                          FolderItem     *item, 
104                                          GSList         **list, 
105                                          gboolean       *old_uids_valid);
106 static gint     mh_scan_tree            (Folder         *folder);
107
108 static gint    mh_create_tree           (Folder         *folder);
109 static FolderItem *mh_create_folder     (Folder         *folder,
110                                          FolderItem     *parent,
111                                          const gchar    *name);
112 static gint    mh_rename_folder         (Folder         *folder,
113                                          FolderItem     *item,
114                                          const gchar    *name);
115 static gint    mh_remove_folder         (Folder         *folder,
116                                          FolderItem     *item);
117
118 static gchar   *mh_get_new_msg_filename         (FolderItem     *dest);
119
120 static MsgInfo *mh_parse_msg                    (const gchar    *file,
121                                                  FolderItem     *item);
122 static void     mh_remove_missing_folder_items  (Folder         *folder);
123 static gchar    *mh_filename_from_utf8          (const gchar    *path);
124 static gchar    *mh_filename_to_utf8            (const gchar    *path);
125 static void     mh_scan_tree_recursive          (FolderItem     *item);
126
127 static gboolean mh_rename_folder_func           (GNode          *node,
128                                                  gpointer        data);
129 static gchar   *mh_item_get_path                (Folder *folder, 
130                                                  FolderItem *item);
131
132 static gboolean mh_scan_required        (Folder         *folder,
133                                          FolderItem     *item);
134 static void mh_set_mtime                (Folder         *folder,
135                                          FolderItem *item);
136 static int mh_item_close                (Folder         *folder,
137                                          FolderItem     *item);
138 #if 0
139 static gint mh_get_flags                (Folder *folder, FolderItem *item,
140                                          MsgInfoList *msginfo_list, GHashTable *msgflags);
141 #endif
142 static void mh_write_sequences          (FolderItem     *item, gboolean remove_unseen);
143
144 static FolderClass mh_class;
145
146 FolderClass *mh_get_class(void)
147 {
148         if (mh_class.idstr == NULL) {
149                 mh_class.type = F_MH;
150                 mh_class.idstr = "mh";
151                 mh_class.uistr = "MH";
152                 mh_class.supports_server_search = FALSE;
153                 
154                 /* Folder functions */
155                 mh_class.new_folder = mh_folder_new;
156                 mh_class.destroy_folder = mh_folder_destroy;
157                 mh_class.set_xml = folder_local_set_xml;
158                 mh_class.get_xml = folder_local_get_xml;
159                 mh_class.scan_tree = mh_scan_tree;
160                 mh_class.create_tree = mh_create_tree;
161
162                 /* FolderItem functions */
163                 mh_class.item_get_path = mh_item_get_path;
164                 mh_class.create_folder = mh_create_folder;
165                 mh_class.rename_folder = mh_rename_folder;
166                 mh_class.remove_folder = mh_remove_folder;
167                 mh_class.get_num_list = mh_get_num_list;
168                 mh_class.scan_required = mh_scan_required;
169                 mh_class.set_mtime = mh_set_mtime;
170                 mh_class.close = mh_item_close;
171                 mh_class.get_flags = NULL; /*mh_get_flags */;
172
173                 /* Message functions */
174                 mh_class.get_msginfo = mh_get_msginfo;
175                 mh_class.fetch_msg = mh_fetch_msg;
176                 mh_class.add_msg = mh_add_msg;
177                 mh_class.add_msgs = mh_add_msgs;
178                 mh_class.copy_msg = mh_copy_msg;
179                 mh_class.copy_msgs = mh_copy_msgs;
180                 mh_class.search_msgs = folder_item_search_msgs_local;
181                 mh_class.remove_msg = mh_remove_msg;
182                 mh_class.remove_msgs = mh_remove_msgs;
183                 mh_class.remove_all_msg = mh_remove_all_msg;
184                 mh_class.is_msg_changed = mh_is_msg_changed;
185         }
186
187         return &mh_class;
188 }
189
190 static Folder *mh_folder_new(const gchar *name, const gchar *path)
191 {
192         Folder *folder;
193
194         folder = (Folder *)g_new0(MHFolder, 1);
195         folder->klass = &mh_class;
196         mh_folder_init(folder, name, path);
197
198         return folder;
199 }
200
201 static void mh_folder_destroy(Folder *folder)
202 {
203         folder_local_folder_destroy(LOCAL_FOLDER(folder));
204 }
205
206 static void mh_folder_init(Folder *folder, const gchar *name, const gchar *path)
207 {
208         folder_local_folder_init(folder, name, path);
209
210 }
211
212 gboolean mh_scan_required(Folder *folder, FolderItem *item)
213 {
214         gchar *path;
215         struct stat s;
216
217         path = folder_item_get_path(item);
218         cm_return_val_if_fail(path != NULL, FALSE);
219
220         if (g_stat(path, &s) < 0) {
221                 FILE_OP_ERROR(path, "stat");
222                 g_free(path);
223                 return FALSE;
224         }
225
226         if ((s.st_mtime > item->mtime) &&
227                 (s.st_mtime - 3600 != item->mtime)) {
228                 debug_print("MH scan required, folder updated: %s (%ld > %ld)\n",
229                             path?path:"(null)",
230                             (long int) s.st_mtime,
231                             (long int) item->mtime);
232                 g_free(path);
233                 return TRUE;
234         }
235
236         debug_print("MH scan not required: %s (%ld <= %ld)\n",
237                     path?path:"(null)",
238                     (long int) s.st_mtime,
239                     (long int) item->mtime);
240         g_free(path);
241         return FALSE;
242 }
243
244 static void mh_get_last_num(Folder *folder, FolderItem *item)
245 {
246         gchar *path;
247         DIR *dp;
248         struct dirent *d;
249         gint max = 0;
250         gint num;
251
252         cm_return_if_fail(item != NULL);
253
254         debug_print("mh_get_last_num(): Scanning %s ...\n", item->path?item->path:"(null)");
255
256         path = folder_item_get_path(item);
257         cm_return_if_fail(path != NULL);
258         if (change_dir(path) < 0) {
259                 g_free(path);
260                 return;
261         }
262         g_free(path);
263
264         if ((dp = opendir(".")) == NULL) {
265                 FILE_OP_ERROR(item->path, "opendir");
266                 return;
267         }
268
269         while ((d = readdir(dp)) != NULL) {
270                 if ((num = to_number(d->d_name)) > 0 &&
271                     dirent_is_regular_file(d)) {
272                         if (max < num)
273                                 max = num;
274                 }
275                 if (num % 2000 == 0)
276                         GTK_EVENTS_FLUSH();
277         }
278         closedir(dp);
279
280         debug_print("Last number in dir %s = %d\n", item->path?item->path:"(null)", max);
281         item->last_num = max;
282 }
283
284 gint mh_get_num_list(Folder *folder, FolderItem *item, GSList **list, gboolean *old_uids_valid)
285 {
286
287         gchar *path;
288         DIR *dp;
289         struct dirent *d;
290         gint num, nummsgs = 0;
291
292         cm_return_val_if_fail(item != NULL, -1);
293
294         debug_print("mh_get_num_list(): Scanning %s ...\n", item->path?item->path:"(null)");
295
296         *old_uids_valid = TRUE;
297
298         path = folder_item_get_path(item);
299         cm_return_val_if_fail(path != NULL, -1);
300         if (change_dir(path) < 0) {
301                 g_free(path);
302                 return -1;
303         }
304         g_free(path);
305
306         if ((dp = opendir(".")) == NULL) {
307                 FILE_OP_ERROR(item->path, "opendir");
308                 return -1;
309         }
310
311         while ((d = readdir(dp)) != NULL) {
312                 if ((num = to_number(d->d_name)) > 0) {
313                         *list = g_slist_prepend(*list, GINT_TO_POINTER(num));
314                         nummsgs++;
315                 }
316         }
317         closedir(dp);
318
319         mh_set_mtime(folder, item);
320         return nummsgs;
321 }
322
323 static gchar *mh_fetch_msg(Folder *folder, FolderItem *item, gint num)
324 {
325         gchar *path;
326         gchar *file;
327
328         cm_return_val_if_fail(item != NULL, NULL);
329         cm_return_val_if_fail(num > 0, NULL);
330
331         path = folder_item_get_path(item);
332         file = g_strconcat(path, G_DIR_SEPARATOR_S, itos(num), NULL);
333
334         if (!is_file_exist(file)) {
335                 g_free(file);
336                 g_free(path);
337                 return NULL;
338         }
339         g_free(path);
340         return file;
341 }
342
343 static MsgInfo *mh_get_msginfo(Folder *folder, FolderItem *item, gint num)
344 {
345         MsgInfo *msginfo;
346         gchar *file;
347
348         cm_return_val_if_fail(item != NULL, NULL);
349         if (num <= 0)
350                 return NULL;
351
352         file = mh_fetch_msg(folder, item, num);
353         if (!file) return NULL;
354
355         msginfo = mh_parse_msg(file, item);
356         if (msginfo)
357                 msginfo->msgnum = num;
358
359         g_free(file);
360
361         return msginfo;
362 }
363
364 static gchar *mh_get_new_msg_filename(FolderItem *dest)
365 {
366         gchar *destfile;
367         gchar *destpath;
368
369         destpath = folder_item_get_path(dest);
370         cm_return_val_if_fail(destpath != NULL, NULL);
371
372         if (dest->last_num < 0) {
373                 mh_get_last_num(dest->folder, dest);
374                 if (dest->last_num < 0) return NULL;
375         }
376
377         if (!is_dir_exist(destpath))
378                 make_dir_hier(destpath);
379
380         for (;;) {
381                 destfile = g_strdup_printf("%s%c%d", destpath, G_DIR_SEPARATOR,
382                                            dest->last_num + 1);
383                 if (is_file_entry_exist(destfile)) {
384                         dest->last_num++;
385                         g_free(destfile);
386                 } else
387                         break;
388         }
389
390         g_free(destpath);
391
392         return destfile;
393 }
394
395 static gint mh_add_msg(Folder *folder, FolderItem *dest, const gchar *file, MsgFlags *flags)
396 {
397         gint ret;
398         GSList file_list;
399         MsgFileInfo fileinfo;
400
401         cm_return_val_if_fail(file != NULL, -1);
402
403         fileinfo.msginfo = NULL;
404         fileinfo.file = (gchar *)file;
405         fileinfo.flags = flags;
406         file_list.data = &fileinfo;
407         file_list.next = NULL;
408
409         ret = mh_add_msgs(folder, dest, &file_list, NULL);
410         return ret;
411
412  
413 static gint mh_add_msgs(Folder *folder, FolderItem *dest, GSList *file_list, 
414                  GHashTable *relation)
415
416         gchar *destfile;
417         GSList *cur;
418         MsgFileInfo *fileinfo;
419
420         cm_return_val_if_fail(dest != NULL, -1);
421         cm_return_val_if_fail(file_list != NULL, -1);
422
423         if (dest->last_num < 0) {
424                 mh_get_last_num(folder, dest);
425                 if (dest->last_num < 0) return -1;
426         }
427
428         for (cur = file_list; cur != NULL; cur = cur->next) {
429                 fileinfo = (MsgFileInfo *)cur->data;
430
431                 destfile = mh_get_new_msg_filename(dest);
432                 if (destfile == NULL) return -1;
433
434 #ifdef G_OS_UNIX
435                 if (link(fileinfo->file, destfile) < 0) {
436 #endif
437                         if (copy_file(fileinfo->file, destfile, TRUE) < 0) {
438                                 g_warning(_("can't copy message %s to %s\n"),
439                                           fileinfo->file, destfile);
440                                 g_free(destfile);
441                                 return -1;
442                         }
443 #ifdef G_OS_UNIX
444                 }
445 #endif
446
447                 if (relation != NULL)
448                         g_hash_table_insert(relation, fileinfo, GINT_TO_POINTER(dest->last_num + 1));
449                 g_free(destfile);
450                 dest->last_num++;
451         }
452         mh_write_sequences(dest, TRUE);
453         return dest->last_num;
454 }
455
456 static gint mh_copy_msg(Folder *folder, FolderItem *dest, MsgInfo *msginfo)
457 {
458         GSList msglist;
459
460         cm_return_val_if_fail(msginfo != NULL, -1);
461
462         msglist.data = msginfo;
463         msglist.next = NULL;
464
465         return mh_copy_msgs(folder, dest, &msglist, NULL);      
466 }
467
468 static gint mh_copy_msgs(Folder *folder, FolderItem *dest, MsgInfoList *msglist, 
469                          GHashTable *relation)
470 {
471         gboolean dest_need_scan = FALSE;
472         gboolean src_need_scan = FALSE;
473         FolderItem *src = NULL;
474         gchar *srcfile;
475         gchar *destfile;
476         FolderItemPrefs *prefs;
477         MsgInfo *msginfo = NULL;
478         MsgInfoList *cur = NULL;
479         gint curnum = 0, total = 0;
480         gchar *srcpath = NULL;
481         gboolean full_fetch = FALSE;
482         time_t last_dest_mtime = (time_t)0;
483         time_t last_src_mtime = (time_t)0;
484
485         cm_return_val_if_fail(dest != NULL, -1);
486         cm_return_val_if_fail(msglist != NULL, -1);
487         
488         msginfo = (MsgInfo *)msglist->data;
489
490         cm_return_val_if_fail(msginfo != NULL, -1);
491
492         if (msginfo->folder == dest) {
493                 g_warning("the src folder is identical to the dest.\n");
494                 return -1;
495         }
496
497         if (msginfo->folder->folder != dest->folder)
498                 full_fetch = TRUE;
499         
500         if (FOLDER_TYPE(msginfo->folder->folder) == F_MH) {
501                 src = msginfo->folder;
502         }
503
504         if (dest->last_num < 0) {
505                 mh_get_last_num(folder, dest);
506                 if (dest->last_num < 0) return -1;
507         }
508
509         prefs = dest->prefs;
510
511         srcpath = folder_item_get_path(msginfo->folder);
512
513         dest_need_scan = mh_scan_required(dest->folder, dest);
514         last_dest_mtime = dest->mtime;
515
516         if (src) {
517                 src_need_scan = mh_scan_required(src->folder, src);
518                 last_src_mtime = src->mtime;
519         }
520
521         total = g_slist_length(msglist);
522         if (total > 100) {
523                 if (MSG_IS_MOVE(msginfo->flags))
524                         statusbar_print_all(_("Moving messages..."));
525                 else
526                         statusbar_print_all(_("Copying messages..."));
527         }
528         for (cur = msglist; cur; cur = cur->next) {
529                 msginfo = (MsgInfo *)cur->data;
530                 if (!msginfo) {
531                         goto err_reset_status;
532                 }
533                 if (!full_fetch) {
534                         srcfile = g_strconcat(srcpath, 
535                                 G_DIR_SEPARATOR_S, 
536                                 itos(msginfo->msgnum), NULL);
537                 } else {
538                         srcfile = procmsg_get_message_file(msginfo);
539                 }
540                 if (!srcfile) {
541                         goto err_reset_status;
542                 }
543                 destfile = mh_get_new_msg_filename(dest);
544                 if (!destfile) {
545                         g_free(srcfile);
546                         goto err_reset_status;
547                 }
548
549                 if (total > 100) {
550                         statusbar_progress_all(curnum, total, 100);
551                         if (curnum % 100 == 0)
552                                 GTK_EVENTS_FLUSH();
553                         curnum++;
554                 }
555
556                 debug_print("Copying message %s%c%d to %s ...\n",
557                             msginfo->folder->path, G_DIR_SEPARATOR,
558                             msginfo->msgnum, dest->path);
559
560
561                 if (MSG_IS_MOVE(msginfo->flags)) {
562                         msginfo->flags.tmp_flags &= ~MSG_MOVE_DONE;
563                         if (move_file(srcfile, destfile, TRUE) < 0) {
564                                 FILE_OP_ERROR(srcfile, "move");
565                                 if (copy_file(srcfile, destfile, TRUE) < 0) {
566                                         FILE_OP_ERROR(srcfile, "copy");
567                                         g_free(srcfile);
568                                         g_free(destfile);
569                                         goto err_reset_status;
570                                 }
571                         } else {
572                                 /* say unlinking's not necessary */
573                                 msginfo->flags.tmp_flags |= MSG_MOVE_DONE;
574                         }
575                 } else if (copy_file(srcfile, destfile, TRUE) < 0) {
576                         FILE_OP_ERROR(srcfile, "copy");
577                         g_free(srcfile);
578                         g_free(destfile);
579                         goto err_reset_status;
580                 } 
581                 if (prefs && prefs->enable_folder_chmod && prefs->folder_chmod) {
582                         if (chmod(destfile, prefs->folder_chmod) < 0)
583                                 FILE_OP_ERROR(destfile, "chmod");
584                 }
585                 if (relation) {
586                         if (g_hash_table_lookup(relation, msginfo) != NULL)
587                                 g_warning("already in : %p", msginfo);
588                         
589                         g_hash_table_insert(relation, msginfo, GINT_TO_POINTER(dest->last_num+1));
590                 }
591                 g_free(srcfile);
592                 g_free(destfile);
593                 dest->last_num++;
594         }
595
596         g_free(srcpath);
597         mh_write_sequences(dest, TRUE);
598
599         if (dest->mtime == last_dest_mtime && !dest_need_scan) {
600                 mh_set_mtime(folder, dest);
601         }
602
603         if (src && src->mtime == last_src_mtime && !src_need_scan) {
604                 mh_set_mtime(folder, src);
605         }
606
607         if (total > 100) {
608                 statusbar_progress_all(0,0,0);
609                 statusbar_pop_all();
610         }
611         return dest->last_num;
612 err_reset_status:
613         g_free(srcpath);
614         mh_write_sequences(dest, TRUE);
615         if (total > 100) {
616                 statusbar_progress_all(0,0,0);
617                 statusbar_pop_all();
618         }
619         return -1;
620
621 }
622
623 static gint mh_remove_msg(Folder *folder, FolderItem *item, gint num)
624 {
625         gboolean need_scan = FALSE;
626         time_t last_mtime = (time_t)0;
627         gchar *file;
628
629         cm_return_val_if_fail(item != NULL, -1);
630
631         file = mh_fetch_msg(folder, item, num);
632         cm_return_val_if_fail(file != NULL, -1);
633
634         need_scan = mh_scan_required(folder, item);
635         last_mtime = item->mtime;
636
637         if (claws_unlink(file) < 0) {
638                 FILE_OP_ERROR(file, "unlink");
639                 g_free(file);
640                 return -1;
641         }
642
643         if (item->mtime == last_mtime && !need_scan) {
644                 mh_set_mtime(folder, item);
645         }
646         g_free(file);
647         return 0;
648 }
649
650 static gint mh_remove_msgs(Folder *folder, FolderItem *item, 
651                     MsgInfoList *msglist, GHashTable *relation)
652 {
653         gboolean need_scan = FALSE;
654         gchar *path, *file;
655         time_t last_mtime = (time_t)0;
656         MsgInfoList *cur;
657         gint total = 0, curnum = 0;
658
659         cm_return_val_if_fail(item != NULL, -1);
660
661         path = folder_item_get_path(item);
662         
663         need_scan = mh_scan_required(folder, item);
664         last_mtime = item->mtime;
665
666         total = g_slist_length(msglist);
667         if (total > 100) {
668                 statusbar_print_all(_("Deleting messages..."));
669         }
670
671         for (cur = msglist; cur; cur = cur->next) {
672                 MsgInfo *msginfo = (MsgInfo *)cur->data;
673                 if (msginfo == NULL)
674                         continue;
675                 if (MSG_IS_MOVE(msginfo->flags) && MSG_IS_MOVE_DONE(msginfo->flags)) {
676                         msginfo->flags.tmp_flags &= ~MSG_MOVE_DONE;
677                         continue;
678                 }
679                 if (total > 100) {
680                         statusbar_progress_all(curnum, total, 100);
681                         if (curnum % 100 == 0)
682                                 GTK_EVENTS_FLUSH();
683                         curnum++;
684                 }
685
686                 file = g_strconcat(path, G_DIR_SEPARATOR_S, itos(msginfo->msgnum), NULL);
687                 if (file == NULL)
688                         continue;
689                 
690                 if (claws_unlink(file) < 0) {
691                         g_free(file);
692                         continue;
693                 }
694                 
695                 g_free(file);
696         }
697
698         if (total > 100) {
699                 statusbar_progress_all(0,0,0);
700                 statusbar_pop_all();
701         }
702         if (item->mtime == last_mtime && !need_scan) {
703                 mh_set_mtime(folder, item);
704         }
705
706         g_free(path);
707         return 0;
708 }
709
710 static gint mh_remove_all_msg(Folder *folder, FolderItem *item)
711 {
712         gchar *path;
713         gint val;
714
715         cm_return_val_if_fail(item != NULL, -1);
716
717         path = folder_item_get_path(item);
718         cm_return_val_if_fail(path != NULL, -1);
719         val = remove_all_numbered_files(path);
720         g_free(path);
721
722         mh_write_sequences(item, TRUE);
723
724         return val;
725 }
726
727 static gboolean mh_is_msg_changed(Folder *folder, FolderItem *item,
728                                   MsgInfo *msginfo)
729 {
730         struct stat s;
731
732         if (g_stat(itos(msginfo->msgnum), &s) < 0 ||
733             msginfo->size  != s.st_size || (
734                 (msginfo->mtime - s.st_mtime != 0) &&
735                 (msginfo->mtime - s.st_mtime != 3600) &&
736                 (msginfo->mtime - s.st_mtime != -3600)))
737                 return TRUE;
738
739         return FALSE;
740 }
741
742 static gint mh_scan_tree(Folder *folder)
743 {
744         FolderItem *item;
745         gchar *rootpath;
746
747         cm_return_val_if_fail(folder != NULL, -1);
748
749         if (!folder->node) {
750                 item = folder_item_new(folder, folder->name, NULL);
751                 item->folder = folder;
752                 folder->node = item->node = g_node_new(item);
753         } else
754                 item = FOLDER_ITEM(folder->node->data);
755
756         rootpath = folder_item_get_path(item);
757         if (change_dir(rootpath) < 0) {
758                 g_free(rootpath);
759                 return -1;
760         }
761         g_free(rootpath);
762
763         mh_create_tree(folder);
764         mh_remove_missing_folder_items(folder);
765         mh_scan_tree_recursive(item);
766
767         return 0;
768 }
769
770 #define MAKE_DIR_IF_NOT_EXIST(dir) \
771 { \
772         if (!is_dir_exist(dir)) { \
773                 if (is_file_exist(dir)) { \
774                         g_warning("File `%s' already exists.\n" \
775                                     "Can't create folder.", dir); \
776                         return -1; \
777                 } \
778                 if (make_dir_hier(dir) < 0) \
779                         return -1; \
780         } \
781 }
782
783 static gint mh_create_tree(Folder *folder)
784 {
785         gchar *rootpath, *f;
786
787         cm_return_val_if_fail(folder != NULL, -1);
788
789         CHDIR_RETURN_VAL_IF_FAIL(get_mail_base_dir(), -1);
790         rootpath = LOCAL_FOLDER(folder)->rootpath;
791         MAKE_DIR_IF_NOT_EXIST(rootpath);
792         CHDIR_RETURN_VAL_IF_FAIL(rootpath, -1);
793
794         /* Create special directories as needed */
795         if (folder->inbox != NULL &&
796                         folder->inbox->path != NULL)
797                 f = folder->inbox->path;
798         else
799                 f = INBOX_DIR;
800         MAKE_DIR_IF_NOT_EXIST(f);
801
802         if (folder->outbox != NULL &&
803                         folder->outbox->path != NULL)
804                 f = folder->outbox->path;
805         else
806                 f = OUTBOX_DIR;
807         MAKE_DIR_IF_NOT_EXIST(f);
808
809         if (folder->draft != NULL &&
810                         folder->draft->path != NULL)
811                 f = folder->draft->path;
812         else
813                 f = DRAFT_DIR;
814         MAKE_DIR_IF_NOT_EXIST(f);
815
816         if (folder->queue != NULL &&
817                         folder->queue->path != NULL)
818                 f = folder->queue->path;
819         else
820                 f = QUEUE_DIR;
821         MAKE_DIR_IF_NOT_EXIST(f);
822
823         if (folder->trash != NULL &&
824                         folder->trash->path != NULL)
825                 f = folder->trash->path;
826         else
827                 f = TRASH_DIR;
828         MAKE_DIR_IF_NOT_EXIST(f);
829
830         return 0;
831 }
832
833 #undef MAKE_DIR_IF_NOT_EXIST
834
835 static gchar *mh_item_get_path(Folder *folder, FolderItem *item)
836 {
837         gchar *folder_path, *path;
838         gchar *real_path;
839         cm_return_val_if_fail(folder != NULL, NULL);
840         cm_return_val_if_fail(item != NULL, NULL);
841
842         folder_path = g_strdup(LOCAL_FOLDER(folder)->rootpath);
843         cm_return_val_if_fail(folder_path != NULL, NULL);
844
845         /* FIXME: [W32] The code below does not correctly merge
846            relative filenames; there should be a function to handle
847            this.  */
848         if ( !is_relative_filename (folder_path) ) {
849                 if (item->path)
850                         path = g_strconcat(folder_path, G_DIR_SEPARATOR_S,
851                                            item->path, NULL);
852                 else
853                         path = g_strdup(folder_path);
854         } else {
855                 if (item->path)
856                         path = g_strconcat(get_home_dir(), G_DIR_SEPARATOR_S,
857                                            folder_path, G_DIR_SEPARATOR_S,
858                                            item->path, NULL);
859                 else
860                         path = g_strconcat(get_home_dir(), G_DIR_SEPARATOR_S,
861                                            folder_path, NULL);
862         }
863         g_free(folder_path);
864         real_path = mh_filename_from_utf8(path);
865         if (!is_dir_exist(real_path) && is_dir_exist(path)) {
866                 /* mmh, older version did put utf8 filenames instead of
867                  * the correct encoding */
868                 if (g_rename(path, real_path) == 0)
869                         folder_item_scan(item);
870         }
871
872         g_free(path);
873         return real_path;
874 }
875
876 static gboolean mh_renumber_msg(MsgInfo *info)
877 {
878         gchar *src, *dest;
879         gboolean result = FALSE;
880         guint num;
881         cm_return_val_if_fail(info != NULL, FALSE);
882
883         src = folder_item_fetch_msg(info->folder, info->msgnum);
884         dest = mh_get_new_msg_filename(info->folder);
885         num = info->folder->last_num + 1;
886
887         if (move_file(src, dest, FALSE) == 0) {
888                 msgcache_remove_msg(info->folder->cache, info->msgnum);
889                 info->msgnum = num;
890                 msgcache_add_msg(info->folder->cache, info);
891                 result = TRUE;
892         }
893
894         g_free(src);
895         g_free(dest);
896
897         return result;
898 }
899
900 static FolderItem *mh_create_folder(Folder *folder, FolderItem *parent,
901                                     const gchar *name)
902 {
903         gchar *path, *real_name;
904         gchar *fullpath;
905         FolderItem *new_item;
906         gchar *mh_sequences_filename;
907         FILE *mh_sequences_file;
908
909         cm_return_val_if_fail(folder != NULL, NULL);
910         cm_return_val_if_fail(parent != NULL, NULL);
911         cm_return_val_if_fail(name != NULL, NULL);
912
913         path = folder_item_get_path(parent);
914         if (!is_dir_exist(path)) 
915                 if (make_dir_hier(path) != 0)
916                         return NULL;
917
918         real_name = mh_filename_from_utf8(name);
919         fullpath = g_strconcat(path, G_DIR_SEPARATOR_S, real_name, NULL);
920         g_free(real_name);
921         g_free(path);
922
923         if (to_number(name) > 0) {
924                 MsgInfo *info = folder_item_get_msginfo(parent, to_number(name));
925                 if (info != NULL) {
926                         gboolean ok = mh_renumber_msg(info);
927                         procmsg_msginfo_free(info);
928                         if (!ok) {
929                                 g_free(fullpath);
930                                 return NULL;
931                         }
932                 }
933         }
934
935         if (make_dir(fullpath) < 0) {
936                 g_free(fullpath);
937                 return NULL;
938         }
939
940         g_free(fullpath);
941
942         if (parent->path)
943                 path = g_strconcat(parent->path, G_DIR_SEPARATOR_S, name,
944                                    NULL);
945         else
946                 path = g_strdup(name);
947         new_item = folder_item_new(folder, name, path);
948         folder_item_append(parent, new_item);
949
950         g_free(path);
951
952         path = folder_item_get_path(new_item);
953         mh_sequences_filename = g_strconcat(path, G_DIR_SEPARATOR_S,
954                                             ".mh_sequences", NULL);
955         if ((mh_sequences_file = g_fopen(mh_sequences_filename, "a+b")) != NULL) {
956                 fclose(mh_sequences_file);
957         }
958         g_free(mh_sequences_filename);
959         g_free(path);
960
961         return new_item;
962 }
963
964 static gint mh_rename_folder(Folder *folder, FolderItem *item,
965                              const gchar *name)
966 {
967         gchar *real_name;
968         gchar *oldpath;
969         gchar *dirname;
970         gchar *newpath, *utf8newpath;
971         gchar *paths[2];
972
973         cm_return_val_if_fail(folder != NULL, -1);
974         cm_return_val_if_fail(item != NULL, -1);
975         cm_return_val_if_fail(item->path != NULL, -1);
976         cm_return_val_if_fail(name != NULL, -1);
977
978         oldpath = folder_item_get_path(item);
979         if (!is_dir_exist(oldpath))
980                 make_dir_hier(oldpath);
981
982         dirname = g_path_get_dirname(oldpath);
983         real_name = mh_filename_from_utf8(name);
984         newpath = g_strconcat(dirname, G_DIR_SEPARATOR_S, real_name, NULL);
985         g_free(real_name);
986
987         if (g_rename(oldpath, newpath) < 0) {
988                 FILE_OP_ERROR(oldpath, "rename");
989                 g_free(oldpath);
990                 g_free(newpath);
991                 return -1;
992         }
993
994         g_free(oldpath);
995         g_free(newpath);
996
997         if (strchr(item->path, G_DIR_SEPARATOR) != NULL) {
998                 dirname = g_path_get_dirname(item->path);
999                 utf8newpath = g_strconcat(dirname, G_DIR_SEPARATOR_S,
1000                                           name, NULL);
1001                 g_free(dirname);
1002         } else
1003                 utf8newpath = g_strdup(name);
1004
1005         g_free(item->name);
1006         item->name = g_strdup(name);
1007
1008         paths[0] = g_strdup(item->path);
1009         paths[1] = utf8newpath;
1010         g_node_traverse(item->node, G_PRE_ORDER, G_TRAVERSE_ALL, -1,
1011                         mh_rename_folder_func, paths);
1012
1013         g_free(paths[0]);
1014         g_free(paths[1]);
1015         return 0;
1016 }
1017
1018 static gint mh_remove_folder(Folder *folder, FolderItem *item)
1019 {
1020         gchar *path;
1021
1022         cm_return_val_if_fail(folder != NULL, -1);
1023         cm_return_val_if_fail(item != NULL, -1);
1024         cm_return_val_if_fail(item->path != NULL, -1);
1025
1026         path = folder_item_get_path(item);
1027         if (remove_dir_recursive(path) < 0) {
1028                 g_warning("can't remove directory `%s'\n", path);
1029                 g_free(path);
1030                 return -1;
1031         }
1032
1033         g_free(path);
1034         folder_item_remove(item);
1035         return 0;
1036 }
1037
1038 static MsgInfo *mh_parse_msg(const gchar *file, FolderItem *item)
1039 {
1040         MsgInfo *msginfo;
1041         MsgFlags flags;
1042
1043         cm_return_val_if_fail(item != NULL, NULL);
1044         cm_return_val_if_fail(file != NULL, NULL);
1045
1046         flags.perm_flags = MSG_NEW|MSG_UNREAD;
1047         flags.tmp_flags = 0;
1048
1049         if (folder_has_parent_of_type(item, F_QUEUE)) {
1050                 MSG_SET_TMP_FLAGS(flags, MSG_QUEUED);
1051         } else if (folder_has_parent_of_type(item, F_DRAFT)) {
1052                 MSG_SET_TMP_FLAGS(flags, MSG_DRAFT);
1053         }
1054
1055         msginfo = procheader_parse_file(file, flags, FALSE, FALSE);
1056         if (!msginfo) return NULL;
1057
1058         msginfo->msgnum = atoi(file);
1059         msginfo->folder = item;
1060
1061         return msginfo;
1062 }
1063
1064 static gboolean mh_remove_missing_folder_items_func(GNode *node, gpointer data)
1065 {
1066         FolderItem *item;
1067         gchar *path;
1068
1069         cm_return_val_if_fail(node->data != NULL, FALSE);
1070
1071         if (G_NODE_IS_ROOT(node))
1072                 return FALSE;
1073
1074         item = FOLDER_ITEM(node->data);
1075
1076         path = folder_item_get_path(item);
1077         if (!is_dir_exist(path)) {
1078                 debug_print("folder '%s' not found. removing...\n", path?path:"(null)");
1079                 folder_item_remove(item);
1080         }
1081         g_free(path);
1082
1083         return FALSE;
1084 }
1085
1086 static void mh_remove_missing_folder_items(Folder *folder)
1087 {
1088         cm_return_if_fail(folder != NULL);
1089
1090         debug_print("searching missing folders...\n");
1091
1092         g_node_traverse(folder->node, G_POST_ORDER, G_TRAVERSE_ALL, -1,
1093                         mh_remove_missing_folder_items_func, folder);
1094 }
1095
1096 static void mh_scan_tree_recursive(FolderItem *item)
1097 {
1098         Folder *folder;
1099 #ifdef G_OS_WIN32
1100         GDir *dir;
1101 #else
1102         DIR *dp;
1103         struct dirent *d;
1104 #endif
1105         const gchar *dir_name;
1106         struct stat s;
1107         gchar *real_path, *entry, *utf8entry, *utf8name;
1108         gint n_msg = 0;
1109
1110         cm_return_if_fail(item != NULL);
1111         cm_return_if_fail(item->folder != NULL);
1112
1113         folder = item->folder;
1114
1115         real_path = item->path ? mh_filename_from_utf8(item->path) : g_strdup(".");
1116 #ifdef G_OS_WIN32
1117         dir = g_dir_open(real_path, 0, NULL);
1118         if (!dir) {
1119                 g_warning("failed to open directory: %s\n", real_path);
1120                 g_free(real_path);
1121                 return;
1122         }
1123 #else
1124         dp = opendir(real_path);
1125         if (!dp) {
1126                 FILE_OP_ERROR(real_path, "opendir");
1127                 return;
1128         }
1129 #endif
1130         g_free(real_path);
1131
1132         debug_print("scanning %s ...\n",
1133                     item->path ? item->path
1134                     : LOCAL_FOLDER(item->folder)->rootpath);
1135         if (folder->ui_func)
1136                 folder->ui_func(folder, item, folder->ui_func_data);
1137
1138 #ifdef G_OS_WIN32
1139         while ((dir_name = g_dir_read_name(dir)) != NULL) {
1140 #else
1141         while ((d = readdir(dp)) != NULL) {
1142                 dir_name = d->d_name;
1143 #endif
1144                 if (dir_name[0] == '.') continue;
1145
1146                 utf8name = mh_filename_to_utf8(dir_name);
1147                 if (item->path)
1148                         utf8entry = g_strconcat(item->path, G_DIR_SEPARATOR_S,
1149                                                 utf8name, NULL);
1150                 else
1151                         utf8entry = g_strdup(utf8name);
1152                 entry = mh_filename_from_utf8(utf8entry);
1153
1154                 if (
1155 #if !defined(G_OS_WIN32) && defined(HAVE_DIRENT_D_TYPE)
1156                         d->d_type == DT_DIR ||
1157                         (d->d_type == DT_UNKNOWN &&
1158 #endif
1159                         g_stat(entry, &s) == 0 && S_ISDIR(s.st_mode)
1160 #if !defined(G_OS_WIN32) && defined(HAVE_DIRENT_D_TYPE)
1161                         )
1162 #endif
1163                    ) {
1164                         FolderItem *new_item = NULL;
1165                         GNode *node;
1166
1167                         node = item->node;
1168                         for (node = node->children; node != NULL; node = node->next) {
1169                                 FolderItem *cur_item = FOLDER_ITEM(node->data);
1170                                 gchar *curpath = mh_filename_from_utf8(cur_item->path);
1171                                 if (!strcmp2(curpath, entry)) {
1172                                         new_item = cur_item;
1173                                         g_free(curpath);
1174                                         break;
1175                                 }
1176                                 g_free(curpath);
1177                         }
1178                         if (!new_item) {
1179                                 debug_print("new folder '%s' found.\n", entry);
1180                                 new_item = folder_item_new(folder, utf8name, utf8entry);
1181                                 folder_item_append(item, new_item);
1182                         }
1183
1184                         if (!item->path) {
1185                                 if (!folder->inbox &&
1186                                     !strcmp(dir_name, INBOX_DIR)) {
1187                                         new_item->stype = F_INBOX;
1188                                         folder->inbox = new_item;
1189                                 } else if (!folder->outbox &&
1190                                            !strcmp(dir_name, OUTBOX_DIR)) {
1191                                         new_item->stype = F_OUTBOX;
1192                                         folder->outbox = new_item;
1193                                 } else if (!folder->draft &&
1194                                            !strcmp(dir_name, DRAFT_DIR)) {
1195                                         new_item->stype = F_DRAFT;
1196                                         folder->draft = new_item;
1197                                 } else if (!folder->queue &&
1198                                            !strcmp(dir_name, QUEUE_DIR)) {
1199                                         new_item->stype = F_QUEUE;
1200                                         folder->queue = new_item;
1201                                 } else if (!folder->trash &&
1202                                            !strcmp(dir_name, TRASH_DIR)) {
1203                                         new_item->stype = F_TRASH;
1204                                         folder->trash = new_item;
1205                                 }
1206                         }
1207
1208                         mh_scan_tree_recursive(new_item);
1209                 } else if (to_number(dir_name) > 0) n_msg++;
1210
1211                 g_free(entry);
1212                 g_free(utf8entry);
1213                 g_free(utf8name);
1214         }
1215
1216 #ifdef G_OS_WIN32
1217         g_dir_close(dir);
1218 #else
1219         closedir(dp);
1220 #endif
1221
1222         mh_set_mtime(folder, item);
1223 }
1224
1225 static gboolean mh_rename_folder_func(GNode *node, gpointer data)
1226 {
1227         FolderItem *item = node->data;
1228         gchar **paths = data;
1229         const gchar *oldpath = paths[0];
1230         const gchar *newpath = paths[1];
1231         gchar *base;
1232         gchar *new_itempath;
1233         gint oldpathlen;
1234
1235         oldpathlen = strlen(oldpath);
1236         if (strncmp(oldpath, item->path, oldpathlen) != 0) {
1237                 g_warning("path doesn't match: %s, %s\n", oldpath, item->path);
1238                 return TRUE;
1239         }
1240
1241         base = item->path + oldpathlen;
1242         while (*base == G_DIR_SEPARATOR) base++;
1243         if (*base == '\0')
1244                 new_itempath = g_strdup(newpath);
1245         else
1246                 new_itempath = g_strconcat(newpath, G_DIR_SEPARATOR_S, base,
1247                                            NULL);
1248         g_free(item->path);
1249         item->path = new_itempath;
1250
1251         return FALSE;
1252 }
1253
1254 static gchar *mh_filename_from_utf8(const gchar *path)
1255 {
1256         gchar *real_path = g_filename_from_utf8(path, -1, NULL, NULL, NULL);
1257
1258         if (!real_path) {
1259                 g_warning("mh_filename_from_utf8: failed to convert character set\n");
1260                 real_path = g_strdup(path);
1261         }
1262
1263         return real_path;
1264 }
1265
1266 static gchar *mh_filename_to_utf8(const gchar *path)
1267 {
1268         gchar *utf8path = g_filename_to_utf8(path, -1, NULL, NULL, NULL);
1269         if (!utf8path) {
1270                 g_warning("mh_filename_to_utf8: failed to convert character set\n");
1271                 utf8path = g_strdup(path);
1272         }
1273
1274         return utf8path;
1275 }
1276
1277 static gint sort_cache_list_by_msgnum(gconstpointer a, gconstpointer b)
1278 {
1279         MsgInfo *msginfo_a = (MsgInfo *) a;
1280         MsgInfo *msginfo_b = (MsgInfo *) b;
1281
1282         return (msginfo_a->msgnum - msginfo_b->msgnum);
1283 }
1284
1285 static gchar *get_unseen_seq_name(void)
1286 {
1287         static gchar *seq_name = NULL;
1288         if (!seq_name) {
1289                 gchar buf[BUFFSIZE];
1290                 gchar *tmp;
1291                 gchar *profile_path = g_strconcat(
1292                         get_home_dir(), G_DIR_SEPARATOR_S,
1293                         ".mh_profile", NULL);
1294                 FILE *fp = g_fopen(profile_path, "r");
1295                 if (fp) {
1296                         while (fgets(buf, sizeof(buf), fp) != NULL) {
1297                                 if (!strncmp(buf, "Unseen-Sequence:", strlen("Unseen-Sequence:"))) {
1298                                         gchar *seq_tmp = buf+strlen("Unseen-Sequence:");
1299                                         while (*seq_tmp == ' ')
1300                                                 seq_tmp++;
1301                                         seq_name = g_strdup(seq_tmp);
1302                                         seq_name = strretchomp(seq_name);
1303                                         break;
1304                                 }
1305                         }
1306                         fclose(fp);
1307                 }
1308                 if (!seq_name)
1309                         seq_name = g_strdup("unseen");
1310                 tmp = g_strdup_printf("%s:", seq_name);
1311                 g_free(seq_name);
1312                 seq_name = tmp;
1313         }
1314         return seq_name;        
1315 }
1316
1317 static void mh_write_sequences(FolderItem *item, gboolean remove_unseen)
1318 {
1319         gchar *mh_sequences_old, *mh_sequences_new;
1320         FILE *mh_sequences_old_fp, *mh_sequences_new_fp;
1321         gchar buf[BUFFSIZE];
1322         gchar *path = NULL;
1323         gboolean err = FALSE;
1324         START_TIMING("");
1325
1326         if (!item)
1327                 return;
1328         
1329         path = folder_item_get_path(item);
1330
1331         mh_sequences_old = g_strconcat(path, G_DIR_SEPARATOR_S,
1332                                             ".mh_sequences", NULL);
1333         mh_sequences_new = g_strconcat(path, G_DIR_SEPARATOR_S,
1334                                             ".mh_sequences.new", NULL);
1335         if ((mh_sequences_new_fp = g_fopen(mh_sequences_new, "w+b")) != NULL) {
1336                 GSList *msglist = folder_item_get_msg_list(item);
1337                 GSList *cur;
1338                 MsgInfo *info = NULL;
1339                 gint start = -1, end = -1;
1340                 gchar *sequence = g_strdup("");
1341                 gint seq_len = 0;
1342                 msglist = g_slist_sort(msglist, sort_cache_list_by_msgnum);
1343                 cur = msglist;
1344                 
1345                 /* write the unseen sequence if we don't have to scrap it */
1346                 if (!remove_unseen) do {
1347                         info = (MsgInfo *)(cur ? cur->data:NULL);
1348                         if (info && (MSG_IS_UNREAD(info->flags) || MSG_IS_NEW(info->flags))) {
1349                                 if (start < 0)
1350                                         start = end = info->msgnum;
1351                                 else
1352                                         end = info->msgnum;
1353                         } else {
1354                                 if (start > 0 && end > 0) {
1355                                         gchar tmp[32];
1356                                         gint tmp_len = 0;
1357                                         if (start != end)
1358                                                 snprintf(tmp, 31, " %d-%d", start, end);
1359                                         else
1360                                                 snprintf(tmp, 31, " %d", start);
1361                                         
1362                                         tmp_len = strlen(tmp);
1363                                         sequence = g_realloc(sequence, seq_len+tmp_len+1);
1364                                         strcpy(sequence+seq_len, tmp);
1365                                         seq_len += tmp_len;
1366
1367                                         start = end = -1;
1368                                 }
1369                         }
1370                         cur = cur ? cur->next:NULL;
1371                 } while (cur || (start > 0 && end > 0));
1372                 if (sequence && *sequence) {
1373                         if (fprintf(mh_sequences_new_fp, "%s%s\n", 
1374                                         get_unseen_seq_name(), sequence) < 0)
1375                                 err = TRUE;
1376                         else
1377                                 debug_print("wrote unseen sequence: '%s%s'\n", 
1378                                         get_unseen_seq_name(), sequence);
1379                 }
1380                 /* rewrite the rest of the file */
1381                 if ((mh_sequences_old_fp = g_fopen(mh_sequences_old, "r+b")) != NULL) {
1382                         while (fgets(buf, sizeof(buf), mh_sequences_old_fp) != NULL) {
1383                                 if (strncmp(buf, get_unseen_seq_name(), strlen(get_unseen_seq_name())))
1384                                         if (fprintf(mh_sequences_new_fp, "%s", buf) < 0) {
1385                                                 err = TRUE;
1386                                                 break;
1387                                         }
1388                         }
1389                         fclose(mh_sequences_old_fp);
1390                 }
1391                 
1392                 fflush(mh_sequences_new_fp);
1393 #if 0
1394                 fsync(fileno(mh_sequences_new_fp));
1395 #endif
1396                 if (fclose(mh_sequences_new_fp) == EOF)
1397                         err = TRUE;
1398
1399                 if (!err) {
1400                         if (g_rename(mh_sequences_new, mh_sequences_old) < 0)
1401                                 FILE_OP_ERROR(mh_sequences_new, "rename");
1402                 }
1403                 g_free(sequence);
1404                 procmsg_msg_list_free(msglist);
1405         }
1406         g_free(mh_sequences_old);
1407         g_free(mh_sequences_new);
1408         g_free(path);
1409
1410         END_TIMING();
1411 }
1412
1413 static int mh_item_close(Folder *folder, FolderItem *item)
1414 {
1415         time_t last_mtime = (time_t)0;
1416         gboolean need_scan = mh_scan_required(item->folder, item);
1417         last_mtime = item->mtime;
1418
1419         mh_write_sequences(item, FALSE);
1420
1421         if (item->mtime == last_mtime && !need_scan) {
1422                 mh_set_mtime(folder, item);
1423         }
1424
1425         return 0;
1426 }
1427
1428 static void mh_set_mtime(Folder *folder, FolderItem *item)
1429 {
1430         struct stat s;
1431         gchar *path = folder_item_get_path(item);
1432
1433         cm_return_if_fail(path != NULL);
1434
1435         if (g_stat(path, &s) < 0) {
1436                 FILE_OP_ERROR(path, "stat");
1437                 g_free(path);
1438                 return;
1439         }
1440
1441         item->mtime = s.st_mtime;
1442         debug_print("MH: forced mtime of %s to %ld\n", item->name?item->name:"(null)", item->mtime);
1443         g_free(path);
1444 }