code simplification, fixes.
[apps/madmutt.git] / postpone.c
1 /*
2  * Copyright notice from original mutt:
3  * Copyright (C) 1996-2002 Michael R. Elkins <me@mutt.org>
4  * Copyright (C) 1999-2000 Thomas Roessler <roessler@does-not-exist.org>
5  *
6  * This file is part of mutt-ng, see http://www.muttng.org/.
7  * It's licensed under the GNU General Public License,
8  * please see the file GPL in the top level source directory.
9  */
10
11 #include <lib-lib/lib-lib.h>
12
13 #include <lib-mime/mime.h>
14
15 #include <lib-ui/enter.h>
16 #include <lib-ui/menu.h>
17 #include <lib-ui/curses.h>
18 #include <lib-mx/mx.h>
19
20 #include <lib-sys/unix.h>
21
22 #include "mutt.h"
23 #include "handler.h"
24 #include "sort.h"
25 #include "thread.h"
26 #include <lib-crypt/crypt.h>
27
28 #include <imap/imap.h>
29
30 static struct mapping_t PostponeHelp[] = {
31   {N_("Exit"),  OP_EXIT},
32   {N_("Del"),   OP_DELETE},
33   {N_("Undel"), OP_UNDELETE},
34   {N_("Help"),  OP_HELP},
35   {NULL,        OP_NULL}
36 };
37
38
39
40 static short PostCount = 0;
41 static CONTEXT *PostContext = NULL;
42 static short UpdateNumPostponed = 0;
43
44 /* Return the number of postponed messages.
45  * if force is 0, use a cached value if it is costly to get a fresh
46  * count (IMAP) - else check.
47  */
48 int mutt_num_postponed (int force)
49 {
50   struct stat st;
51   CONTEXT ctx;
52
53   static time_t LastModify = 0;
54   static char *OldPostponed = NULL;
55
56   if (UpdateNumPostponed) {
57     UpdateNumPostponed = 0;
58     force = 1;
59   }
60
61   if (Postponed != OldPostponed) {
62     OldPostponed = Postponed;
63     LastModify = 0;
64     force = 1;
65   }
66
67   if (!Postponed)
68     return 0;
69
70   /* LastModify is useless for IMAP */
71   if (imap_is_magic (Postponed, NULL) == M_IMAP) {
72     if (force) {
73       short newpc;
74
75       newpc = imap_mailbox_check (Postponed, 0);
76       if (newpc >= 0) {
77         PostCount = newpc;
78       }
79     }
80     return PostCount;
81   }
82
83   if (stat (Postponed, &st) == -1) {
84     PostCount = 0;
85     LastModify = 0;
86     return (0);
87   }
88
89   if (S_ISDIR (st.st_mode)) {
90     /* if we have a maildir mailbox, we need to stat the "new" dir */
91
92     char buf[_POSIX_PATH_MAX];
93
94     snprintf (buf, sizeof (buf), "%s/new", Postponed);
95     if (access (buf, F_OK) == 0 && stat (buf, &st) == -1) {
96       PostCount = 0;
97       LastModify = 0;
98       return 0;
99     }
100   }
101
102   if (LastModify < st.st_mtime) {
103 #ifdef USE_NNTP
104     int optnews = option (OPTNEWS);
105 #endif
106     LastModify = st.st_mtime;
107
108     if (access (Postponed, R_OK | F_OK) != 0)
109       return (PostCount = 0);
110 #ifdef USE_NNTP
111     if (optnews)
112       unset_option (OPTNEWS);
113 #endif
114     if (mx_open_mailbox (Postponed, M_NOSORT | M_QUIET, &ctx) == NULL)
115       PostCount = 0;
116     else
117       PostCount = ctx.msgcount;
118     mx_fastclose_mailbox (&ctx);
119 #ifdef USE_NNTP
120     if (optnews)
121       set_option (OPTNEWS);
122 #endif
123   }
124
125   return (PostCount);
126 }
127
128 void mutt_update_num_postponed (void)
129 {
130   UpdateNumPostponed = 1;
131 }
132
133 static void post_entry (char *s, ssize_t slen, MUTTMENU * menu, int entry)
134 {
135   CONTEXT *ctx = (CONTEXT *) menu->data;
136
137   _mutt_make_string (s, slen, NONULL (HdrFmt), ctx, ctx->hdrs[entry],
138                      option(OPTARROWCURSOR) ? M_FORMAT_ARROWCURSOR : 0);
139 }
140
141 static HEADER *select_msg (void)
142 {
143   MUTTMENU *menu;
144   int i, done = 0, r = -1;
145   char helpstr[STRING];
146   short orig_sort;
147
148   menu = mutt_new_menu ();
149   menu->make_entry = post_entry;
150   menu->menu = MENU_POST;
151   menu->max = PostContext->msgcount;
152   menu->title = _("Postponed Messages");
153   menu->data = PostContext;
154   menu->help =
155     mutt_compile_help (helpstr, sizeof (helpstr), MENU_POST, PostponeHelp);
156
157   /* The postponed mailbox is setup to have sorting disabled, but the global
158    * Sort variable may indicate something different.   Sorting has to be
159    * disabled while the postpone menu is being displayed. */
160   orig_sort = Sort;
161   Sort = SORT_ORDER;
162
163   while (!done) {
164     switch (i = mutt_menuLoop (menu)) {
165     case OP_DELETE:
166     case OP_UNDELETE:
167       mutt_set_flag (PostContext, PostContext->hdrs[menu->current], M_DELETE,
168                      (i == OP_DELETE) ? 1 : 0);
169       PostCount = PostContext->msgcount - PostContext->deleted;
170       if (option (OPTRESOLVE) && menu->current < menu->max - 1) {
171         menu->oldcurrent = menu->current;
172         menu->current++;
173         if (menu->current >= menu->top + menu->pagelen) {
174           menu->top = menu->current;
175           menu->redraw = REDRAW_INDEX | REDRAW_STATUS;
176         }
177         else
178           menu->redraw |= REDRAW_MOTION_RESYNCH;
179       }
180       else
181         menu->redraw = REDRAW_CURRENT;
182       break;
183
184     case OP_GENERIC_SELECT_ENTRY:
185       r = menu->current;
186       done = 1;
187       break;
188
189     case OP_EXIT:
190       done = 1;
191       break;
192     }
193   }
194
195   Sort = orig_sort;
196   mutt_menuDestroy (&menu);
197   return (r > -1 ? PostContext->hdrs[r] : NULL);
198 }
199
200 /* args:
201  *      ctx     Context info, used when recalling a message to which
202  *              we reply.
203  *      hdr     envelope/attachment info for recalled message
204  *      cur     if message was a reply, `cur' is set to the message which
205  *              `hdr' is in reply to
206  *      fcc     fcc for the recalled message
207  *      fcclen  max length of fcc
208  *
209  * return vals:
210  *      -1              error/no messages
211  *      0               normal exit
212  *      SENDREPLY       recalled message is a reply
213  */
214 int mutt_get_postponed (CONTEXT * ctx, HEADER * hdr, HEADER ** cur, char *fcc,
215                         ssize_t fcclen)
216 {
217   HEADER *h;
218   int code = SENDPOSTPONED;
219   string_list_t *tmp;
220   string_list_t *last = NULL;
221   string_list_t *next;
222   char *p;
223   int opt_delete;
224
225   if (!Postponed)
226     return (-1);
227
228   if ((PostContext = mx_open_mailbox (Postponed, M_NOSORT, NULL)) == NULL) {
229     PostCount = 0;
230     mutt_error _("No postponed messages.");
231
232     return (-1);
233   }
234
235   if (!PostContext->msgcount) {
236     PostCount = 0;
237     mx_close_mailbox (PostContext, NULL);
238     p_delete(&PostContext);
239     mutt_error _("No postponed messages.");
240
241     return (-1);
242   }
243
244   if (PostContext->msgcount == 1) {
245     /* only one message, so just use that one. */
246     h = PostContext->hdrs[0];
247   }
248   else if ((h = select_msg ()) == NULL) {
249     mx_close_mailbox (PostContext, NULL);
250     p_delete(&PostContext);
251     return (-1);
252   }
253
254   if (mutt_prepare_template (NULL, PostContext, hdr, h, 0) < 0) {
255     mx_fastclose_mailbox (PostContext);
256     p_delete(&PostContext);
257     return (-1);
258   }
259
260   /* finished with this message, so delete it. */
261   mutt_set_flag (PostContext, h, M_DELETE, 1);
262
263   /* and consider it saved, so that it won't be moved to the trash folder */
264   mutt_set_flag (PostContext, h, M_APPENDED, 1);
265
266   /* update the count for the status display */
267   PostCount = PostContext->msgcount - PostContext->deleted;
268
269   /* avoid the "purge deleted messages" prompt */
270   opt_delete = quadoption (OPT_DELETE);
271   set_quadoption (OPT_DELETE, M_YES);
272   mx_close_mailbox (PostContext, NULL);
273   set_quadoption (OPT_DELETE, opt_delete);
274
275   p_delete(&PostContext);
276
277   for (tmp = hdr->env->userhdrs; tmp;) {
278     if (ascii_strncasecmp ("X-Mutt-References:", tmp->data, 18) == 0) {
279       if (ctx) {
280         /* if a mailbox is currently open, look to see if the orignal message
281            the user attempted to reply to is in this mailbox */
282         p = vskipspaces(tmp->data + 18);
283         if (!ctx->id_hash)
284           ctx->id_hash = mutt_make_id_hash (ctx);
285         *cur = hash_find (ctx->id_hash, p);
286       }
287
288       /* Remove the X-Mutt-References: header field. */
289       next = tmp->next;
290       if (last)
291         last->next = tmp->next;
292       else
293         hdr->env->userhdrs = tmp->next;
294       tmp->next = NULL;
295       string_list_wipe(&tmp);
296       tmp = next;
297       if (*cur)
298         code |= SENDREPLY;
299     }
300     else if (ascii_strncasecmp ("X-Mutt-Fcc:", tmp->data, 11) == 0) {
301       p = vskipspaces(tmp->data + 11);
302       m_strcpy(fcc, fcclen, p);
303       mutt_pretty_mailbox (fcc);
304
305       /* remove the X-Mutt-Fcc: header field */
306       next = tmp->next;
307       if (last)
308         last->next = tmp->next;
309       else
310         hdr->env->userhdrs = tmp->next;
311       tmp->next = NULL;
312       string_list_wipe(&tmp);
313       tmp = next;
314     }
315     else if ((m_strncmp("Pgp:", tmp->data, 4) == 0       /* this is generated
316                                                           * by old mutt versions
317                                                           */
318                  || m_strncmp("X-Mutt-PGP:", tmp->data, 11) == 0)) {
319       hdr->security = mutt_parse_crypt_hdr (strchr (tmp->data, ':') + 1, 1);
320       hdr->security |= APPLICATION_PGP;
321
322       /* remove the pgp field */
323       next = tmp->next;
324       if (last)
325         last->next = tmp->next;
326       else
327         hdr->env->userhdrs = tmp->next;
328       tmp->next = NULL;
329       string_list_wipe(&tmp);
330       tmp = next;
331     }
332     else if (m_strncmp("X-Mutt-SMIME:", tmp->data, 13) == 0) {
333       hdr->security = mutt_parse_crypt_hdr (strchr (tmp->data, ':') + 1, 1);
334       hdr->security |= APPLICATION_SMIME;
335
336       /* remove the smime field */
337       next = tmp->next;
338       if (last)
339         last->next = tmp->next;
340       else
341         hdr->env->userhdrs = tmp->next;
342       tmp->next = NULL;
343       string_list_wipe(&tmp);
344       tmp = next;
345     }
346     else if (m_strncmp("X-Mutt-Mix:", tmp->data, 11) == 0) {
347       char *t;
348
349       string_list_wipe(&hdr->chain);
350
351       t = strtok (tmp->data + 11, " \t\n");
352       while (t) {
353         hdr->chain = mutt_add_list (hdr->chain, t);
354         t = strtok (NULL, " \t\n");
355       }
356
357       next = tmp->next;
358       if (last)
359         last->next = tmp->next;
360       else
361         hdr->env->userhdrs = tmp->next;
362       tmp->next = NULL;
363       string_list_wipe(&tmp);
364       tmp = next;
365     }
366     else {
367       last = tmp;
368       tmp = tmp->next;
369     }
370   }
371   return (code);
372 }
373
374
375
376 int mutt_parse_crypt_hdr (char *p, int set_signas)
377 {
378   int pgp = 0;
379   char pgp_sign_as[LONG_STRING] = "\0", *q;
380   char smime_cryptalg[LONG_STRING] = "\0";
381
382   for (p = vskipspaces(p); *p; p++) {
383     switch (*p) {
384     case 'e':
385     case 'E':
386       pgp |= ENCRYPT;
387       break;
388
389     case 's':
390     case 'S':
391       pgp |= SIGN;
392       q = pgp_sign_as;
393
394       if (*(p + 1) == '<') {
395         for (p += 2;
396              *p && *p != '>' && q < pgp_sign_as + sizeof (pgp_sign_as) - 1;
397              *q++ = *p++);
398
399         if (*p != '>') {
400           mutt_error _("Illegal PGP header");
401
402           return 0;
403         }
404       }
405
406       *q = '\0';
407       break;
408
409       /* This used to be the micalg parameter.
410        * 
411        * It's no longer needed, so we just skip the parameter in order
412        * to be able to recall old messages.
413        */
414     case 'm':
415     case 'M':
416       if (*(p + 1) == '<') {
417         for (p += 2; *p && *p != '>'; p++);
418         if (*p != '>') {
419           mutt_error _("Illegal PGP header");
420
421           return 0;
422         }
423       }
424
425       break;
426
427
428     case 'c':
429     case 'C':
430       q = smime_cryptalg;
431
432       if (*(p + 1) == '<') {
433         for (p += 2;
434              *p && *p != '>'
435              && q < smime_cryptalg + sizeof (smime_cryptalg) - 1;
436              *q++ = *p++);
437
438         if (*p != '>') {
439           mutt_error _("Illegal S/MIME header");
440
441           return 0;
442         }
443       }
444
445       *q = '\0';
446       break;
447
448     case 'i':
449     case 'I':
450       pgp |= INLINE;
451       break;
452
453     default:
454       mutt_error _("Illegal PGP header");
455       return 0;
456     }
457
458   }
459
460   /* the cryptalg field must not be empty */
461   if (*smime_cryptalg)
462     m_strreplace(&SmimeCryptAlg, smime_cryptalg);
463
464   if (set_signas || *pgp_sign_as)
465     m_strreplace(&PgpSignAs, pgp_sign_as);
466
467   return pgp;
468 }
469
470
471
472 int mutt_prepare_template (FILE * fp, CONTEXT * ctx, HEADER * newhdr,
473                            HEADER * hdr, short weed)
474 {
475   MESSAGE *msg = NULL;
476   char file[_POSIX_PATH_MAX];
477   BODY *b;
478   FILE *bfp;
479
480   int rv = -1;
481   STATE s;
482
483   p_clear(&s, 1);
484
485   if (!fp && (msg = mx_open_message (ctx, hdr->msgno)) == NULL)
486     return (-1);
487
488   if (!fp)
489     fp = msg->fp;
490
491   bfp = fp;
492
493   /* parse the message header and MIME structure */
494
495   fseeko (fp, hdr->offset, 0);
496   newhdr->offset = hdr->offset;
497   newhdr->env = mutt_read_rfc822_header (fp, newhdr, 1, weed);
498   newhdr->content->length = hdr->content->length;
499   mutt_parse_part (fp, newhdr->content);
500
501   p_delete(&newhdr->env->message_id);
502   p_delete(&newhdr->env->mail_followup_to);        /* really? */
503
504   /* decrypt pgp/mime encoded messages */
505
506   if ((APPLICATION_PGP | APPLICATION_SMIME) & hdr->security
507       && mutt_is_multipart_encrypted (newhdr->content))
508   {
509     int ccap = (APPLICATION_PGP | APPLICATION_SMIME) & hdr->security;
510     newhdr->security |= ENCRYPT | ccap;
511     if (!crypt_valid_passphrase (ccap))
512       goto err;
513
514     mutt_message _("Decrypting message...");
515
516     if (((ccap & APPLICATION_PGP)
517          && crypt_pgp_decrypt_mime (fp, &bfp, newhdr->content, &b) == -1)
518         || ((ccap & APPLICATION_SMIME)
519             && crypt_smime_decrypt_mime (fp, &bfp, newhdr->content, &b) == -1)
520         || b == NULL) {
521     err:
522       mx_close_message (&msg);
523       envelope_delete(&newhdr->env);
524       body_list_wipe(&newhdr->content);
525       mutt_error _("Decryption failed.");
526
527       return -1;
528     }
529
530     body_list_wipe(&newhdr->content);
531     newhdr->content = b;
532
533     mutt_clear_error ();
534   }
535
536   /* 
537    * remove a potential multipart/signed layer - useful when
538    * resending messages 
539    */
540
541   if (mutt_is_multipart_signed (newhdr->content)) {
542     newhdr->security |= SIGN;
543     if (ascii_strcasecmp(parameter_getval(newhdr->content->parameter, "protocol"),
544                          "application/pgp-signature") == 0)
545       newhdr->security |= APPLICATION_PGP;
546     else
547       newhdr->security |= APPLICATION_SMIME;
548
549     /* destroy the signature */
550     body_list_wipe(&newhdr->content->parts->next);
551     newhdr->content = mutt_remove_multipart (newhdr->content);
552   }
553
554
555   /* 
556    * We don't need no primary multipart.
557    * Note: We _do_ preserve messages!
558    * 
559    * XXX - we don't handle multipart/alternative in any 
560    * smart way when sending messages.  However, one may
561    * consider this a feature.
562    * 
563    */
564
565   if (newhdr->content->type == TYPEMULTIPART)
566     newhdr->content = mutt_remove_multipart (newhdr->content);
567
568   s.fpin = bfp;
569
570   /* create temporary files for all attachments */
571   for (b = newhdr->content; b; b = b->next) {
572
573     /* what follows is roughly a receive-mode variant of
574      * mutt_get_tmp_attachment () from muttlib.c
575      */
576
577     file[0] = '\0';
578     if (b->filename) {
579       m_strcpy(file, sizeof(file), b->filename);
580       b->d_filename = m_strdup(b->filename);
581     }
582     else {
583       /* avoid Content-Disposition: header with temporary filename */
584       b->use_disp = 0;
585     }
586
587     /* set up state flags */
588
589     s.flags = 0;
590
591     if (b->type == TYPETEXT) {
592       b->noconv = !ascii_strcasecmp("yes", parameter_getval(b->parameter,
593                                                             "x-mutt-noconv"));
594       if (b->noconv)
595         s.flags |= M_CHARCONV;
596
597       parameter_delval(&b->parameter, "x-mutt-noconv");
598     }
599
600     s.fpout = m_tempfile(file, sizeof(file), NONULL(MCore.tmpdir), file);
601     if (!s.fpout)
602       goto bail;
603
604     if (mutt_is_application_pgp (b) & (ENCRYPT | SIGN)) {
605
606       mutt_body_handler (b, &s);
607
608       newhdr->security |= mutt_is_application_pgp (newhdr->content);
609
610       b->type = TYPETEXT;
611       m_strreplace(&b->subtype, "plain");
612       parameter_delval(&b->parameter, "x-action");
613     }
614     else
615       mutt_decode_attachment (b, &s);
616
617     if (m_fclose(&s.fpout) != 0)
618       goto bail;
619
620     m_strreplace(&b->filename, file);
621     b->unlink = 1;
622
623     mutt_stamp_attachment (b);
624
625     body_list_wipe(&b->parts);
626     if (b->hdr)
627       b->hdr->content = NULL;   /* avoid dangling pointer */
628   }
629
630   /* Fix encryption flags. */
631
632   /* No inline if multipart. */
633   if ((newhdr->security & INLINE) && newhdr->content->next)
634     newhdr->security &= ~INLINE;
635
636   /* Theoretically, both could be set. Take the one the user wants to set by default. */
637   if ((newhdr->security & APPLICATION_PGP)
638       && (newhdr->security & APPLICATION_SMIME)) {
639     if (option (OPTSMIMEISDEFAULT))
640       newhdr->security &= ~APPLICATION_PGP;
641     else
642       newhdr->security &= ~APPLICATION_SMIME;
643   }
644
645   rv = 0;
646
647 bail:
648
649   /* that's it. */
650   if (bfp != fp)
651     m_fclose(&bfp);
652   if (msg)
653     mx_close_message (&msg);
654
655   if (rv == -1) {
656     envelope_delete(&newhdr->env);
657     body_list_wipe(&newhdr->content);
658   }
659
660   return rv;
661 }