fix line number and file.
[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 "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("X-Mutt-PGP:", tmp->data, 11) == 0) {
316       hdr->security = mutt_parse_crypt_hdr (strchr (tmp->data, ':') + 1, 1);
317       hdr->security |= APPLICATION_PGP;
318
319       /* remove the pgp field */
320       next = tmp->next;
321       if (last)
322         last->next = tmp->next;
323       else
324         hdr->env->userhdrs = tmp->next;
325       tmp->next = NULL;
326       string_list_wipe(&tmp);
327       tmp = next;
328     }
329     else if (m_strncmp("X-Mutt-SMIME:", tmp->data, 13) == 0) {
330       hdr->security = mutt_parse_crypt_hdr (strchr (tmp->data, ':') + 1, 1);
331       hdr->security |= APPLICATION_SMIME;
332
333       /* remove the smime field */
334       next = tmp->next;
335       if (last)
336         last->next = tmp->next;
337       else
338         hdr->env->userhdrs = tmp->next;
339       tmp->next = NULL;
340       string_list_wipe(&tmp);
341       tmp = next;
342     }
343     else if (m_strncmp("X-Mutt-Mix:", tmp->data, 11) == 0) {
344       char *t;
345
346       string_list_wipe(&hdr->chain);
347
348       t = strtok (tmp->data + 11, " \t\n");
349       while (t) {
350         hdr->chain = mutt_add_list (hdr->chain, t);
351         t = strtok (NULL, " \t\n");
352       }
353
354       next = tmp->next;
355       if (last)
356         last->next = tmp->next;
357       else
358         hdr->env->userhdrs = tmp->next;
359       tmp->next = NULL;
360       string_list_wipe(&tmp);
361       tmp = next;
362     }
363     else {
364       last = tmp;
365       tmp = tmp->next;
366     }
367   }
368   return (code);
369 }
370
371
372
373 int mutt_parse_crypt_hdr (char *p, int set_signas)
374 {
375   int pgp = 0;
376   char pgp_sign_as[LONG_STRING] = "\0", *q;
377   char smime_cryptalg[LONG_STRING] = "\0";
378
379   for (p = vskipspaces(p); *p; p++) {
380     switch (*p) {
381     case 'e':
382     case 'E':
383       pgp |= ENCRYPT;
384       break;
385
386     case 's':
387     case 'S':
388       pgp |= SIGN;
389       q = pgp_sign_as;
390
391       if (*(p + 1) == '<') {
392         for (p += 2;
393              *p && *p != '>' && q < pgp_sign_as + sizeof (pgp_sign_as) - 1;
394              *q++ = *p++);
395
396         if (*p != '>') {
397           mutt_error _("Illegal PGP header");
398
399           return 0;
400         }
401       }
402
403       *q = '\0';
404       break;
405
406       /* This used to be the micalg parameter.
407        * 
408        * It's no longer needed, so we just skip the parameter in order
409        * to be able to recall old messages.
410        */
411     case 'm':
412     case 'M':
413       if (*(p + 1) == '<') {
414         for (p += 2; *p && *p != '>'; p++);
415         if (*p != '>') {
416           mutt_error _("Illegal PGP header");
417
418           return 0;
419         }
420       }
421
422       break;
423
424
425     case 'c':
426     case 'C':
427       q = smime_cryptalg;
428
429       if (*(p + 1) == '<') {
430         for (p += 2;
431              *p && *p != '>'
432              && q < smime_cryptalg + sizeof (smime_cryptalg) - 1;
433              *q++ = *p++);
434
435         if (*p != '>') {
436           mutt_error _("Illegal S/MIME header");
437
438           return 0;
439         }
440       }
441
442       *q = '\0';
443       break;
444
445     case 'i':
446     case 'I':
447       pgp |= INLINE;
448       break;
449
450     default:
451       mutt_error _("Illegal PGP header");
452       return 0;
453     }
454
455   }
456
457   /* the cryptalg field must not be empty */
458   if (*smime_cryptalg)
459     m_strreplace(&SmimeCryptAlg, smime_cryptalg);
460
461   if (set_signas || *pgp_sign_as)
462     m_strreplace(&PgpSignAs, pgp_sign_as);
463
464   return pgp;
465 }
466
467
468
469 int mutt_prepare_template (FILE * fp, CONTEXT * ctx, HEADER * newhdr,
470                            HEADER * hdr, short weed)
471 {
472   MESSAGE *msg = NULL;
473   char file[_POSIX_PATH_MAX];
474   BODY *b;
475   FILE *bfp;
476
477   int rv = -1;
478   STATE s;
479
480   p_clear(&s, 1);
481
482   if (!fp && (msg = mx_open_message (ctx, hdr->msgno)) == NULL)
483     return (-1);
484
485   if (!fp)
486     fp = msg->fp;
487
488   bfp = fp;
489
490   /* parse the message header and MIME structure */
491
492   fseeko (fp, hdr->offset, 0);
493   newhdr->offset = hdr->offset;
494   newhdr->env = mutt_read_rfc822_header (fp, newhdr, 1, weed);
495   newhdr->content->length = hdr->content->length;
496   mutt_parse_part (fp, newhdr->content);
497
498   p_delete(&newhdr->env->message_id);
499   p_delete(&newhdr->env->mail_followup_to);        /* really? */
500
501   /* decrypt pgp/mime encoded messages */
502
503   if ((APPLICATION_PGP | APPLICATION_SMIME) & hdr->security
504       && mutt_is_multipart_encrypted (newhdr->content))
505   {
506     int ccap = (APPLICATION_PGP | APPLICATION_SMIME) & hdr->security;
507     newhdr->security |= ENCRYPT | ccap;
508     mutt_message _("Decrypting message...");
509
510     if (((ccap & APPLICATION_PGP)
511          && crypt_pgp_decrypt_mime (fp, &bfp, newhdr->content, &b) == -1)
512         || ((ccap & APPLICATION_SMIME)
513             && crypt_smime_decrypt_mime (fp, &bfp, newhdr->content, &b) == -1)
514         || b == NULL)
515     {
516       mx_close_message (&msg);
517       envelope_delete(&newhdr->env);
518       body_list_wipe(&newhdr->content);
519       mutt_error _("Decryption failed.");
520
521       return -1;
522     }
523
524     body_list_wipe(&newhdr->content);
525     newhdr->content = b;
526
527     mutt_clear_error ();
528   }
529
530   /* 
531    * remove a potential multipart/signed layer - useful when
532    * resending messages 
533    */
534
535   if (mutt_is_multipart_signed (newhdr->content)) {
536     newhdr->security |= SIGN;
537     if (ascii_strcasecmp(parameter_getval(newhdr->content->parameter, "protocol"),
538                          "application/pgp-signature") == 0)
539       newhdr->security |= APPLICATION_PGP;
540     else
541       newhdr->security |= APPLICATION_SMIME;
542
543     /* destroy the signature */
544     body_list_wipe(&newhdr->content->parts->next);
545     newhdr->content = mutt_remove_multipart (newhdr->content);
546   }
547
548
549   /* 
550    * We don't need no primary multipart.
551    * Note: We _do_ preserve messages!
552    * 
553    * XXX - we don't handle multipart/alternative in any 
554    * smart way when sending messages.  However, one may
555    * consider this a feature.
556    * 
557    */
558
559   if (newhdr->content->type == TYPEMULTIPART)
560     newhdr->content = mutt_remove_multipart (newhdr->content);
561
562   s.fpin = bfp;
563
564   /* create temporary files for all attachments */
565   for (b = newhdr->content; b; b = b->next) {
566
567     /* what follows is roughly a receive-mode variant of
568      * mutt_get_tmp_attachment () from muttlib.c
569      */
570
571     file[0] = '\0';
572     if (b->filename) {
573       m_strcpy(file, sizeof(file), b->filename);
574       b->d_filename = m_strdup(b->filename);
575     }
576     else {
577       /* avoid Content-Disposition: header with temporary filename */
578       b->use_disp = 0;
579     }
580
581     /* set up state flags */
582
583     s.flags = 0;
584
585     if (b->type == TYPETEXT) {
586       b->noconv = !ascii_strcasecmp("yes", parameter_getval(b->parameter,
587                                                             "x-mutt-noconv"));
588       if (b->noconv)
589         s.flags |= M_CHARCONV;
590
591       parameter_delval(&b->parameter, "x-mutt-noconv");
592     }
593
594     s.fpout = m_tempfile(file, sizeof(file), NONULL(MCore.tmpdir), file);
595     if (!s.fpout)
596       goto bail;
597
598     if (mutt_is_application_pgp (b) & (ENCRYPT | SIGN)) {
599
600       mutt_body_handler (b, &s);
601
602       newhdr->security |= mutt_is_application_pgp (newhdr->content);
603
604       b->type = TYPETEXT;
605       m_strreplace(&b->subtype, "plain");
606       parameter_delval(&b->parameter, "x-action");
607     }
608     else
609       mutt_decode_attachment (b, &s);
610
611     if (m_fclose(&s.fpout) != 0)
612       goto bail;
613
614     m_strreplace(&b->filename, file);
615     b->unlink = 1;
616
617     mutt_stamp_attachment (b);
618
619     body_list_wipe(&b->parts);
620     if (b->hdr)
621       b->hdr->content = NULL;   /* avoid dangling pointer */
622   }
623
624   /* Fix encryption flags. */
625
626   /* No inline if multipart. */
627   if ((newhdr->security & INLINE) && newhdr->content->next)
628     newhdr->security &= ~INLINE;
629
630   /* Theoretically, both could be set. Take the one the user wants to set by default. */
631   if ((newhdr->security & APPLICATION_PGP)
632       && (newhdr->security & APPLICATION_SMIME)) {
633     if (mod_crypt.smime_is_default)
634       newhdr->security &= ~APPLICATION_PGP;
635     else
636       newhdr->security &= ~APPLICATION_SMIME;
637   }
638
639   rv = 0;
640
641 bail:
642
643   /* that's it. */
644   if (bfp != fp)
645     m_fclose(&bfp);
646   if (msg)
647     mx_close_message (&msg);
648
649   if (rv == -1) {
650     envelope_delete(&newhdr->env);
651     body_list_wipe(&newhdr->content);
652   }
653
654   return rv;
655 }