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