43e9c350361ae8d5df58d031b99f656cf4e760ed
[apps/madmutt.git] / mh.c
1 /*
2  * Copyright notice from original mutt:
3  * Copyright (C) 1996-2002 Michael R. Elkins <me@mutt.org>
4  * Copyright (C) 1999-2002 Thomas Roessler <roessler@does-not-exist.org>
5  *
6  * This file is part of mutt-ng, see http://www.muttng.org/.
7  * It's licensed under the GNU General Public License,
8  * please see the file GPL in the top level source directory.
9  */
10
11 /*
12  * This file contains routines specific to MH and ``maildir'' style
13  * mailboxes.
14  */
15
16 #if HAVE_CONFIG_H
17 # include "config.h"
18 #endif
19
20 #include "mutt.h"
21 #include "mx.h"
22 #include "mh.h"
23 #include "mbox.h"
24 #include "copy.h"
25 #include "buffy.h"
26 #include "sort.h"
27
28 #include "lib/mem.h"
29 #include "lib/intl.h"
30 #include "lib/str.h"
31
32 #include <sys/stat.h>
33 #include <sys/types.h>
34 #include <dirent.h>
35 #include <limits.h>
36 #include <unistd.h>
37 #include <fcntl.h>
38
39 #include <stdio.h>
40 #include <stdlib.h>
41 #include <ctype.h>
42 #include <errno.h>
43 #include <string.h>
44 #include <utime.h>
45
46 #if HAVE_SYS_TIME_H
47 #include <sys/time.h>
48 #endif
49
50 struct maildir {
51   HEADER *h;
52   char *canon_fname;
53   unsigned header_parsed:1;
54 #ifdef USE_INODESORT
55   ino_t inode;
56 #endif /* USE_INODESORT */
57   struct maildir *next;
58 };
59
60 struct mh_sequences {
61   int max;
62   short *flags;
63 };
64
65 /* mh_sequences support */
66
67 #define MH_SEQ_UNSEEN  (1 << 0)
68 #define MH_SEQ_REPLIED (1 << 1)
69 #define MH_SEQ_FLAGGED (1 << 2)
70
71 static void mhs_alloc (struct mh_sequences *mhs, int i)
72 {
73   int j;
74   int newmax;
75
76   if (i > mhs->max || !mhs->flags) {
77     newmax = i + 128;
78     safe_realloc (&mhs->flags, sizeof (mhs->flags[0]) * (newmax + 1));
79     for (j = mhs->max + 1; j <= newmax; j++)
80       mhs->flags[j] = 0;
81
82     mhs->max = newmax;
83   }
84 }
85
86 static void mhs_free_sequences (struct mh_sequences *mhs)
87 {
88   FREE (&mhs->flags);
89 }
90
91 static short mhs_check (struct mh_sequences *mhs, int i)
92 {
93   if (!mhs->flags || i > mhs->max)
94     return 0;
95   else
96     return mhs->flags[i];
97 }
98
99 static short mhs_set (struct mh_sequences *mhs, int i, short f)
100 {
101   mhs_alloc (mhs, i);
102   mhs->flags[i] |= f;
103   return mhs->flags[i];
104 }
105
106 #if 0
107
108 /* unused */
109
110 static short mhs_unset (struct mh_sequences *mhs, int i, short f)
111 {
112   mhs_alloc (mhs, i);
113   mhs->flags[i] &= ~f;
114   return mhs->flags[i];
115 }
116
117 #endif
118
119 static void mh_read_token (char *t, int *first, int *last)
120 {
121   char *p;
122
123   if ((p = strchr (t, '-'))) {
124     *p++ = '\0';
125     *first = atoi (t);
126     *last = atoi (p);
127   }
128   else
129     *first = *last = atoi (t);
130 }
131
132 static void mh_read_sequences (struct mh_sequences *mhs, const char *path)
133 {
134   FILE *fp;
135   int line = 1;
136   char *buff = NULL;
137   char *t;
138   size_t sz = 0;
139
140   short f;
141   int first, last;
142
143   char pathname[_POSIX_PATH_MAX];
144
145   snprintf (pathname, sizeof (pathname), "%s/.mh_sequences", path);
146
147   if (!(fp = fopen (pathname, "r")))
148     return;
149
150   while ((buff = mutt_read_line (buff, &sz, fp, &line))) {
151     if (!(t = strtok (buff, " \t:")))
152       continue;
153
154     if (!safe_strcmp (t, MhUnseen))
155       f = MH_SEQ_UNSEEN;
156     else if (!safe_strcmp (t, MhFlagged))
157       f = MH_SEQ_FLAGGED;
158     else if (!safe_strcmp (t, MhReplied))
159       f = MH_SEQ_REPLIED;
160     else                        /* unknown sequence */
161       continue;
162
163     while ((t = strtok (NULL, " \t:"))) {
164       mh_read_token (t, &first, &last);
165       for (; first <= last; first++)
166         mhs_set (mhs, first, f);
167     }
168   }
169
170   FREE (&buff);
171   safe_fclose (&fp);
172 }
173
174 int mh_buffy (const char *path)
175 {
176   int i, r = 0;
177   struct mh_sequences mhs;
178
179   memset (&mhs, 0, sizeof (mhs));
180
181   mh_read_sequences (&mhs, path);
182   for (i = 0; !r && i <= mhs.max; i++)
183     if (mhs_check (&mhs, i) & MH_SEQ_UNSEEN)
184       r = 1;
185   mhs_free_sequences (&mhs);
186   return r;
187 }
188
189 static int mh_mkstemp (CONTEXT * dest, FILE ** fp, char **tgt)
190 {
191   int fd;
192   char path[_POSIX_PATH_MAX];
193
194   FOREVER {
195     snprintf (path, _POSIX_PATH_MAX, "%s/.mutt-%s-%d-%d",
196               dest->path, NONULL (Hostname), (int) getpid (), Counter++);
197     umask (Umask);
198     if ((fd = open (path, O_WRONLY | O_EXCL | O_CREAT, 0666)) == -1) {
199       if (errno != EEXIST) {
200         mutt_perror (path);
201         return -1;
202       }
203     }
204     else {
205       *tgt = safe_strdup (path);
206       break;
207     }
208   }
209
210   if ((*fp = fdopen (fd, "w")) == NULL) {
211     FREE (tgt);
212     close (fd);
213     unlink (path);
214     return (-1);
215   }
216
217   return 0;
218 }
219
220 static void mhs_write_one_sequence (FILE * fp, struct mh_sequences *mhs,
221                                     short f, const char *tag)
222 {
223   int i;
224   int first, last;
225
226   fprintf (fp, "%s:", tag);
227
228   first = -1;
229   last = -1;
230
231   for (i = 0; i <= mhs->max; i++) {
232     if ((mhs_check (mhs, i) & f)) {
233       if (first < 0)
234         first = i;
235       else
236         last = i;
237     }
238     else if (first >= 0) {
239       if (last < 0)
240         fprintf (fp, " %d", first);
241       else
242         fprintf (fp, " %d-%d", first, last);
243
244       first = -1;
245       last = -1;
246     }
247   }
248
249   if (first >= 0) {
250     if (last < 0)
251       fprintf (fp, " %d", first);
252     else
253       fprintf (fp, " %d-%d", first, last);
254   }
255
256   fputc ('\n', fp);
257 }
258
259 /* XXX - we don't currently remove deleted messages from sequences we don't know.  Should we? */
260
261 void mh_update_sequences (CONTEXT * ctx)
262 {
263   FILE *ofp, *nfp;
264
265   char sequences[_POSIX_PATH_MAX];
266   char *tmpfname;
267   char *buff = NULL;
268   char *p;
269   size_t s;
270   int l = 0;
271   int i;
272
273   int unseen = 0;
274   int flagged = 0;
275   int replied = 0;
276
277   char seq_unseen[STRING];
278   char seq_replied[STRING];
279   char seq_flagged[STRING];
280
281
282   struct mh_sequences mhs;
283
284   memset (&mhs, 0, sizeof (mhs));
285
286   snprintf (seq_unseen, sizeof (seq_unseen), "%s:", NONULL (MhUnseen));
287   snprintf (seq_replied, sizeof (seq_replied), "%s:", NONULL (MhReplied));
288   snprintf (seq_flagged, sizeof (seq_flagged), "%s:", NONULL (MhFlagged));
289
290   if (mh_mkstemp (ctx, &nfp, &tmpfname) != 0) {
291     /* error message? */
292     return;
293   }
294
295   snprintf (sequences, sizeof (sequences), "%s/.mh_sequences", ctx->path);
296
297
298   /* first, copy unknown sequences */
299   if ((ofp = fopen (sequences, "r"))) {
300     while ((buff = mutt_read_line (buff, &s, ofp, &l))) {
301       if (!safe_strncmp (buff, seq_unseen, safe_strlen (seq_unseen)))
302         continue;
303       if (!safe_strncmp (buff, seq_flagged, safe_strlen (seq_flagged)))
304         continue;
305       if (!safe_strncmp (buff, seq_replied, safe_strlen (seq_replied)))
306         continue;
307
308       fprintf (nfp, "%s\n", buff);
309     }
310   }
311   safe_fclose (&ofp);
312
313   /* now, update our unseen, flagged, and replied sequences */
314   for (l = 0; l < ctx->msgcount; l++) {
315     if (ctx->hdrs[l]->deleted)
316       continue;
317
318     if ((p = strrchr (ctx->hdrs[l]->path, '/')))
319       p++;
320     else
321       p = ctx->hdrs[l]->path;
322
323     i = atoi (p);
324
325     if (!ctx->hdrs[l]->read) {
326       mhs_set (&mhs, i, MH_SEQ_UNSEEN);
327       unseen++;
328     }
329     if (ctx->hdrs[l]->flagged) {
330       mhs_set (&mhs, i, MH_SEQ_FLAGGED);
331       flagged++;
332     }
333     if (ctx->hdrs[l]->replied) {
334       mhs_set (&mhs, i, MH_SEQ_REPLIED);
335       replied++;
336     }
337   }
338
339   /* write out the new sequences */
340   if (unseen)
341     mhs_write_one_sequence (nfp, &mhs, MH_SEQ_UNSEEN, NONULL (MhUnseen));
342   if (flagged)
343     mhs_write_one_sequence (nfp, &mhs, MH_SEQ_FLAGGED, NONULL (MhFlagged));
344   if (replied)
345     mhs_write_one_sequence (nfp, &mhs, MH_SEQ_REPLIED, NONULL (MhReplied));
346
347   mhs_free_sequences (&mhs);
348
349
350   /* try to commit the changes - no guarantee here */
351   safe_fclose (&nfp);
352
353   unlink (sequences);
354   if (safe_rename (tmpfname, sequences) != 0) {
355     /* report an error? */
356     unlink (tmpfname);
357   }
358
359   FREE (&tmpfname);
360 }
361
362 static void mh_sequences_add_one (CONTEXT * ctx, int n, short unseen,
363                                   short flagged, short replied)
364 {
365   short unseen_done = 0;
366   short flagged_done = 0;
367   short replied_done = 0;
368
369   FILE *ofp = NULL, *nfp = NULL;
370
371   char *tmpfname;
372   char sequences[_POSIX_PATH_MAX];
373
374   char seq_unseen[STRING];
375   char seq_replied[STRING];
376   char seq_flagged[STRING];
377
378   char *buff = NULL;
379   int line;
380   size_t sz;
381
382   if (mh_mkstemp (ctx, &nfp, &tmpfname) == -1)
383     return;
384
385   snprintf (seq_unseen, sizeof (seq_unseen), "%s:", NONULL (MhUnseen));
386   snprintf (seq_replied, sizeof (seq_replied), "%s:", NONULL (MhReplied));
387   snprintf (seq_flagged, sizeof (seq_flagged), "%s:", NONULL (MhFlagged));
388
389   snprintf (sequences, sizeof (sequences), "%s/.mh_sequences", ctx->path);
390   if ((ofp = fopen (sequences, "r"))) {
391     while ((buff = mutt_read_line (buff, &sz, ofp, &line))) {
392       if (unseen && !strncmp (buff, seq_unseen, safe_strlen (seq_unseen))) {
393         fprintf (nfp, "%s %d\n", buff, n);
394         unseen_done = 1;
395       }
396       else if (flagged
397                && !strncmp (buff, seq_flagged, safe_strlen (seq_flagged))) {
398         fprintf (nfp, "%s %d\n", buff, n);
399         flagged_done = 1;
400       }
401       else if (replied
402                && !strncmp (buff, seq_replied, safe_strlen (seq_replied))) {
403         fprintf (nfp, "%s %d\n", buff, n);
404         replied_done = 1;
405       }
406       else
407         fprintf (nfp, "%s\n", buff);
408     }
409   }
410   safe_fclose (&ofp);
411   FREE (&buff);
412
413   if (!unseen_done && unseen)
414     fprintf (nfp, "%s: %d\n", NONULL (MhUnseen), n);
415   if (!flagged_done && flagged)
416     fprintf (nfp, "%s: %d\n", NONULL (MhFlagged), n);
417   if (!replied_done && replied)
418     fprintf (nfp, "%s: %d\n", NONULL (MhReplied), n);
419
420   safe_fclose (&nfp);
421
422   unlink (sequences);
423   if (safe_rename (tmpfname, sequences) != 0)
424     unlink (tmpfname);
425
426   FREE (&tmpfname);
427 }
428
429 static void mh_update_maildir (struct maildir *md, struct mh_sequences *mhs)
430 {
431   int i;
432   short f;
433   char *p;
434
435   for (; md; md = md->next) {
436     if ((p = strrchr (md->h->path, '/')))
437       p++;
438     else
439       p = md->h->path;
440
441     i = atoi (p);
442     f = mhs_check (mhs, i);
443
444     md->h->read = (f & MH_SEQ_UNSEEN) ? 0 : 1;
445     md->h->flagged = (f & MH_SEQ_FLAGGED) ? 1 : 0;
446     md->h->replied = (f & MH_SEQ_REPLIED) ? 1 : 0;
447   }
448 }
449
450 /* maildir support */
451
452 static void maildir_free_entry (struct maildir **md)
453 {
454   if (!md || !*md)
455     return;
456
457   FREE (&(*md)->canon_fname);
458   if ((*md)->h)
459     mutt_free_header (&(*md)->h);
460
461   FREE (md);
462 }
463
464 static void maildir_free_maildir (struct maildir **md)
465 {
466   struct maildir *p, *q;
467
468   if (!md || !*md)
469     return;
470
471   for (p = *md; p; p = q) {
472     q = p->next;
473     maildir_free_entry (&p);
474   }
475 }
476
477 static void maildir_parse_flags (HEADER * h, const char *path)
478 {
479   char *p, *q = NULL;
480
481   h->flagged = 0;
482   h->read = 0;
483   h->replied = 0;
484
485   if ((p = strrchr (path, ':')) != NULL && safe_strncmp (p + 1, "2,", 2) == 0) {
486     p += 3;
487
488     str_replace (&h->maildir_flags, p);
489     q = h->maildir_flags;
490
491     while (*p) {
492       switch (*p) {
493       case 'F':
494
495         h->flagged = 1;
496         break;
497
498       case 'S':                /* seen */
499
500         h->read = 1;
501         break;
502
503       case 'R':                /* replied */
504
505         h->replied = 1;
506         break;
507
508       case 'T':                /* trashed */
509         h->trash = 1;
510         h->deleted = 1;
511         break;
512
513       default:
514         *q++ = *p;
515         break;
516       }
517       p++;
518     }
519   }
520
521   if (q == h->maildir_flags)
522     FREE (&h->maildir_flags);
523   else if (q)
524     *q = '\0';
525 }
526
527 static void maildir_update_mtime (CONTEXT * ctx)
528 {
529   char buf[_POSIX_PATH_MAX];
530   struct stat st;
531
532   if (ctx->magic == M_MAILDIR) {
533     snprintf (buf, sizeof (buf), "%s/%s", ctx->path, "cur");
534     if (stat (buf, &st) == 0)
535       ctx->mtime_cur = st.st_mtime;
536     snprintf (buf, sizeof (buf), "%s/%s", ctx->path, "new");
537   }
538   else {
539     snprintf (buf, sizeof (buf), "%s/.mh_sequences", ctx->path);
540     if (stat (buf, &st) == 0)
541       ctx->mtime_cur = st.st_mtime;
542
543     strfcpy (buf, ctx->path, sizeof (buf));
544   }
545
546   if (stat (buf, &st) == 0)
547     ctx->mtime = st.st_mtime;
548 }
549
550 /* 
551  * Actually parse a maildir message.  This may also be used to fill
552  * out a fake header structure generated by lazy maildir parsing.
553  */
554 static HEADER *maildir_parse_message (int magic, const char *fname,
555                                       int is_old, HEADER * _h)
556 {
557   FILE *f;
558   HEADER *h = _h;
559   struct stat st;
560
561   if ((f = fopen (fname, "r")) != NULL) {
562     if (!h)
563       h = mutt_new_header ();
564     h->env = mutt_read_rfc822_header (f, h, 0, 0);
565
566     fstat (fileno (f), &st);
567     fclose (f);
568
569     if (!h->received)
570       h->received = h->date_sent;
571
572     if (h->content->length <= 0)
573       h->content->length = st.st_size - h->content->offset;
574
575     h->index = -1;
576
577     if (magic == M_MAILDIR) {
578       /* 
579        * maildir stores its flags in the filename, so ignore the
580        * flags in the header of the message 
581        */
582
583       h->old = is_old;
584       maildir_parse_flags (h, fname);
585     }
586     return h;
587   }
588   return NULL;
589 }
590
591 /* 
592  * Note that this routine will _not_ modify the context given by
593  * ctx. 
594  *
595  * It's used in the first parsing pass on maildir and MH folders.
596  * In the MH case, this means full parsing of the folder.  In the
597  * maildir case, it means that we only look at flags, and create a
598  * fake HEADER structure, which may later be filled in by
599  * maildir_parse_message(), when called from
600  * maildir_delayed_parsing().
601  * 
602  */
603
604 static int maildir_parse_entry (CONTEXT * ctx, struct maildir ***last,
605                                 const char *subdir, const char *fname,
606                                 int *count, int is_old, ino_t inode)
607 {
608   struct maildir *entry;
609   HEADER *h = NULL;
610   char buf[_POSIX_PATH_MAX];
611
612   if (subdir)
613     snprintf (buf, sizeof (buf), "%s/%s/%s", ctx->path, subdir, fname);
614   else
615     snprintf (buf, sizeof (buf), "%s/%s", ctx->path, fname);
616
617   if (ctx->magic == M_MH)
618     h = maildir_parse_message (ctx->magic, buf, is_old, NULL);
619   else {
620     h = mutt_new_header ();
621     h->old = is_old;
622     maildir_parse_flags (h, buf);
623   }
624
625   if (h != NULL) {
626     if (count) {
627       (*count)++;
628       if (!ctx->quiet && ReadInc && ((*count % ReadInc) == 0 || *count == 1))
629         mutt_message (_("Reading %s... %d"), ctx->path, *count);
630     }
631
632     if (subdir) {
633       snprintf (buf, sizeof (buf), "%s/%s", subdir, fname);
634       h->path = safe_strdup (buf);
635     }
636     else
637       h->path = safe_strdup (fname);
638
639     entry = safe_calloc (sizeof (struct maildir), 1);
640     entry->h = h;
641     entry->header_parsed = (ctx->magic == M_MH);
642 #ifdef USE_INODESORT
643     entry->inode = inode;
644 #endif /* USE_INODESORT */
645     **last = entry;
646     *last = &entry->next;
647
648     return 0;
649   }
650
651   return -1;
652 }
653
654
655
656 /* Ignore the garbage files.  A valid MH message consists of only
657  * digits.  Deleted message get moved to a filename with a comma before
658  * it.
659  */
660
661 int mh_valid_message (const char *s)
662 {
663   for (; *s; s++) {
664     if (!isdigit ((unsigned char) *s))
665       return 0;
666   }
667   return 1;
668 }
669
670 static int maildir_parse_dir (CONTEXT * ctx, struct maildir ***last,
671                               const char *subdir, int *count)
672 {
673   DIR *dirp;
674   struct dirent *de;
675   char buf[_POSIX_PATH_MAX];
676   int is_old = 0;
677
678   if (subdir) {
679     snprintf (buf, sizeof (buf), "%s/%s", ctx->path, subdir);
680     is_old = (safe_strcmp ("cur", subdir) == 0);
681   }
682   else
683     strfcpy (buf, ctx->path, sizeof (buf));
684
685   if ((dirp = opendir (buf)) == NULL)
686     return -1;
687
688   while ((de = readdir (dirp)) != NULL) {
689
690     if ((ctx->magic == M_MH && !mh_valid_message (de->d_name))
691         || (ctx->magic == M_MAILDIR && *de->d_name == '.'))
692       continue;
693
694     /* FOO - really ignore the return value? */
695
696     dprint (2,
697             (debugfile, "%s:%d: parsing %s\n", __FILE__, __LINE__,
698              de->d_name));
699     maildir_parse_entry (ctx, last, subdir, de->d_name, count, is_old,
700                          de->d_ino);
701   }
702
703   closedir (dirp);
704   return 0;
705 }
706
707 static int maildir_add_to_context (CONTEXT * ctx, struct maildir *md)
708 {
709   int oldmsgcount = ctx->msgcount;
710
711   while (md) {
712
713     dprint (2, (debugfile, "%s:%d maildir_add_to_context(): Considering %s\n",
714                 __FILE__, __LINE__, NONULL (md->canon_fname)));
715
716     if (md->h) {
717       dprint (2,
718               (debugfile,
719                "%s:%d Adding header structure. Flags: %s%s%s%s%s\n", __FILE__,
720                __LINE__, md->h->flagged ? "f" : "", md->h->deleted ? "D" : "",
721                md->h->replied ? "r" : "", md->h->old ? "O" : "",
722                md->h->read ? "R" : ""));
723       if (ctx->msgcount == ctx->hdrmax)
724         mx_alloc_memory (ctx);
725
726       ctx->hdrs[ctx->msgcount] = md->h;
727       ctx->hdrs[ctx->msgcount]->index = ctx->msgcount;
728       ctx->size +=
729         md->h->content->length + md->h->content->offset -
730         md->h->content->hdr_offset;
731
732       md->h = NULL;
733       ctx->msgcount++;
734     }
735     md = md->next;
736   }
737
738   if (ctx->msgcount > oldmsgcount) {
739     mx_update_context (ctx, ctx->msgcount - oldmsgcount);
740     return 1;
741   }
742   return 0;
743 }
744
745 static int maildir_move_to_context (CONTEXT * ctx, struct maildir **md)
746 {
747   int r;
748
749   r = maildir_add_to_context (ctx, *md);
750   maildir_free_maildir (md);
751   return r;
752 }
753
754 #ifdef USE_INODESORT
755 /*
756  * Merge two maildir lists according to the inode numbers.
757  */
758 static struct maildir *maildir_merge_inode (struct maildir *left,
759                                             struct maildir *right)
760 {
761   struct maildir *head;
762   struct maildir *tail;
763
764   if (left && right) {
765     if (left->inode < right->inode) {
766       head = left;
767       left = left->next;
768     }
769     else {
770       head = right;
771       right = right->next;
772     }
773   }
774   else {
775     if (left)
776       return left;
777     else
778       return right;
779   }
780
781   tail = head;
782
783   while (left && right) {
784     if (left->inode < right->inode) {
785       tail->next = left;
786       left = left->next;
787     }
788     else {
789       tail->next = right;
790       right = right->next;
791     }
792     tail = tail->next;
793   }
794
795   if (left) {
796     tail->next = left;
797   }
798   else {
799     tail->next = right;
800   }
801
802   return head;
803 }
804
805 /*
806  * Sort maildir list according to inode.
807  */
808 static struct maildir *maildir_sort_inode (struct maildir *list)
809 {
810   struct maildir *left = list;
811   struct maildir *right = list;
812
813   if (!list || !list->next) {
814     return list;
815   }
816
817   list = list->next;
818   while (list && list->next) {
819     right = right->next;
820     list = list->next->next;
821   }
822
823   list = right;
824   right = right->next;
825   list->next = 0;
826
827   left = maildir_sort_inode (left);
828   right = maildir_sort_inode (right);
829   return maildir_merge_inode (left, right);
830 }
831 #endif /* USE_INODESORT */
832
833 #if USE_HCACHE
834 static size_t maildir_hcache_keylen (const char *fn)
835 {
836   const char *p = strchr (fn, ':');
837
838   return p ? (size_t) (p - fn) : safe_strlen (fn);
839 }
840 #endif
841
842 /* 
843  * This function does the second parsing pass for a maildir-style
844  * folder.
845  */
846 void maildir_delayed_parsing (CONTEXT * ctx, struct maildir *md)
847 {
848   struct maildir *p;
849   char fn[_POSIX_PATH_MAX];
850   int count;
851
852 #if USE_HCACHE
853   void *hc = NULL;
854   void *data;
855   struct timeval *when = NULL;
856   struct stat lastchanged;
857   int ret;
858
859   hc = mutt_hcache_open (HeaderCache, ctx->path);
860 #endif
861
862   for (p = md, count = 0; p; p = p->next, count++) {
863     if (!(p && p->h && !p->header_parsed))
864       continue;
865
866 #if USE_HCACHE
867     data = mutt_hcache_fetch (hc, p->h->path + 3, &maildir_hcache_keylen);
868     when = (struct timeval *) data;
869 #endif
870
871     if (!ctx->quiet && ReadInc && ((count % ReadInc) == 0 || count == 1))
872       mutt_message (_("Reading %s... %d"), ctx->path, count);
873     snprintf (fn, sizeof (fn), "%s/%s", ctx->path, p->h->path);
874
875 #if USE_HCACHE
876     if (option (OPTHCACHEVERIFY)) {
877       ret = stat (fn, &lastchanged);
878     }
879     else {
880       lastchanged.st_mtime = 0;
881       ret = 0;
882     }
883
884     if (data != NULL && !ret && lastchanged.st_mtime <= when->tv_sec) {
885       p->h = mutt_hcache_restore ((unsigned char *) data, &p->h);
886       maildir_parse_flags (p->h, fn);
887     }
888     else
889 #endif
890     if (maildir_parse_message (ctx->magic, fn, p->h->old, p->h)) {
891       p->header_parsed = 1;
892       maildir_parse_flags (p->h, fn);
893 #if USE_HCACHE
894       mutt_hcache_store (hc, p->h->path + 3, p->h, 0, &maildir_hcache_keylen);
895 #endif
896     }
897     else
898       mutt_free_header (&p->h);
899 #if USE_HCACHE
900     FREE (&data);
901 #endif
902   }
903 #if USE_HCACHE
904   mutt_hcache_close (hc);
905 #endif
906 }
907
908 /* Read a MH/maildir style mailbox.
909  *
910  * args:
911  *      ctx [IN/OUT]    context for this mailbox
912  *      subdir [IN]     NULL for MH mailboxes, otherwise the subdir of the
913  *                      maildir mailbox to read from
914  */
915 int mh_read_dir (CONTEXT * ctx, const char *subdir)
916 {
917   struct maildir *md;
918   struct mh_sequences mhs;
919   struct maildir **last;
920   int count;
921
922
923   memset (&mhs, 0, sizeof (mhs));
924
925   maildir_update_mtime (ctx);
926
927   md = NULL;
928   last = &md;
929   count = 0;
930   if (maildir_parse_dir (ctx, &last, subdir, &count) == -1)
931     return -1;
932
933   if (ctx->magic == M_MH) {
934     mh_read_sequences (&mhs, ctx->path);
935     mh_update_maildir (md, &mhs);
936     mhs_free_sequences (&mhs);
937   }
938
939 #ifdef USE_INODESORT
940   md = maildir_sort_inode (md);
941 #endif /* USE_INODESORT */
942
943   if (ctx->magic == M_MAILDIR)
944     maildir_delayed_parsing (ctx, md);
945
946   maildir_move_to_context (ctx, &md);
947   return 0;
948 }
949
950 /* read a maildir style mailbox */
951 int maildir_read_dir (CONTEXT * ctx)
952 {
953   /* maildir looks sort of like MH, except that there are two subdirectories
954    * of the main folder path from which to read messages
955    */
956   if (mh_read_dir (ctx, "new") == -1 || mh_read_dir (ctx, "cur") == -1)
957     return (-1);
958
959   return 0;
960 }
961
962 /*
963  * Open a new (temporary) message in an MH folder.
964  */
965
966 int mh_open_new_message (MESSAGE * msg, CONTEXT * dest, HEADER * hdr)
967 {
968   return mh_mkstemp (dest, &msg->fp, &msg->path);
969 }
970
971 int ch_compar (const void *a, const void *b)
972 {
973   return (int) (*((const char *) a) - *((const char *) b));
974 }
975
976 static void maildir_flags (char *dest, size_t destlen, HEADER * hdr)
977 {
978   *dest = '\0';
979
980   /*
981    * The maildir specification requires that all files in the cur
982    * subdirectory have the :unique string appeneded, regardless of whether
983    * or not there are any flags.  If .old is set, we know that this message
984    * will end up in the cur directory, so we include it in the following
985    * test even though there is no associated flag.
986    */
987
988   if (hdr
989       && (hdr->flagged || hdr->replied || hdr->read || hdr->deleted
990           || hdr->old || hdr->maildir_flags)) {
991     char tmp[LONG_STRING];
992
993     snprintf (tmp, sizeof (tmp),
994               "%s%s%s%s%s",
995               hdr->flagged ? "F" : "",
996               hdr->replied ? "R" : "",
997               hdr->read ? "S" : "", hdr->deleted ? "T" : "",
998               NONULL (hdr->maildir_flags));
999     if (hdr->maildir_flags)
1000       qsort (tmp, safe_strlen (tmp), 1, ch_compar);
1001     snprintf (dest, destlen, ":2,%s", tmp);
1002   }
1003 }
1004
1005
1006 /*
1007  * Open a new (temporary) message in a maildir folder.
1008  * 
1009  * Note that this uses _almost_ the maildir file name format, but
1010  * with a {cur,new} prefix.
1011  *
1012  */
1013
1014 int maildir_open_new_message (MESSAGE * msg, CONTEXT * dest, HEADER * hdr)
1015 {
1016   int fd;
1017   char path[_POSIX_PATH_MAX];
1018   char suffix[16];
1019   char subdir[16];
1020
1021   if (hdr) {
1022     short deleted = hdr->deleted;
1023
1024     hdr->deleted = 0;
1025
1026     maildir_flags (suffix, sizeof (suffix), hdr);
1027
1028     hdr->deleted = deleted;
1029   }
1030   else
1031     *suffix = '\0';
1032
1033   if (hdr && (hdr->read || hdr->old))
1034     strfcpy (subdir, "cur", sizeof (subdir));
1035   else
1036     strfcpy (subdir, "new", sizeof (subdir));
1037
1038   FOREVER {
1039     snprintf (path, _POSIX_PATH_MAX, "%s/tmp/%s.%ld.%u_%d.%s%s",
1040               dest->path, subdir, (long) time (NULL),
1041               (unsigned int) getpid (), Counter++, NONULL (Hostname), suffix);
1042
1043     dprint (2, (debugfile, "maildir_open_new_message (): Trying %s.\n",
1044                 path));
1045
1046     umask (Umask);
1047     if ((fd = open (path, O_WRONLY | O_EXCL | O_CREAT, 0666)) == -1) {
1048       if (errno != EEXIST) {
1049         mutt_perror (path);
1050         return -1;
1051       }
1052     }
1053     else {
1054       dprint (2, (debugfile, "maildir_open_new_message (): Success.\n"));
1055       msg->path = safe_strdup (path);
1056       break;
1057     }
1058   }
1059
1060   if ((msg->fp = fdopen (fd, "w")) == NULL) {
1061     FREE (&msg->path);
1062     close (fd);
1063     unlink (path);
1064     return (-1);
1065   }
1066
1067   return 0;
1068 }
1069
1070
1071
1072 /*
1073  * Commit a message to a maildir folder.
1074  * 
1075  * msg->path contains the file name of a file in tmp/. We take the
1076  * flags from this file's name. 
1077  *
1078  * ctx is the mail folder we commit to.
1079  * 
1080  * hdr is a header structure to which we write the message's new
1081  * file name.  This is used in the mh and maildir folder synch
1082  * routines.  When this routine is invoked from mx_commit_message,
1083  * hdr is NULL. 
1084  *
1085  * msg->path looks like this:
1086  * 
1087  *    tmp/{cur,new}.mutt-HOSTNAME-PID-COUNTER:flags
1088  * 
1089  * See also maildir_open_new_message().
1090  * 
1091  */
1092
1093 int maildir_commit_message (CONTEXT * ctx, MESSAGE * msg, HEADER * hdr)
1094 {
1095   char subdir[4];
1096   char suffix[16];
1097   char path[_POSIX_PATH_MAX];
1098   char full[_POSIX_PATH_MAX];
1099   char *s;
1100
1101   if (safe_fclose (&msg->fp) != 0)
1102     return -1;
1103
1104   /* extract the subdir */
1105   s = strrchr (msg->path, '/') + 1;
1106   strfcpy (subdir, s, 4);
1107
1108   /* extract the flags */
1109   if ((s = strchr (s, ':')))
1110     strfcpy (suffix, s, sizeof (suffix));
1111   else
1112     suffix[0] = '\0';
1113
1114   /* construct a new file name. */
1115   FOREVER {
1116     snprintf (path, _POSIX_PATH_MAX, "%s/%ld.%u_%d.%s%s", subdir,
1117               (long) time (NULL), (unsigned int) getpid (), Counter++,
1118               NONULL (Hostname), suffix);
1119     snprintf (full, _POSIX_PATH_MAX, "%s/%s", ctx->path, path);
1120
1121     dprint (2, (debugfile, "maildir_commit_message (): renaming %s to %s.\n",
1122                 msg->path, full));
1123
1124     if (safe_rename (msg->path, full) == 0) {
1125       if (hdr)
1126         str_replace (&hdr->path, path);
1127       FREE (&msg->path);
1128
1129       /*
1130        * Adjust the mtime on the file to match the time at which this
1131        * message was received.  Currently this is only set when copying
1132        * messages between mailboxes, so we test to ensure that it is
1133        * actually set.
1134        */
1135       if (msg->received) {
1136         struct utimbuf ut;
1137
1138         ut.actime = msg->received;
1139         ut.modtime = msg->received;
1140         if (utime (full, &ut)) {
1141           mutt_perror (_
1142                        ("maildir_commit_message(): unable to set time on file"));
1143           return -1;
1144         }
1145       }
1146
1147       return 0;
1148     }
1149     else if (errno != EEXIST) {
1150       mutt_perror (ctx->path);
1151       return -1;
1152     }
1153   }
1154 }
1155
1156 /* 
1157  * commit a message to an MH folder.
1158  * 
1159  */
1160
1161
1162 static int _mh_commit_message (CONTEXT * ctx, MESSAGE * msg, HEADER * hdr,
1163                                short updseq)
1164 {
1165   DIR *dirp;
1166   struct dirent *de;
1167   char *cp, *dep;
1168   unsigned int n, hi = 0;
1169   char path[_POSIX_PATH_MAX];
1170   char tmp[16];
1171
1172   if (safe_fclose (&msg->fp) != 0)
1173     return -1;
1174
1175   if ((dirp = opendir (ctx->path)) == NULL) {
1176     mutt_perror (ctx->path);
1177     return (-1);
1178   }
1179
1180   /* figure out what the next message number is */
1181   while ((de = readdir (dirp)) != NULL) {
1182     dep = de->d_name;
1183     if (*dep == ',')
1184       dep++;
1185     cp = dep;
1186     while (*cp) {
1187       if (!isdigit ((unsigned char) *cp))
1188         break;
1189       cp++;
1190     }
1191     if (!*cp) {
1192       n = atoi (dep);
1193       if (n > hi)
1194         hi = n;
1195     }
1196   }
1197   closedir (dirp);
1198
1199   /* 
1200    * Now try to rename the file to the proper name.
1201    * 
1202    * Note: We may have to try multiple times, until we find a free
1203    * slot.
1204    */
1205
1206   FOREVER {
1207     hi++;
1208     snprintf (tmp, sizeof (tmp), "%d", hi);
1209     snprintf (path, sizeof (path), "%s/%s", ctx->path, tmp);
1210     if (safe_rename (msg->path, path) == 0) {
1211       if (hdr)
1212         str_replace (&hdr->path, tmp);
1213       FREE (&msg->path);
1214       break;
1215     }
1216     else if (errno != EEXIST) {
1217       mutt_perror (ctx->path);
1218       return -1;
1219     }
1220   }
1221   if (updseq)
1222     mh_sequences_add_one (ctx, hi, !msg->flags.read, msg->flags.flagged,
1223                           msg->flags.replied);
1224   return 0;
1225 }
1226
1227 int mh_commit_message (CONTEXT * ctx, MESSAGE * msg, HEADER * hdr)
1228 {
1229   return _mh_commit_message (ctx, msg, hdr, 1);
1230 }
1231
1232
1233 /* Sync a message in an MH folder.
1234  * 
1235  * This code is also used for attachment deletion in maildir
1236  * folders.
1237  */
1238
1239 static int mh_rewrite_message (CONTEXT * ctx, int msgno)
1240 {
1241   HEADER *h = ctx->hdrs[msgno];
1242   MESSAGE *dest;
1243
1244   int rc;
1245   short restore = 1;
1246   char oldpath[_POSIX_PATH_MAX];
1247   char newpath[_POSIX_PATH_MAX];
1248   char partpath[_POSIX_PATH_MAX];
1249
1250   long old_body_offset = h->content->offset;
1251   long old_body_length = h->content->length;
1252   long old_hdr_lines = h->lines;
1253
1254   if ((dest = mx_open_new_message (ctx, h, 0)) == NULL)
1255     return -1;
1256
1257   if ((rc = mutt_copy_message (dest->fp, ctx, h,
1258                                M_CM_UPDATE, CH_UPDATE | CH_UPDATE_LEN)) == 0)
1259   {
1260     snprintf (oldpath, _POSIX_PATH_MAX, "%s/%s", ctx->path, h->path);
1261     strfcpy (partpath, h->path, _POSIX_PATH_MAX);
1262
1263     if (ctx->magic == M_MAILDIR)
1264       rc = maildir_commit_message (ctx, dest, h);
1265     else
1266       rc = _mh_commit_message (ctx, dest, h, 0);
1267
1268     mx_close_message (&dest);
1269
1270     if (rc == 0) {
1271       unlink (oldpath);
1272       restore = 0;
1273     }
1274
1275     /* 
1276      * Try to move the new message to the old place.
1277      * (MH only.)
1278      *
1279      * This is important when we are just updating flags.
1280      *
1281      * Note that there is a race condition against programs which
1282      * use the first free slot instead of the maximum message
1283      * number.  Mutt does _not_ behave like this.
1284      * 
1285      * Anyway, if this fails, the message is in the folder, so
1286      * all what happens is that a concurrently runnung mutt will
1287      * lose flag modifications.
1288      */
1289
1290     if (ctx->magic == M_MH && rc == 0) {
1291       snprintf (newpath, _POSIX_PATH_MAX, "%s/%s", ctx->path, h->path);
1292       if ((rc = safe_rename (newpath, oldpath)) == 0)
1293         str_replace (&h->path, partpath);
1294     }
1295   }
1296   else
1297     mx_close_message (&dest);
1298
1299   if (rc == -1 && restore) {
1300     h->content->offset = old_body_offset;
1301     h->content->length = old_body_length;
1302     h->lines = old_hdr_lines;
1303   }
1304
1305   mutt_free_body (&h->content->parts);
1306   return rc;
1307 }
1308
1309 static int mh_sync_message (CONTEXT * ctx, int msgno)
1310 {
1311   HEADER *h = ctx->hdrs[msgno];
1312
1313   if (h->attach_del || h->refs_changed || h->irt_changed)
1314     if (mh_rewrite_message (ctx, msgno) != 0)
1315       return -1;
1316
1317   return 0;
1318 }
1319
1320 static int maildir_sync_message (CONTEXT * ctx, int msgno)
1321 {
1322   HEADER *h = ctx->hdrs[msgno];
1323
1324   if (h->attach_del || h->refs_changed || h->irt_changed) {
1325     /* when doing attachment deletion/rethreading, fall back to the MH case. */
1326     if (mh_rewrite_message (ctx, msgno) != 0)
1327       return (-1);
1328   }
1329   else {
1330     /* we just have to rename the file. */
1331
1332     char newpath[_POSIX_PATH_MAX];
1333     char partpath[_POSIX_PATH_MAX];
1334     char fullpath[_POSIX_PATH_MAX];
1335     char oldpath[_POSIX_PATH_MAX];
1336     char suffix[16];
1337     char *p;
1338
1339     if ((p = strrchr (h->path, '/')) == NULL) {
1340       dprint (1,
1341               (debugfile,
1342                "maildir_sync_message: %s: unable to find subdir!\n",
1343                h->path));
1344       return (-1);
1345     }
1346     p++;
1347     strfcpy (newpath, p, sizeof (newpath));
1348
1349     /* kill the previous flags */
1350     if ((p = strchr (newpath, ':')) != NULL)
1351       *p = 0;
1352
1353     maildir_flags (suffix, sizeof (suffix), h);
1354
1355     snprintf (partpath, sizeof (partpath), "%s/%s%s",
1356               (h->read || h->old) ? "cur" : "new", newpath, suffix);
1357     snprintf (fullpath, sizeof (fullpath), "%s/%s", ctx->path, partpath);
1358     snprintf (oldpath, sizeof (oldpath), "%s/%s", ctx->path, h->path);
1359
1360     if (safe_strcmp (fullpath, oldpath) == 0) {
1361       /* message hasn't really changed */
1362       return 0;
1363     }
1364
1365     /* record that the message is possibly marked as trashed on disk */
1366     h->trash = h->deleted;
1367
1368     if (rename (oldpath, fullpath) != 0) {
1369       mutt_perror ("rename");
1370       return (-1);
1371     }
1372     str_replace (&h->path, partpath);
1373   }
1374   return (0);
1375 }
1376
1377 int mh_sync_mailbox (CONTEXT * ctx, int *index_hint)
1378 {
1379   char path[_POSIX_PATH_MAX], tmp[_POSIX_PATH_MAX];
1380   int i, j;
1381
1382 #if USE_HCACHE
1383   void *hc = NULL;
1384 #endif /* USE_HCACHE */
1385
1386   if (ctx->magic == M_MH)
1387     i = mh_check_mailbox (ctx, index_hint);
1388   else
1389     i = maildir_check_mailbox (ctx, index_hint);
1390
1391   if (i != 0)
1392     return i;
1393
1394 #if USE_HCACHE
1395   if (ctx->magic == M_MAILDIR)
1396     hc = mutt_hcache_open (HeaderCache, ctx->path);
1397 #endif /* USE_HCACHE */
1398
1399   for (i = 0; i < ctx->msgcount; i++) {
1400     if (ctx->hdrs[i]->deleted
1401         && (ctx->magic != M_MAILDIR || !option (OPTMAILDIRTRASH))) {
1402       snprintf (path, sizeof (path), "%s/%s", ctx->path, ctx->hdrs[i]->path);
1403       if (ctx->magic == M_MAILDIR
1404           || (option (OPTMHPURGE) && ctx->magic == M_MH)) {
1405 #if USE_HCACHE
1406         if (ctx->magic == M_MAILDIR)
1407           mutt_hcache_delete (hc, ctx->hdrs[i]->path + 3,
1408                               &maildir_hcache_keylen);
1409 #endif /* USE_HCACHE */
1410         unlink (path);
1411       }
1412       else if (ctx->magic == M_MH) {
1413         /* MH just moves files out of the way when you delete them */
1414         if (*ctx->hdrs[i]->path != ',') {
1415           snprintf (tmp, sizeof (tmp), "%s/,%s", ctx->path,
1416                     ctx->hdrs[i]->path);
1417           unlink (tmp);
1418           rename (path, tmp);
1419         }
1420
1421       }
1422     }
1423     else if (ctx->hdrs[i]->changed || ctx->hdrs[i]->attach_del ||
1424              (ctx->magic == M_MAILDIR
1425               && (option (OPTMAILDIRTRASH) || ctx->hdrs[i]->trash)
1426               && (ctx->hdrs[i]->deleted != ctx->hdrs[i]->trash))) {
1427       if (ctx->magic == M_MAILDIR) {
1428         if (maildir_sync_message (ctx, i) == -1)
1429           goto err;
1430       }
1431       else {
1432         if (mh_sync_message (ctx, i) == -1)
1433           goto err;
1434       }
1435     }
1436   }
1437
1438 #if USE_HCACHE
1439   if (ctx->magic == M_MAILDIR)
1440     mutt_hcache_close (hc);
1441 #endif /* USE_HCACHE */
1442
1443   if (ctx->magic == M_MH)
1444     mh_update_sequences (ctx);
1445
1446   /* XXX race condition? */
1447
1448   maildir_update_mtime (ctx);
1449
1450   /* adjust indices */
1451
1452   if (ctx->deleted) {
1453     for (i = 0, j = 0; i < ctx->msgcount; i++) {
1454       if (!ctx->hdrs[i]->deleted
1455           || (ctx->magic == M_MAILDIR && option (OPTMAILDIRTRASH)))
1456         ctx->hdrs[i]->index = j++;
1457     }
1458   }
1459
1460   return 0;
1461
1462 err:
1463 #if USE_HCACHE
1464   if (ctx->magic == M_MAILDIR)
1465     mutt_hcache_close (hc);
1466 #endif /* USE_HCACHE */
1467   return -1;
1468 }
1469
1470 static char *maildir_canon_filename (char *dest, const char *src, size_t l)
1471 {
1472   char *t, *u;
1473
1474   if ((t = strrchr (src, '/')))
1475     src = t + 1;
1476
1477   strfcpy (dest, src, l);
1478   if ((u = strrchr (dest, ':')))
1479     *u = '\0';
1480
1481   return dest;
1482 }
1483
1484 static void maildir_update_tables (CONTEXT * ctx, int *index_hint)
1485 {
1486   short old_sort;
1487   int old_count;
1488   int i, j;
1489
1490   if (Sort != SORT_ORDER) {
1491     old_sort = Sort;
1492     Sort = SORT_ORDER;
1493     mutt_sort_headers (ctx, 1);
1494     Sort = old_sort;
1495   }
1496
1497   old_count = ctx->msgcount;
1498   for (i = 0, j = 0; i < old_count; i++) {
1499     if (ctx->hdrs[i]->active && index_hint && *index_hint == i)
1500       *index_hint = j;
1501
1502     if (ctx->hdrs[i]->active)
1503       ctx->hdrs[i]->index = j++;
1504   }
1505
1506   mx_update_tables (ctx, 0);
1507   mutt_clear_threads (ctx);
1508 }
1509
1510 static void maildir_update_flags (CONTEXT * ctx, HEADER * o, HEADER * n)
1511 {
1512   /* save the global state here so we can reset it at the
1513    * end of list block if required.
1514    */
1515   int context_changed = ctx->changed;
1516
1517   /* user didn't modify this message.  alter the flags to
1518    * match the current state on disk.  This may not actually
1519    * do anything, but we can't tell right now.  mutt_set_flag()
1520    * will just ignore the call if the status bits are
1521    * already properly set.
1522    */
1523   mutt_set_flag (ctx, o, M_FLAG, n->flagged);
1524   mutt_set_flag (ctx, o, M_REPLIED, n->replied);
1525   mutt_set_flag (ctx, o, M_READ, n->read);
1526   mutt_set_flag (ctx, o, M_OLD, n->old);
1527
1528   /* mutt_set_flag() will set this, but we don't need to
1529    * sync the changes we made because we just updated the
1530    * context to match the current on-disk state of the
1531    * message.
1532    */
1533   o->changed = 0;
1534
1535   /* if the mailbox was not modified before we made these
1536    * changes, unset the changed flag since nothing needs to
1537    * be synchronized.
1538    */
1539   if (!context_changed)
1540     ctx->changed = 0;
1541 }
1542
1543
1544 /* This function handles arrival of new mail and reopening of
1545  * maildir folders.  The basic idea here is we check to see if either
1546  * the new or cur subdirectories have changed, and if so, we scan them
1547  * for the list of files.  We check for newly added messages, and
1548  * then merge the flags messages we already knew about.  We don't treat
1549  * either subdirectory differently, as mail could be copied directly into
1550  * the cur directory from another agent.
1551  */
1552 int maildir_check_mailbox (CONTEXT * ctx, int *index_hint)
1553 {
1554   struct stat st_new;           /* status of the "new" subdirectory */
1555   struct stat st_cur;           /* status of the "cur" subdirectory */
1556   char buf[_POSIX_PATH_MAX];
1557   int changed = 0;              /* bitmask representing which subdirectories
1558                                    have changed.  0x1 = new, 0x2 = cur */
1559   int occult = 0;               /* messages were removed from the mailbox */
1560   int have_new = 0;             /* messages were added to the mailbox */
1561   struct maildir *md;           /* list of messages in the mailbox */
1562   struct maildir **last, *p;
1563   int i;
1564   HASH *fnames;                 /* hash table for quickly looking up the base filename
1565                                    for a maildir message */
1566
1567   /* XXX seems like this check belongs in mx_check_mailbox()
1568    * rather than here.
1569    */
1570   if (!option (OPTCHECKNEW))
1571     return 0;
1572
1573   snprintf (buf, sizeof (buf), "%s/new", ctx->path);
1574   if (stat (buf, &st_new) == -1)
1575     return -1;
1576
1577   snprintf (buf, sizeof (buf), "%s/cur", ctx->path);
1578   if (stat (buf, &st_cur) == -1)
1579     return -1;
1580
1581   /* determine which subdirectories need to be scanned */
1582   if (st_new.st_mtime > ctx->mtime)
1583     changed = 1;
1584   if (st_cur.st_mtime > ctx->mtime_cur)
1585     changed |= 2;
1586
1587   if (!changed)
1588     return 0;                   /* nothing to do */
1589
1590   /* update the modification times on the mailbox */
1591   ctx->mtime_cur = st_cur.st_mtime;
1592   ctx->mtime = st_new.st_mtime;
1593
1594   /* do a fast scan of just the filenames in
1595    * the subdirectories that have changed.
1596    */
1597   md = NULL;
1598   last = &md;
1599   if (changed & 1)
1600     maildir_parse_dir (ctx, &last, "new", NULL);
1601   if (changed & 2)
1602     maildir_parse_dir (ctx, &last, "cur", NULL);
1603
1604   /* we create a hash table keyed off the canonical (sans flags) filename
1605    * of each message we scanned.  This is used in the loop over the
1606    * existing messages below to do some correlation.
1607    */
1608   fnames = hash_create (1031);
1609
1610   for (p = md; p; p = p->next) {
1611     maildir_canon_filename (buf, p->h->path, sizeof (buf));
1612     p->canon_fname = safe_strdup (buf);
1613     hash_insert (fnames, p->canon_fname, p, 0);
1614   }
1615
1616   /* check for modifications and adjust flags */
1617   for (i = 0; i < ctx->msgcount; i++) {
1618     ctx->hdrs[i]->active = 0;
1619     maildir_canon_filename (buf, ctx->hdrs[i]->path, sizeof (buf));
1620     p = hash_find (fnames, buf);
1621     if (p && p->h) {
1622       /* message already exists, merge flags */
1623       ctx->hdrs[i]->active = 1;
1624
1625       /* check to see if the message has moved to a different
1626        * subdirectory.  If so, update the associated filename.
1627        */
1628       if (safe_strcmp (ctx->hdrs[i]->path, p->h->path))
1629         str_replace (&ctx->hdrs[i]->path, p->h->path);
1630
1631       /* if the user hasn't modified the flags on this message, update
1632        * the flags we just detected.
1633        */
1634       if (!ctx->hdrs[i]->changed)
1635         maildir_update_flags (ctx, ctx->hdrs[i], p->h);
1636
1637       if (ctx->hdrs[i]->deleted == ctx->hdrs[i]->trash)
1638         ctx->hdrs[i]->deleted = p->h->deleted;
1639       ctx->hdrs[i]->trash = p->h->trash;
1640
1641       /* this is a duplicate of an existing header, so remove it */
1642       mutt_free_header (&p->h);
1643     }
1644     /* This message was not in the list of messages we just scanned.
1645      * Check to see if we have enough information to know if the
1646      * message has disappeared out from underneath us.
1647      */
1648     else if (((changed & 1) && (!strncmp (ctx->hdrs[i]->path, "new/", 4))) ||
1649              ((changed & 2) && (!strncmp (ctx->hdrs[i]->path, "cur/", 4)))) {
1650       /* This message disappeared, so we need to simulate a "reopen"
1651        * event.  We know it disappeared because we just scanned the
1652        * subdirectory it used to reside in.
1653        */
1654       occult = 1;
1655     }
1656     else {
1657       /* This message resides in a subdirectory which was not
1658        * modified, so we assume that it is still present and
1659        * unchanged.
1660        */
1661       ctx->hdrs[i]->active = 1;
1662     }
1663   }
1664
1665   /* destroy the file name hash */
1666   hash_destroy (&fnames, NULL);
1667
1668   /* If we didn't just get new mail, update the tables. */
1669   if (occult)
1670     maildir_update_tables (ctx, index_hint);
1671
1672   /* do any delayed parsing we need to do. */
1673   maildir_delayed_parsing (ctx, md);
1674
1675   /* Incorporate new messages */
1676   have_new = maildir_move_to_context (ctx, &md);
1677
1678   return occult ? M_REOPENED : (have_new ? M_NEW_MAIL : 0);
1679 }
1680
1681 /* 
1682  * This function handles arrival of new mail and reopening of
1683  * mh/maildir folders. Things are getting rather complex because we
1684  * don't have a well-defined "mailbox order", so the tricks from
1685  * mbox.c and mx.c won't work here.
1686  *
1687  * Don't change this code unless you _really_ understand what
1688  * happens.
1689  *
1690  */
1691
1692 int mh_check_mailbox (CONTEXT * ctx, int *index_hint)
1693 {
1694   char buf[_POSIX_PATH_MAX];
1695   struct stat st, st_cur;
1696   short modified = 0, have_new = 0, occult = 0;
1697   struct maildir *md, *p;
1698   struct maildir **last = NULL;
1699   struct mh_sequences mhs;
1700   HASH *fnames;
1701   int i;
1702
1703   if (!option (OPTCHECKNEW))
1704     return 0;
1705
1706   strfcpy (buf, ctx->path, sizeof (buf));
1707   if (stat (buf, &st) == -1)
1708     return -1;
1709
1710   /* create .mh_sequences when there isn't one. */
1711   snprintf (buf, sizeof (buf), "%s/.mh_sequences", ctx->path);
1712   if ((i = stat (buf, &st_cur) == -1) && errno == ENOENT) {
1713     char *tmp;
1714     FILE *fp = NULL;
1715
1716     if (mh_mkstemp (ctx, &fp, &tmp) == 0) {
1717       safe_fclose (&fp);
1718       if (safe_rename (tmp, buf) == -1)
1719         unlink (tmp);
1720       FREE (&tmp);
1721     }
1722   }
1723
1724   if (i == -1 && stat (buf, &st_cur) == -1)
1725     modified = 1;
1726
1727   if (st.st_mtime > ctx->mtime || st_cur.st_mtime > ctx->mtime_cur)
1728     modified = 1;
1729
1730   if (!modified)
1731     return 0;
1732
1733   ctx->mtime_cur = st_cur.st_mtime;
1734   ctx->mtime = st.st_mtime;
1735
1736   memset (&mhs, 0, sizeof (mhs));
1737
1738   md = NULL;
1739   last = &md;
1740   maildir_parse_dir (ctx, &last, NULL, NULL);
1741   mh_read_sequences (&mhs, ctx->path);
1742   mh_update_maildir (md, &mhs);
1743   mhs_free_sequences (&mhs);
1744
1745   /* check for modifications and adjust flags */
1746   fnames = hash_create (1031);
1747
1748   for (p = md; p; p = p->next)
1749     hash_insert (fnames, p->h->path, p, 0);
1750
1751   for (i = 0; i < ctx->msgcount; i++) {
1752     ctx->hdrs[i]->active = 0;
1753
1754     if ((p = hash_find (fnames, ctx->hdrs[i]->path)) && p->h &&
1755         (mbox_strict_cmp_headers (ctx->hdrs[i], p->h))) {
1756       ctx->hdrs[i]->active = 1;
1757       /* found the right message */
1758       if (!ctx->hdrs[i]->changed)
1759         maildir_update_flags (ctx, ctx->hdrs[i], p->h);
1760
1761       mutt_free_header (&p->h);
1762     }
1763     else                        /* message has disappeared */
1764       occult = 1;
1765   }
1766
1767   /* destroy the file name hash */
1768
1769   hash_destroy (&fnames, NULL);
1770
1771   /* If we didn't just get new mail, update the tables. */
1772   if (occult)
1773     maildir_update_tables (ctx, index_hint);
1774
1775   /* Incorporate new messages */
1776   have_new = maildir_move_to_context (ctx, &md);
1777
1778   return occult ? M_REOPENED : (have_new ? M_NEW_MAIL : 0);
1779 }
1780
1781
1782
1783
1784 /*
1785  * These functions try to find a message in a maildir folder when it
1786  * has moved under our feet.  Note that this code is rather expensive, but
1787  * then again, it's called rarely.
1788  */
1789
1790 FILE *_maildir_open_find_message (const char *folder, const char *unique,
1791                                   const char *subfolder)
1792 {
1793   char dir[_POSIX_PATH_MAX];
1794   char tunique[_POSIX_PATH_MAX];
1795   char fname[_POSIX_PATH_MAX];
1796
1797   DIR *dp;
1798   struct dirent *de;
1799
1800   FILE *fp = NULL;
1801   int oe = ENOENT;
1802
1803   snprintf (dir, sizeof (dir), "%s/%s", folder, subfolder);
1804
1805   if ((dp = opendir (dir)) == NULL) {
1806     errno = ENOENT;
1807     return NULL;
1808   }
1809
1810   while ((de = readdir (dp))) {
1811     maildir_canon_filename (tunique, de->d_name, sizeof (tunique));
1812
1813     if (!safe_strcmp (tunique, unique)) {
1814       snprintf (fname, sizeof (fname), "%s/%s/%s", folder, subfolder,
1815                 de->d_name);
1816       fp = fopen (fname, "r");  /* __FOPEN_CHECKED__ */
1817       oe = errno;
1818       break;
1819     }
1820   }
1821
1822   closedir (dp);
1823
1824   errno = oe;
1825   return fp;
1826 }
1827
1828 FILE *maildir_open_find_message (const char *folder, const char *msg)
1829 {
1830   char unique[_POSIX_PATH_MAX];
1831   FILE *fp;
1832
1833   static unsigned int new_hits = 0, cur_hits = 0;       /* simple dynamic optimization */
1834
1835   maildir_canon_filename (unique, msg, sizeof (unique));
1836
1837   if ((fp =
1838        _maildir_open_find_message (folder, unique,
1839                                    new_hits > cur_hits ? "new" : "cur"))
1840       || errno != ENOENT) {
1841     if (new_hits < UINT_MAX && cur_hits < UINT_MAX) {
1842       new_hits += (new_hits > cur_hits ? 1 : 0);
1843       cur_hits += (new_hits > cur_hits ? 0 : 1);
1844     }
1845
1846     return fp;
1847   }
1848   if ((fp =
1849        _maildir_open_find_message (folder, unique,
1850                                    new_hits > cur_hits ? "cur" : "new"))
1851       || errno != ENOENT) {
1852     if (new_hits < UINT_MAX && cur_hits < UINT_MAX) {
1853       new_hits += (new_hits > cur_hits ? 0 : 1);
1854       cur_hits += (new_hits > cur_hits ? 1 : 0);
1855     }
1856
1857     return fp;
1858   }
1859
1860   return NULL;
1861 }
1862
1863
1864 /*
1865  * Returns:
1866  * 1 if there are no messages in the mailbox
1867  * 0 if there are messages in the mailbox
1868  * -1 on error
1869  */
1870 int maildir_check_empty (const char *path)
1871 {
1872   DIR *dp;
1873   struct dirent *de;
1874   int r = 1;                    /* assume empty until we find a message */
1875   char realpath[_POSIX_PATH_MAX];
1876   int iter = 0;
1877
1878   /* Strategy here is to look for any file not beginning with a period */
1879
1880   do {
1881     /* we do "cur" on the first iteration since its more likely that we'll
1882      * find old messages without having to scan both subdirs
1883      */
1884     snprintf (realpath, sizeof (realpath), "%s/%s", path,
1885               iter == 0 ? "cur" : "new");
1886     if ((dp = opendir (realpath)) == NULL)
1887       return -1;
1888     while ((de = readdir (dp))) {
1889       if (*de->d_name != '.') {
1890         r = 0;
1891         break;
1892       }
1893     }
1894     closedir (dp);
1895     iter++;
1896   } while (r && iter < 2);
1897
1898   return r;
1899 }
1900
1901 /*
1902  * Returns:
1903  * 1 if there are no messages in the mailbox
1904  * 0 if there are messages in the mailbox
1905  * -1 on error
1906  */
1907 int mh_check_empty (const char *path)
1908 {
1909   DIR *dp;
1910   struct dirent *de;
1911   int r = 1;                    /* assume empty until we find a message */
1912
1913   if ((dp = opendir (path)) == NULL)
1914     return -1;
1915   while ((de = readdir (dp))) {
1916     if (mh_valid_message (de->d_name)) {
1917       r = 0;
1918       break;
1919     }
1920   }
1921   closedir (dp);
1922
1923   return r;
1924 }