replace SKIPWS with a proper inline func with the right API.
[apps/madmutt.git] / imap / message.c
1 /*
2  * Copyright notice from original mutt:
3  * Copyright (C) 1996-9 Brandon Long <blong@fiction.net>
4  * Copyright (C) 1999-2002 Brendan Cully <brendan@kublai.com>
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 /* message parsing/updating functions */
12
13 #if HAVE_CONFIG_H
14 # include "config.h"
15 #endif
16
17 #include <stdlib.h>
18 #include <ctype.h>
19
20 #include <lib-lib/mem.h>
21 #include <lib-lib/ascii.h>
22 #include <lib-lib/str.h>
23 #include <lib-lib/buffer.h>
24
25 #include "mutt.h"
26 #include "mutt_curses.h"
27 #include "imap_private.h"
28 #include "message.h"
29 #include "mx.h"
30 #include "hcache.h"
31
32 #ifdef HAVE_PGP
33 #include "pgp.h"
34 #endif
35
36 #include <lib-lib/macros.h>
37 #include <lib-lib/file.h>
38 #include "lib/debug.h"
39
40 #if HAVE_STDINT_H
41 #include <stdint.h>
42 #elif HAVE_INTTYPES_H
43 #include <inttypes.h>
44 #endif
45
46 static void flush_buffer (char *buf, size_t * len, CONNECTION * conn);
47 static int msg_fetch_header (CONTEXT * ctx, IMAP_HEADER * h, char *buf,
48                              FILE * fp);
49 static int msg_has_flag (LIST * flag_list, const char *flag);
50 static int msg_parse_fetch (IMAP_HEADER * h, char *s);
51 static char *msg_parse_flags (IMAP_HEADER * h, char *s);
52
53 #ifdef USE_HCACHE
54 static int msg_fetch_header_fetch (CONTEXT * ctx, IMAP_HEADER * h, char *buf,
55                                    FILE * fp);
56 static size_t imap_hcache_keylen (const char *fn);
57 #endif /* USE_HCACHE */
58
59 /* imap_read_headers:
60  * Changed to read many headers instead of just one. It will return the
61  * msgno of the last message read. It will return a value other than
62  * msgend if mail comes in while downloading headers (in theory).
63  */
64 int imap_read_headers (IMAP_DATA * idata, int msgbegin, int msgend)
65 {
66   CONTEXT *ctx;
67   char buf[LONG_STRING];
68   char hdrreq[STRING];
69   FILE *fp;
70   char tempfile[_POSIX_PATH_MAX];
71   int msgno;
72   IMAP_HEADER h;
73   int rc, mfhrc, oldmsgcount;
74   int fetchlast = 0;
75   const char *want_headers =
76     "DATE FROM SUBJECT TO CC MESSAGE-ID REFERENCES CONTENT-TYPE CONTENT-DESCRIPTION IN-REPLY-TO REPLY-TO LINES LIST-POST X-LABEL";
77
78 #ifdef USE_HCACHE
79   void *hc = NULL;
80   unsigned long *uid_validity = NULL;
81   char uid_buf[64];
82 #endif /* USE_HCACHE */
83
84   ctx = idata->ctx;
85
86   if (mutt_bit_isset (idata->capabilities, IMAP4REV1)) {
87     snprintf (hdrreq, sizeof (hdrreq), "BODY.PEEK[HEADER.FIELDS (%s%s%s)]",
88               want_headers, ImapHeaders ? " " : "",
89               ImapHeaders ? ImapHeaders : "");
90   }
91   else if (mutt_bit_isset (idata->capabilities, IMAP4)) {
92     snprintf (hdrreq, sizeof (hdrreq), "RFC822.HEADER.LINES (%s%s%s)",
93               want_headers, ImapHeaders ? " " : "",
94               ImapHeaders ? ImapHeaders : "");
95   }
96   else {                        /* Unable to fetch headers for lower versions */
97     mutt_error _("Unable to fetch headers from this IMAP server version.");
98
99     mutt_sleep (2);             /* pause a moment to let the user see the error */
100     return -1;
101   }
102
103   /* instead of downloading all headers and then parsing them, we parse them
104    * as they come in. */
105   mutt_mktemp (tempfile);
106   if (!(fp = safe_fopen (tempfile, "w+"))) {
107     mutt_error (_("Could not create temporary file %s"), tempfile);
108     mutt_sleep (2);
109     return -1;
110   }
111   unlink (tempfile);
112
113   /* make sure context has room to hold the mailbox */
114   while ((msgend) >= idata->ctx->hdrmax)
115     mx_alloc_memory (idata->ctx);
116
117   oldmsgcount = ctx->msgcount;
118   idata->reopen &= ~IMAP_NEWMAIL_PENDING;
119   idata->newMailCount = 0;
120
121 #ifdef USE_HCACHE
122   if ((hc = mutt_hcache_open (HeaderCache, ctx->path))) {
123
124     snprintf (buf, sizeof (buf),
125               "FETCH %d:%d (UID FLAGS)", msgbegin + 1, msgend + 1);
126     fetchlast = msgend + 1;
127
128     imap_cmd_start (idata, buf);
129
130     for (msgno = msgbegin; msgno <= msgend; msgno++) {
131       if (ReadInc && (!msgno || ((msgno + 1) % ReadInc == 0)))
132         mutt_message (_("Evaluating cache... [%d/%d]"), msgno + 1, msgend + 1);
133
134       rewind (fp);
135       p_clear(&h, 1);
136       h.data = p_new(IMAP_HEADER_DATA, 1);
137       do {
138         mfhrc = 0;
139
140         rc = imap_cmd_step (idata);
141         if (rc != IMAP_CMD_CONTINUE)
142           break;
143
144         if ((mfhrc =
145             msg_fetch_header_fetch (idata->ctx, &h, idata->cmd.buf, fp)) == -1)
146           continue;
147         else if (mfhrc < 0)
148           break;
149
150         /* make sure we don't get remnants from older larger message headers */
151         fputs ("\n\n", fp);
152
153         sprintf (uid_buf, "/%u", h.data->uid);    /* XXX --tg 21:41 04-07-11 */
154         uid_validity =
155           (unsigned long *) mutt_hcache_fetch (hc, uid_buf, &imap_hcache_keylen);
156
157         if (uid_validity != NULL && *uid_validity == idata->uid_validity) {
158           ctx->hdrs[msgno] = mutt_hcache_restore((unsigned char *) uid_validity, 0);
159           ctx->hdrs[msgno]->index = h.sid - 1;
160           if (h.sid != ctx->msgcount + 1)
161             debug_print (1, ("imap_read_headers: msgcount and sequence ID are inconsistent!"));
162           /* messages which have not been expunged are ACTIVE (borrowed from mh 
163           * folders) */
164           ctx->hdrs[msgno]->active = 1;
165           ctx->hdrs[msgno]->read = h.read;
166           ctx->hdrs[msgno]->old = h.old;
167           ctx->hdrs[msgno]->deleted = h.deleted;
168           ctx->hdrs[msgno]->flagged = h.flagged;
169           ctx->hdrs[msgno]->replied = h.replied;
170           ctx->hdrs[msgno]->changed = h.changed;
171           /*  ctx->hdrs[msgno]->received is restored from mutt_hcache_restore */
172           ctx->hdrs[msgno]->data = (void *) (h.data);
173
174           ctx->msgcount++;
175         }
176
177         rewind (fp);
178
179         p_delete(&uid_validity);
180
181       }
182       while ((rc != IMAP_CMD_OK) && ((mfhrc == -1) ||
183                                     ((msgno + 1) >= fetchlast)));
184
185       if ((mfhrc < -1) || ((rc != IMAP_CMD_CONTINUE) && (rc != IMAP_CMD_OK))) {
186         imap_free_header_data ((void **) &h.data);
187         fclose (fp);
188         mutt_hcache_close (hc);
189         return -1;
190       }
191     }
192
193     fetchlast = msgbegin;
194   }
195 #endif /* USE_HCACHE */
196
197   for (msgno = msgbegin; msgno <= msgend; msgno++) {
198     if (ReadInc && (!msgno || ((msgno + 1) % ReadInc == 0)))
199       mutt_message (_("Fetching message headers... [%d/%d]"), msgno + 1,
200                     msgend + 1);
201
202     if (ctx->hdrs[msgno])
203       continue;
204
205     if (msgno + 1 > fetchlast) {
206       fetchlast = msgno + 1;
207       while ((fetchlast <= msgend) && (!ctx->hdrs[fetchlast]))
208         fetchlast++;
209
210       /*
211        * Make one request for everything. This makes fetching headers an
212        * order of magnitude faster if you have a large mailbox.
213        *
214        * If we get more messages while doing this, we make another
215        * request for all the new messages.
216        */
217       snprintf (buf, sizeof (buf),
218                 "FETCH %d:%d (UID FLAGS INTERNALDATE RFC822.SIZE %s)",
219                 msgno + 1, fetchlast, hdrreq);
220
221       imap_cmd_start (idata, buf);
222     }
223
224     /* freshen fp, h */
225     rewind (fp);
226     p_clear(&h, 1);
227     h.data = p_new(IMAP_HEADER_DATA, 1);
228
229     /* this DO loop does two things:
230      * 1. handles untagged messages, so we can try again on the same msg
231      * 2. fetches the tagged response at the end of the last message.
232      */
233     do {
234       mfhrc = 0;
235
236       rc = imap_cmd_step (idata);
237       if (rc != IMAP_CMD_CONTINUE)
238         break;
239
240       if ((mfhrc =
241            msg_fetch_header (idata->ctx, &h, idata->cmd.buf, fp)) == -1)
242         continue;
243       else if (mfhrc < 0)
244         break;
245
246       /* make sure we don't get remnants from older larger message headers */
247       fputs ("\n\n", fp);
248
249       /* update context with message header */
250       ctx->hdrs[msgno] = mutt_new_header ();
251
252       ctx->hdrs[msgno]->index = h.sid - 1;
253       if (h.sid != ctx->msgcount + 1)
254         debug_print (1, ("msgcount and sequence ID are inconsistent!\n"));
255       /* messages which have not been expunged are ACTIVE (borrowed from mh 
256        * folders) */
257       ctx->hdrs[msgno]->active = 1;
258       ctx->hdrs[msgno]->read = h.read;
259       ctx->hdrs[msgno]->old = h.old;
260       ctx->hdrs[msgno]->deleted = h.deleted;
261       ctx->hdrs[msgno]->flagged = h.flagged;
262       ctx->hdrs[msgno]->replied = h.replied;
263       ctx->hdrs[msgno]->changed = h.changed;
264       ctx->hdrs[msgno]->received = h.received;
265       ctx->hdrs[msgno]->data = (void *) (h.data);
266
267       rewind (fp);
268       /* NOTE: if Date: header is missing, mutt_read_rfc822_header depends
269        *   on h.received being set */
270       ctx->hdrs[msgno]->env = mutt_read_rfc822_header (fp, ctx->hdrs[msgno],
271                                                        0, 0);
272       /* content built as a side-effect of mutt_read_rfc822_header */
273       ctx->hdrs[msgno]->content->length = h.content_length;
274
275 #ifdef USE_HCACHE
276       sprintf (uid_buf, "/%u", h.data->uid);
277       mutt_hcache_store (hc, uid_buf, ctx->hdrs[msgno], idata->uid_validity,
278                          &imap_hcache_keylen);
279 #endif /* USE_HCACHE */
280
281       ctx->msgcount++;
282     }
283     while ((rc != IMAP_CMD_OK) && ((mfhrc == -1) ||
284                                    ((msgno + 1) >= fetchlast)));
285
286     if ((mfhrc < -1) || ((rc != IMAP_CMD_CONTINUE) && (rc != IMAP_CMD_OK))) {
287       imap_free_header_data ((void *)&h.data);
288       fclose (fp);
289 #ifdef USE_HCACHE
290       mutt_hcache_close (hc);
291 #endif /* USE_HCACHE */
292       return -1;
293     }
294
295     /* in case we get new mail while fetching the headers */
296     if (idata->reopen & IMAP_NEWMAIL_PENDING) {
297       msgend = idata->newMailCount - 1;
298       while ((msgend) >= ctx->hdrmax)
299         mx_alloc_memory (ctx);
300       idata->reopen &= ~IMAP_NEWMAIL_PENDING;
301       idata->newMailCount = 0;
302     }
303   }
304
305 #ifdef USE_HCACHE
306   mutt_hcache_close (hc);
307 #endif /* USE_HCACHE */
308
309   fclose (fp);
310
311   if (ctx->msgcount > oldmsgcount)
312     mx_update_context (ctx, ctx->msgcount - oldmsgcount);
313
314   return msgend;
315 }
316
317 int imap_fetch_message (MESSAGE * msg, CONTEXT * ctx, int msgno)
318 {
319   IMAP_DATA *idata;
320   HEADER *h;
321   ENVELOPE* newenv;
322   char buf[LONG_STRING];
323   char path[_POSIX_PATH_MAX];
324   char *pc;
325   long bytes;
326   int uid;
327   int cacheno;
328   IMAP_CACHE *cache;
329   int read;
330   int rc;
331   progress_t bar;
332
333   /* Sam's weird courier server returns an OK response even when FETCH
334    * fails. Thanks Sam. */
335   short fetched = 0;
336
337   idata = (IMAP_DATA *) ctx->data;
338   h = ctx->hdrs[msgno];
339
340   /* see if we already have the message in our cache */
341   cacheno = HEADER_DATA (h)->uid % IMAP_CACHE_LEN;
342   cache = &idata->cache[cacheno];
343
344   if (cache->path) {
345     /* don't treat cache errors as fatal, just fall back. */
346     if (cache->uid == HEADER_DATA(h)->uid && (msg->fp = fopen (cache->path, "r")))
347       return 0;
348     else {
349       unlink (cache->path);
350       p_delete(&cache->path);
351     }
352   }
353
354   if (!isendwin ())
355     mutt_message _("Fetching message...");
356
357   cache->uid = HEADER_DATA (h)->uid;
358   mutt_mktemp (path);
359   cache->path = m_strdup(path);
360   if (!(msg->fp = safe_fopen (path, "w+"))) {
361     p_delete(&cache->path);
362     return -1;
363   }
364
365   /* mark this header as currently inactive so the command handler won't
366    * also try to update it. HACK until all this code can be moved into the
367    * command handler */
368   h->active = 0;
369
370   snprintf (buf, sizeof (buf), "UID FETCH %u %s", HEADER_DATA (h)->uid,
371             (mutt_bit_isset (idata->capabilities, IMAP4REV1) ?
372              (option (OPTIMAPPEEK) ? "BODY.PEEK[]" : "BODY[]") : "RFC822"));
373
374   imap_cmd_start (idata, buf);
375   do {
376     if ((rc = imap_cmd_step (idata)) != IMAP_CMD_CONTINUE)
377       break;
378
379     pc = idata->cmd.buf;
380     pc = imap_next_word (pc);
381     pc = imap_next_word (pc);
382
383     if (!ascii_strncasecmp ("FETCH", pc, 5)) {
384       while (*pc) {
385         pc = imap_next_word (pc);
386         if (pc[0] == '(')
387           pc++;
388         if (ascii_strncasecmp ("UID", pc, 3) == 0) {
389           pc = imap_next_word (pc);
390           uid = atoi (pc);
391           if (uid != HEADER_DATA (h)->uid)
392             mutt_error (_
393                         ("The message index is incorrect. Try reopening the mailbox."));
394         }
395         else if ((ascii_strncasecmp ("RFC822", pc, 6) == 0) ||
396                  (ascii_strncasecmp ("BODY[]", pc, 6) == 0)) {
397           pc = imap_next_word (pc);
398           if (imap_get_literal_count (pc, &bytes) < 0) {
399             imap_error ("imap_fetch_message()", buf);
400             goto bail;
401           }
402           bar.size = bytes;
403           bar.msg = _("Fetching message...");
404           mutt_progress_bar (&bar, 0);
405           if (imap_read_literal (msg->fp, idata, bytes, &bar) < 0)
406             goto bail;
407           /* pick up trailing line */
408           if ((rc = imap_cmd_step (idata)) != IMAP_CMD_CONTINUE)
409             goto bail;
410           pc = idata->cmd.buf;
411
412           fetched = 1;
413         }
414         /* UW-IMAP will provide a FLAGS update here if the FETCH causes a
415          * change (eg from \Unseen to \Seen).
416          * Uncommitted changes in mutt take precedence. If we decide to
417          * incrementally update flags later, this won't stop us syncing */
418         else if ((ascii_strncasecmp ("FLAGS", pc, 5) == 0) && !h->changed) {
419           if ((pc = imap_set_flags (idata, h, pc)) == NULL)
420             goto bail;
421         }
422       }
423     }
424   }
425   while (rc == IMAP_CMD_CONTINUE);
426
427   /* see comment before command start. */
428   h->active = 1;
429
430   fflush (msg->fp);
431   if (ferror (msg->fp)) {
432     mutt_perror (cache->path);
433     goto bail;
434   }
435
436   if (rc != IMAP_CMD_OK)
437     goto bail;
438
439   if (!fetched || !imap_code (idata->cmd.buf))
440     goto bail;
441
442   /* Update the header information.  Previously, we only downloaded a
443    * portion of the headers, those required for the main display.
444    */
445   rewind (msg->fp);
446   /* It may be that the Status header indicates a message is read, but the
447    * IMAP server doesn't know the message has been \Seen. So we capture
448    * the server's notion of 'read' and if it differs from the message info
449    * picked up in mutt_read_rfc822_header, we mark the message (and context
450    * changed). Another possiblity: ignore Status on IMAP?*/
451   read = h->read;
452   newenv = mutt_read_rfc822_header (msg->fp, h, 0, 0);
453   mutt_merge_envelopes(h->env, &newenv);
454
455   /* see above. We want the new status in h->read, so we unset it manually
456    * and let mutt_set_flag set it correctly, updating context. */
457   if (read != h->read) {
458     h->read = read;
459     mutt_set_flag (ctx, h, M_NEW, read);
460   }
461
462   h->lines = 0;
463   fgets (buf, sizeof (buf), msg->fp);
464   while (!feof (msg->fp)) {
465     h->lines++;
466     fgets (buf, sizeof (buf), msg->fp);
467   }
468
469   h->content->length = ftello (msg->fp) - h->content->offset;
470
471   /* This needs to be done in case this is a multipart message */
472 #if defined(HAVE_PGP) || defined(HAVE_SMIME)
473   h->security = crypt_query (h->content);
474 #endif
475
476   mutt_clear_error ();
477   rewind (msg->fp);
478
479   return 0;
480
481 bail:
482   safe_fclose (&msg->fp);
483   if (cache->path) {
484     unlink (cache->path);
485     p_delete(&cache->path);
486   }
487
488   return -1;
489 }
490
491 int imap_append_message (CONTEXT * ctx, MESSAGE * msg)
492 {
493   IMAP_DATA *idata;
494   FILE *fp;
495   char buf[LONG_STRING];
496   char mbox[LONG_STRING];
497   char mailbox[LONG_STRING];
498   size_t len;
499   int c, last;
500   IMAP_MBOX mx;
501   int rc;
502   progress_t bar;
503   size_t sent;
504
505   idata = (IMAP_DATA *) ctx->data;
506
507   if (imap_parse_path (ctx->path, &mx))
508     return -1;
509
510   imap_fix_path (idata, mx.mbox, mailbox, sizeof (mailbox));
511
512   if ((fp = fopen (msg->path, "r")) == NULL) {
513     mutt_perror (msg->path);
514     goto fail;
515   }
516
517   /* currently we set the \Seen flag on all messages, but probably we
518    * should scan the message Status header for flag info. Since we're
519    * already rereading the whole file for length it isn't any more
520    * expensive (it'd be nice if we had the file size passed in already
521    * by the code that writes the file, but that's a lot of changes.
522    * Ideally we'd have a HEADER structure with flag info here... */
523   for (last = EOF, len = 0; (c = fgetc (fp)) != EOF; last = c) {
524     if (c == '\n' && last != '\r')
525       len++;
526
527     len++;
528   }
529   rewind (fp);
530
531   bar.msg = _("Uploading message...");
532   bar.size = len;
533   mutt_progress_bar (&bar, 0);
534
535   imap_munge_mbox_name (mbox, sizeof (mbox), mailbox);
536   snprintf (buf, sizeof (buf), "APPEND %s (%s%s%s%s%s) {%lu}", mbox,
537             msg->flags.read ? "\\Seen" : "",
538             msg->flags.read && (msg->flags.replied
539                                 || msg->flags.flagged) ? " " : "",
540             msg->flags.replied ? "\\Answered" : "", msg->flags.replied
541             && msg->flags.flagged ? " " : "",
542             msg->flags.flagged ? "\\Flagged" : "", (unsigned long) len);
543
544   imap_cmd_start (idata, buf);
545
546   do
547     rc = imap_cmd_step (idata);
548   while (rc == IMAP_CMD_CONTINUE);
549
550   if (rc != IMAP_CMD_RESPOND) {
551     char *pc;
552
553     debug_print (1, ("command failed: %s\n", idata->cmd.buf));
554
555     pc = vskipspaces(idata->cmd.buf + SEQLEN);
556     pc = imap_next_word (pc);
557     mutt_error ("%s", pc);
558     mutt_sleep (1);
559     fclose (fp);
560     goto fail;
561   }
562
563   for (last = EOF, sent = len = 0; (c = fgetc (fp)) != EOF; last = c) {
564     if (c == '\n' && last != '\r')
565       buf[len++] = '\r';
566
567     buf[len++] = c;
568
569     if (len > sizeof (buf) - 3) {
570       sent += len;
571       flush_buffer (buf, &len, idata->conn);
572       mutt_progress_bar (&bar, sent);
573     }
574   }
575
576   if (len)
577     flush_buffer (buf, &len, idata->conn);
578
579   mutt_socket_write (idata->conn, "\r\n");
580   fclose (fp);
581
582   do
583     rc = imap_cmd_step (idata);
584   while (rc == IMAP_CMD_CONTINUE);
585
586   if (!imap_code (idata->cmd.buf)) {
587     char *pc;
588
589     debug_print (1, ("command failed: %s\n", idata->cmd.buf));
590     pc = vskipspaces(idata->cmd.buf + SEQLEN);
591     pc = imap_next_word (pc);
592     mutt_error ("%s", pc);
593     mutt_sleep (1);
594     goto fail;
595   }
596
597   p_delete(&mx.mbox);
598   return 0;
599
600 fail:
601   p_delete(&mx.mbox);
602   return -1;
603 }
604
605 /* imap_copy_messages: use server COPY command to copy messages to another
606  *   folder.
607  *   Return codes:
608  *      -1: error
609  *       0: success
610  *       1: non-fatal error - try fetch/append */
611 int imap_copy_messages (CONTEXT * ctx, HEADER * h, char *dest, int delete)
612 {
613   IMAP_DATA *idata;
614   BUFFER cmd, sync_cmd;
615   char uid[11];
616   char mbox[LONG_STRING];
617   char mmbox[LONG_STRING];
618   int rc;
619   int n;
620   IMAP_MBOX mx;
621   int err_continue = M_NO;
622
623   idata = (IMAP_DATA *) ctx->data;
624
625   if (imap_parse_path (dest, &mx)) {
626     debug_print (1, ("bad destination %s\n", dest));
627     return -1;
628   }
629
630   /* check that the save-to folder is in the same account */
631   if (!mutt_account_match (&(CTX_DATA->conn->account), &(mx.account))) {
632     debug_print (3, ("%s not same server as %s\n", dest, ctx->path));
633     return 1;
634   }
635
636   if (h && h->attach_del) {
637     debug_print (3, ("Message contains attachments to be deleted\n"));
638     return 1;
639   }
640
641   imap_fix_path (idata, mx.mbox, mbox, sizeof (mbox));
642
643   p_clear(&sync_cmd, 1);
644   p_clear(&cmd, 1);
645   mutt_buffer_addstr (&cmd, "UID COPY ");
646
647   /* Null HEADER* means copy tagged messages */
648   if (!h) {
649     /* if any messages have attachments to delete, fall through to FETCH
650      * and APPEND. TODO: Copy what we can with COPY, fall through for the
651      * remainder. */
652     for (n = 0; n < ctx->msgcount; n++) {
653       if (ctx->hdrs[n]->tagged && ctx->hdrs[n]->attach_del) {
654         debug_print (3, ("Message contains attachments to be deleted\n"));
655         return 1;
656       }
657
658       if (ctx->hdrs[n]->tagged && ctx->hdrs[n]->active &&
659           ctx->hdrs[n]->changed)
660       {
661         rc = imap_sync_message (idata, ctx->hdrs[n], &sync_cmd, &err_continue);
662         if (rc < 0)
663         {
664           debug_print (1, ("could not sync\n"));
665           goto fail;
666         }
667       }
668     }
669
670     rc = imap_make_msg_set (idata, &cmd, M_TAG, 0);
671     if (!rc) {
672       debug_print (1, ("No messages tagged\n"));
673       goto fail;
674     }
675     mutt_message (_("Copying %d messages to %s..."), rc, mbox);
676   }
677   else {
678     mutt_message (_("Copying message %d to %s..."), h->index + 1, mbox);
679     snprintf (uid, sizeof (uid), "%u", HEADER_DATA (h)->uid);
680     mutt_buffer_addstr (&cmd, uid);
681
682     if (h->active && h->changed)
683     {
684       rc = imap_sync_message (idata, h, &sync_cmd, &err_continue);
685       if (rc < 0)
686       {
687         debug_print (1, ("could not sync\n"));
688         goto fail;
689       }
690     }
691   }
692
693   /* let's get it on */
694   mutt_buffer_addstr (&cmd, " ");
695   imap_munge_mbox_name (mmbox, sizeof (mmbox), mbox);
696   mutt_buffer_addstr (&cmd, mmbox);
697
698   rc = imap_exec (idata, cmd.data, IMAP_CMD_FAIL_OK);
699   if (rc == -2) {
700     /* bail out if command failed for reasons other than nonexistent target */
701     if (ascii_strncasecmp
702         (imap_get_qualifier (idata->cmd.buf), "[TRYCREATE]", 11)) {
703       imap_error ("imap_copy_messages", idata->cmd.buf);
704       goto fail;
705     }
706     debug_print (2, ("server suggests TRYCREATE\n"));
707     snprintf (mmbox, sizeof (mmbox), _("Create %s?"), mbox);
708     if (option (OPTCONFIRMCREATE) && mutt_yesorno (mmbox, 1) < 1) {
709       mutt_clear_error ();
710       goto fail;
711     }
712     if (imap_create_mailbox (idata, mbox) < 0)
713       goto fail;
714
715     /* try again */
716     rc = imap_exec (idata, cmd.data, 0);
717   }
718   if (rc != 0) {
719     imap_error ("imap_copy_messages", idata->cmd.buf);
720     goto fail;
721   }
722
723   /* cleanup */
724   if (delete) {
725     if (!h)
726       for (n = 0; n < ctx->msgcount; n++) {
727         if (ctx->hdrs[n]->tagged) {
728           mutt_set_flag (ctx, ctx->hdrs[n], M_DELETE, 1);
729           mutt_set_flag (ctx, ctx->hdrs[n], M_APPENDED, 1);
730           if (option (OPTDELETEUNTAG))
731             mutt_set_flag (ctx, ctx->hdrs[n], M_TAG, 0);
732         }
733       }
734     else {
735       mutt_set_flag (ctx, h, M_DELETE, 1);
736       mutt_set_flag (ctx, h, M_APPENDED, 1);
737       if (option (OPTDELETEUNTAG))
738         mutt_set_flag (ctx, h, M_TAG, 0);
739     }
740   }
741
742   if (cmd.data)
743     p_delete(&cmd.data);
744   if (sync_cmd.data)
745     p_delete(&sync_cmd.data);
746   p_delete(&mx.mbox);
747   return 0;
748
749 fail:
750   if (cmd.data)
751     p_delete(&cmd.data);
752   if (sync_cmd.data)
753     p_delete(&sync_cmd.data);
754   p_delete(&mx.mbox);
755   return -1;
756 }
757
758 /* imap_add_keywords: concatenate custom IMAP tags to list, if they
759  *   appear in the folder flags list. Why wouldn't they? */
760 void imap_add_keywords (char *s, HEADER * h, LIST * mailbox_flags,
761                         size_t slen)
762 {
763   LIST *keywords;
764
765   if (!mailbox_flags || !HEADER_DATA (h) || !HEADER_DATA (h)->keywords)
766     return;
767
768   keywords = HEADER_DATA (h)->keywords->next;
769
770   while (keywords) {
771     if (msg_has_flag (mailbox_flags, keywords->data)) {
772       m_strcat(s, slen, keywords->data);
773       m_strcat(s, slen, " ");
774     }
775     keywords = keywords->next;
776   }
777 }
778
779 /* imap_free_header_data: free IMAP_HEADER structure */
780 void imap_free_header_data (void **data)
781 {
782   /* this should be safe even if the list wasn't used */
783   mutt_free_list (&(((IMAP_HEADER_DATA *) * data)->keywords));
784
785   p_delete(data);
786 }
787
788 /* imap_set_flags: fill out the message header according to the flags from
789  *   the server. Expects a flags line of the form "FLAGS (flag flag ...)" */
790 char *imap_set_flags (IMAP_DATA * idata, HEADER * h, char *s)
791 {
792   CONTEXT *ctx = idata->ctx;
793   IMAP_HEADER newh;
794   unsigned char readonly;
795
796   p_clear(&newh, 1);
797   newh.data = p_new(IMAP_HEADER_DATA, 1);
798
799   debug_print (2, ("parsing FLAGS\n"));
800   if ((s = msg_parse_flags (&newh, s)) == NULL) {
801     p_delete(&newh.data);
802     return NULL;
803   }
804
805   /* YAUH (yet another ugly hack): temporarily set context to
806    * read-write even if it's read-only, so *server* updates of
807    * flags can be processed by mutt_set_flag. ctx->changed must
808    * be restored afterwards */
809   readonly = ctx->readonly;
810   ctx->readonly = 0;
811
812   mutt_set_flag (ctx, h, M_NEW, !(newh.read || newh.old));
813   mutt_set_flag (ctx, h, M_OLD, newh.old);
814   mutt_set_flag (ctx, h, M_READ, newh.read);
815   mutt_set_flag (ctx, h, M_DELETE, newh.deleted);
816   mutt_set_flag (ctx, h, M_FLAG, newh.flagged);
817   mutt_set_flag (ctx, h, M_REPLIED, newh.replied);
818
819   /* this message is now definitively *not* changed (mutt_set_flag
820    * marks things changed as a side-effect) */
821   h->changed = 0;
822   ctx->changed &= ~readonly;
823   ctx->readonly = readonly;
824
825   mutt_free_list (&(HEADER_DATA (h)->keywords));
826   HEADER_DATA (h)->keywords = newh.data->keywords;
827   p_delete(&newh.data);
828
829   return s;
830 }
831
832
833 /* msg_fetch_header: import IMAP FETCH response into an IMAP_HEADER.
834  *   Expects string beginning with * n FETCH.
835  *   Returns:
836  *      0 on success
837  *     -1 if the string is not a fetch response
838  *     -2 if the string is a corrupt fetch response */
839 static int msg_fetch_header (CONTEXT * ctx, IMAP_HEADER * h, char *buf,
840                              FILE * fp)
841 {
842   IMAP_DATA *idata;
843   long bytes;
844   int rc = -1;                  /* default now is that string isn't FETCH response */
845
846   idata = (IMAP_DATA *) ctx->data;
847
848   if (buf[0] != '*')
849     return rc;
850
851   /* skip to message number */
852   buf = imap_next_word (buf);
853   h->sid = atoi (buf);
854
855   /* find FETCH tag */
856   buf = imap_next_word (buf);
857   if (ascii_strncasecmp ("FETCH", buf, 5))
858     return rc;
859
860   rc = -2;                      /* we've got a FETCH response, for better or worse */
861   if (!(buf = strchr (buf, '(')))
862     return rc;
863   buf++;
864
865   /* FIXME: current implementation - call msg_parse_fetch - if it returns -2,
866    *   read header lines and call it again. Silly. */
867   if (msg_parse_fetch (h, buf) != -2)
868     return rc;
869
870   if (imap_get_literal_count (buf, &bytes) == 0) {
871     imap_read_literal (fp, idata, bytes, NULL);
872
873     /* we may have other fields of the FETCH _after_ the literal
874      * (eg Domino puts FLAGS here). Nothing wrong with that, either.
875      * This all has to go - we should accept literals and nonliterals
876      * interchangeably at any time. */
877     if (imap_cmd_step (idata) != IMAP_CMD_CONTINUE)
878       return rc;
879
880     if (msg_parse_fetch (h, idata->cmd.buf) == -1)
881       return rc;
882   }
883
884   rc = 0;                       /* success */
885
886   /* subtract headers from message size - unfortunately only the subset of
887    * headers we've requested. */
888   h->content_length -= bytes;
889
890   return rc;
891 }
892
893 #ifdef USE_HCACHE
894 static size_t imap_hcache_keylen (const char *fn)
895 {
896   return m_strlen(fn);
897 }
898
899 /* msg_fetch_header: import IMAP FETCH response into an IMAP_HEADER.
900  *   Expects string beginning with * n FETCH.
901  *   Returns:
902  *      0 on success
903  *     -1 if the string is not a fetch response
904  *     -2 if the string is a corrupt fetch response */
905 static int msg_fetch_header_fetch (CONTEXT * ctx, IMAP_HEADER * h, char *buf,
906                                    FILE * fp)
907 {
908   IMAP_DATA *idata;
909   int rc = -1;                  /* default now is that string isn't FETCH response */
910
911   idata = (IMAP_DATA *) ctx->data;
912
913   if (buf[0] != '*')
914     return rc;
915
916   /* skip to message number */
917   buf = imap_next_word (buf);
918   h->sid = atoi (buf);
919
920   /* find FETCH tag */
921   buf = imap_next_word (buf);
922   if (ascii_strncasecmp ("FETCH", buf, 5))
923     return rc;
924
925   rc = -2;                      /* we've got a FETCH response, for better or worse */
926   if (!(buf = strchr (buf, '(')))
927     return rc;
928   buf++;
929
930   if (msg_parse_fetch (h, buf) < 0) {
931     return -2;
932   }
933
934   if (!(buf = strchr (buf, ')')))
935     return rc;
936   buf++;
937
938   return 0;
939 }
940 #endif /* USE_HCACHE */
941
942
943 /* msg_has_flag: do a caseless comparison of the flag against a flag list,
944  *   return 1 if found or flag list has '\*', 0 otherwise */
945 static int msg_has_flag (LIST * flag_list, const char *flag)
946 {
947   if (!flag_list)
948     return 0;
949
950   flag_list = flag_list->next;
951   while (flag_list) {
952     if (!ascii_strncasecmp (flag_list->data, flag, m_strlen(flag_list->data)))
953       return 1;
954
955     flag_list = flag_list->next;
956   }
957
958   return 0;
959 }
960
961 /* msg_parse_fetch: handle headers returned from header fetch */
962 static int msg_parse_fetch (IMAP_HEADER * h, char *s)
963 {
964   char tmp[SHORT_STRING];
965   char *ptmp;
966
967   if (!s)
968     return -1;
969
970   while (*s) {
971     s = vskipspaces(s);
972
973     if (ascii_strncasecmp ("FLAGS", s, 5) == 0) {
974       if ((s = msg_parse_flags (h, s)) == NULL)
975         return -1;
976     }
977     else if (ascii_strncasecmp ("UID", s, 3) == 0) {
978       s = vskipspaces(s + 3);
979       h->data->uid = (unsigned int) atoi (s);
980
981       s = imap_next_word (s);
982     }
983     else if (ascii_strncasecmp ("INTERNALDATE", s, 12) == 0) {
984       s = vskipspaces(s + 12);
985       if (*s != '\"') {
986         debug_print (1, ("bogus INTERNALDATE entry: %s\n", s));
987         return -1;
988       }
989       s++;
990       ptmp = tmp;
991       while (*s && *s != '\"')
992         *ptmp++ = *s++;
993       if (*s != '\"')
994         return -1;
995       s++;                      /* skip past the trailing " */
996       *ptmp = 0;
997       h->received = imap_parse_date (tmp);
998     }
999     else if (ascii_strncasecmp ("RFC822.SIZE", s, 11) == 0) {
1000       s = vskipspaces(s + 11);
1001       ptmp = tmp;
1002       while (isdigit ((unsigned char) *s))
1003         *ptmp++ = *s++;
1004       *ptmp = 0;
1005       h->content_length = atoi (tmp);
1006     }
1007     else if (!ascii_strncasecmp ("BODY", s, 4) ||
1008              !ascii_strncasecmp ("RFC822.HEADER", s, 13)) {
1009       /* handle above, in msg_fetch_header */
1010       return -2;
1011     }
1012     else if (*s == ')')
1013       s++;                      /* end of request */
1014     else if (*s) {
1015       /* got something i don't understand */
1016       imap_error ("msg_parse_fetch", s);
1017       return -1;
1018     }
1019   }
1020
1021   return 0;
1022 }
1023
1024 /* msg_parse_flags: read a FLAGS token into an IMAP_HEADER */
1025 static char *msg_parse_flags (IMAP_HEADER * h, char *s)
1026 {
1027   int recent = 0;
1028
1029   /* sanity-check string */
1030   if (ascii_strncasecmp ("FLAGS", s, 5) != 0) {
1031     debug_print (1, ("not a FLAGS response: %s\n", s));
1032     return NULL;
1033   }
1034   s = vskipspaces(s + 5);
1035   if (*s != '(') {
1036     debug_print (1, ("bogus FLAGS response: %s\n", s));
1037     return NULL;
1038   }
1039   s++;
1040
1041   /* start parsing */
1042   while (*s && *s != ')') {
1043     if (ascii_strncasecmp ("\\deleted", s, 8) == 0) {
1044       s += 8;
1045       h->deleted = 1;
1046     }
1047     else if (ascii_strncasecmp ("\\flagged", s, 8) == 0) {
1048       s += 8;
1049       h->flagged = 1;
1050     }
1051     else if (ascii_strncasecmp ("\\answered", s, 9) == 0) {
1052       s += 9;
1053       h->replied = 1;
1054     }
1055     else if (ascii_strncasecmp ("\\seen", s, 5) == 0) {
1056       s += 5;
1057       h->read = 1;
1058     }
1059     else if (ascii_strncasecmp ("\\recent", s, 5) == 0) {
1060       s += 7;
1061       recent = 1;
1062     }
1063     else {
1064       /* store custom flags as well */
1065       char ctmp;
1066       char *flag_word = s;
1067
1068       if (!h->data->keywords)
1069         h->data->keywords = mutt_new_list ();
1070
1071       while (*s && !ISSPACE (*s) && *s != ')')
1072         s++;
1073       ctmp = *s;
1074       *s = '\0';
1075       mutt_add_list (h->data->keywords, flag_word);
1076       *s = ctmp;
1077     }
1078     s = vskipspaces(s);
1079   }
1080
1081   /* wrap up, or note bad flags response */
1082   if (*s == ')') {
1083     /* if a message is neither seen nor recent, it is OLD. */
1084     if (option (OPTMARKOLD) && !recent && !(h->read))
1085       h->old = 1;
1086     s++;
1087   }
1088   else {
1089     debug_print (1, ("Unterminated FLAGS response: %s\n", s));
1090     return NULL;
1091   }
1092
1093   return s;
1094 }
1095
1096 static void flush_buffer (char *buf, size_t * len, CONNECTION * conn)
1097 {
1098   buf[*len] = '\0';
1099   mutt_socket_write (conn, buf);
1100   *len = 0;
1101 }