we don't really need md5 for hcache at all.
[apps/madmutt.git] / send.c
1 /*
2  * Copyright notice from original mutt:
3  * Copyright (C) 1996-2002 Michael R. Elkins <me@mutt.org>
4  *
5  * This file is part of mutt-ng, see http://www.muttng.org/.
6  * It's licensed under the GNU General Public License,
7  * please see the file GPL in the top level source directory.
8  */
9
10 #include <lib-lib/lib-lib.h>
11
12 #include <lib-mime/mime.h>
13 #include <lib-mime/rfc3676.h>
14 #include <lib-sys/unix.h>
15 #include <lib-ui/curses.h>
16 #include <lib-ui/enter.h>
17 #include <lib-mx/mx.h>
18
19 #include "alias.h"
20 #include "keymap.h"
21 #include "copy.h"
22 #include "crypt.h"
23 #include "mutt_idna.h"
24 #include "attach.h"
25
26 #ifdef USE_NNTP
27 #include <nntp/nntp.h>
28 #endif
29
30 #include "remailer.h"
31
32 int url_parse_mailto(ENVELOPE *e, char **body, const char *src)
33 {
34     char *t;
35     char *tmp;
36     char *headers;
37     char *tag, *value;
38     char scratch[HUGE_STRING];
39
40     int taglen;
41
42     string_list_t **last = &e->userhdrs;
43
44     if (!(t = strchr (src, ':')))
45         return -1;
46
47     if ((tmp = m_strdup(t + 1)) == NULL)
48         return -1;
49
50     if ((headers = strchr (tmp, '?')))
51         *headers++ = '\0';
52
53     url_decode(tmp);
54     e->to = rfc822_parse_adrlist(e->to, tmp);
55
56     tag = headers ? strtok (headers, "&") : NULL;
57
58     for (; tag; tag = strtok(NULL, "&")) {
59         if ((value = strchr (tag, '=')))
60             *value++ = '\0';
61         if (!value || !*value)
62             continue;
63
64         url_decode (tag);
65         url_decode (value);
66
67         if (mime_which_token(tag, -1) == MIME_BODY) {
68             if (body)
69                 m_strreplace(body, value);
70         } else {
71 #define SAFEPFX (option(OPTSTRICTMAILTO) ? "" : "X-Mailto-")
72             taglen = m_strlen(tag) + strlen(SAFEPFX);
73             /* mutt_parse_rfc822_line makes some assumptions */
74             snprintf(scratch, sizeof(scratch), "%s%s: %s", SAFEPFX, tag, value);
75 #undef SAVEPFX
76             scratch[taglen] = '\0';
77             value = vskipspaces(&scratch[taglen + 1]);
78             last  = mutt_parse_rfc822_line (e, NULL, scratch, value, 0, 0, last);
79             /* if $strict_mailto is set, force editing headers to let
80              * users have a look at what we got */
81             if (!option (OPTSTRICTMAILTO)) {
82                 set_option (OPTXMAILTO);
83                 set_option (OPTEDITHDRS);
84             }
85         }
86     }
87
88     p_delete(&tmp);
89     return 0;
90 }
91 static void append_signature (FILE * f)
92 {
93   FILE *tmpfp;
94   pid_t thepid;
95
96   if (SignOffString) {
97     fprintf (f, "\n%s", SignOffString);
98   }
99
100   if ((tmpfp = mutt_open_read(NONULL(MAlias.signature), &thepid))) {
101     if (option (OPTSIGDASHES))
102       fputs ("\n-- \n", f);
103     else if (SignOffString)
104       fputs ("\n", f);
105     mutt_copy_stream (tmpfp, f);
106     m_fclose(&tmpfp);
107     if (thepid != -1)
108       mutt_wait_filter (thepid);
109   }
110 }
111
112 /* compare two e-mail addresses and return 1 if they are equivalent */
113 static int mutt_addrcmp (address_t * a, address_t * b)
114 {
115   if (!a->mailbox || !b->mailbox)
116     return 0;
117   if (ascii_strcasecmp (a->mailbox, b->mailbox))
118     return 0;
119   return 1;
120 }
121
122 /* search an e-mail address in a list */
123 static int mutt_addrsrc (address_t * a, address_t * lst)
124 {
125   for (; lst; lst = lst->next) {
126     if (mutt_addrcmp (a, lst))
127       return (1);
128   }
129   return (0);
130 }
131
132 /* removes addresses from "b" which are contained in "a" */
133 static address_t *mutt_remove_xrefs (address_t * a, address_t * b)
134 {
135   address_t *top, *p, *prev = NULL;
136
137   top = b;
138   while (b) {
139     for (p = a; p; p = p->next) {
140       if (mutt_addrcmp (p, b))
141         break;
142     }
143     if (p) {
144       if (prev) {
145         prev->next = b->next;
146         b->next = NULL;
147         address_list_wipe(&b);
148         b = prev;
149       }
150       else {
151         top = top->next;
152         b->next = NULL;
153         address_list_wipe(&b);
154         b = top;
155       }
156     }
157     else {
158       prev = b;
159       b = b->next;
160     }
161   }
162   return top;
163 }
164
165 /* remove any address which matches the current user.  if `leave_only' is
166  * nonzero, don't remove the user's address if it is the only one in the list
167  */
168 static address_t *remove_user (address_t * a, int leave_only)
169 {
170   address_t *top = NULL, *last = NULL;
171
172   while (a) {
173     if (!mutt_addr_is_user (a)) {
174       if (top) {
175         last->next = a;
176         last = last->next;
177       }
178       else
179         last = top = a;
180       a = a->next;
181       last->next = NULL;
182     }
183     else {
184       address_t *tmp = a;
185
186       a = a->next;
187       if (!leave_only || a || last) {
188         tmp->next = NULL;
189         address_list_wipe(&tmp);
190       }
191       else
192         last = top = tmp;
193     }
194   }
195   return top;
196 }
197
198 static address_t *find_mailing_lists (address_t * t, address_t * c)
199 {
200   address_t *top = NULL, *ptr = NULL;
201
202   for (; t || c; t = c, c = NULL) {
203     for (; t; t = t->next) {
204       if (mutt_is_mail_list (t) && !t->group) {
205         if (top) {
206           ptr->next = address_dup (t);
207           ptr = ptr->next;
208         }
209         else
210           ptr = top = address_dup (t);
211       }
212     }
213   }
214   return top;
215 }
216
217 static int edit_address (address_t ** a, const char *field)
218 {
219   char buf[HUGE_STRING];
220   char *err = NULL;
221   int idna_ok = 0;
222
223   do {
224     buf[0] = 0;
225     mutt_addrlist_to_local (*a);
226     rfc822_addrcat(buf, sizeof(buf), *a, 0);
227     if (mutt_get_field (field, buf, sizeof (buf), M_ALIAS) != 0)
228       return (-1);
229     address_list_wipe(a);
230     *a = mutt_expand_aliases (mutt_parse_adrlist (NULL, buf));
231     if ((idna_ok = mutt_addrlist_to_idna (*a, &err)) != 0) {
232       mutt_error (_("Error: '%s' is a bad IDN."), err);
233       mutt_refresh ();
234       mutt_sleep (2);
235       p_delete(&err);
236     }
237   }
238   while (idna_ok != 0);
239   return 0;
240 }
241
242 static int edit_envelope (ENVELOPE * en, int flags)
243 {
244   char buf[HUGE_STRING];
245   string_list_t *uh = UserHeader;
246   regmatch_t pat_match[1];
247
248 #ifdef USE_NNTP
249   if (option (OPTNEWSSEND)) {
250     if (en->newsgroups)
251       m_strcpy(buf, sizeof(buf), en->newsgroups);
252     else
253       buf[0] = 0;
254     if (mutt_get_field ("Newsgroups: ", buf, sizeof (buf), 0) != 0)
255       return (-1);
256     p_delete(&en->newsgroups);
257     en->newsgroups = m_strdup(buf);
258
259     if (en->followup_to)
260       m_strcpy(buf, sizeof(buf), en->followup_to);
261     else
262       buf[0] = 0;
263     if (option (OPTASKFOLLOWUP)
264         && mutt_get_field ("Followup-To: ", buf, sizeof (buf), 0) != 0)
265       return (-1);
266     p_delete(&en->followup_to);
267     en->followup_to = m_strdup(buf);
268
269     if (en->x_comment_to)
270       m_strcpy(buf, sizeof(buf), en->x_comment_to);
271     else
272       buf[0] = 0;
273     if (option (OPTXCOMMENTTO) && option (OPTASKXCOMMENTTO)
274         && mutt_get_field ("X-Comment-To: ", buf, sizeof (buf), 0) != 0)
275       return (-1);
276     p_delete(&en->x_comment_to);
277     en->x_comment_to = m_strdup(buf);
278   }
279   else
280 #endif
281   {
282     if (edit_address (&en->to, "To: ") == -1 || en->to == NULL)
283       return (-1);
284     if (option (OPTASKCC) && edit_address (&en->cc, "Cc: ") == -1)
285       return (-1);
286     if (option (OPTASKBCC) && edit_address (&en->bcc, "Bcc: ") == -1)
287       return (-1);
288   }
289
290   if (en->subject) {
291     if (option (OPTFASTREPLY))
292       return (0);
293     else
294       m_strcpy(buf, sizeof(buf), en->subject);
295   }
296   else {
297     char *p;
298
299     buf[0] = 0;
300     for (; uh; uh = uh->next) {
301       if (ascii_strncasecmp ("subject:", uh->data, 8) == 0) {
302         p = vskipspaces(uh->data + 8);
303         m_strcpy(buf, sizeof(buf), p);
304       }
305     }
306   }
307
308   if ((flags & (SENDREPLY)) && option (OPTSTRIPWAS) && StripWasRegexp.rx &&
309       regexec (StripWasRegexp.rx, buf, 1, pat_match, 0) == 0) {
310     unsigned int pos = pat_match->rm_so;
311
312     if (ascii_strncasecmp (buf, "re: ", pos) != 0) {
313       buf[pos] = '\0';          /* kill match */
314       while (pos-- && buf[pos] == ' ')
315         buf[pos] = '\0';        /* remove trailing spaces */
316     }
317     else {
318       mutt_error (_("Ignoring $strip_was: Subject would be empty."));
319       sleep (2);
320     }
321   }
322   if (mutt_get_field ("Subject: ", buf, sizeof (buf), 0) != 0 || (!buf[0]
323                                                                   &&
324                                                                   query_quadoption
325                                                                   (OPT_SUBJECT,
326                                                                    _
327                                                                    ("No subject, abort?"))
328                                                                   != M_NO)) {
329     mutt_message _("No subject, aborting.");
330
331     return (-1);
332   }
333   m_strreplace(&en->subject, buf);
334
335   return 0;
336 }
337
338 #ifdef USE_NNTP
339 static char *nntp_get_header(const char *s)
340 {
341     return m_strdup(skipspaces(s));
342 }
343 #endif
344
345 static void process_user_recips (ENVELOPE * env)
346 {
347     string_list_t *uh = UserHeader;
348
349     for (; uh; uh = uh->next) {
350         const char *p = strchr(uh->data, ':');
351         if (!p)
352             continue;
353
354         switch (mime_which_token(uh->data, p++ - uh->data)) {
355           case MIME_TO:
356             env->to = rfc822_parse_adrlist(env->to, p);
357             break;
358           case MIME_CC:
359             env->cc = rfc822_parse_adrlist(env->cc, p);
360             break;
361           case MIME_BCC:
362             env->bcc = rfc822_parse_adrlist(env->bcc, p);
363             break;
364 #ifdef USE_NNTP
365           case MIME_NEWSGROUPS:
366             env->newsgroups = nntp_get_header(p);
367             break;
368           case MIME_FOLLOWUP_TO:
369             env->followup_to = nntp_get_header(p);
370             break;
371           case MIME_X_COMMENT_TO:
372             env->x_comment_to = nntp_get_header(p);
373             break;
374 #endif
375           default: break;
376         }
377     }
378 }
379
380 static void process_user_header(ENVELOPE * env)
381 {
382     string_list_t *uh;
383     string_list_t **last = string_list_last(&env->userhdrs);
384
385     for (uh = UserHeader; uh; uh = uh->next) {
386         const char *p = strchr(uh->data, ':');
387         if (!p)
388           continue;
389
390         switch (mime_which_token(uh->data, p++ - uh->data)) {
391           case MIME_FROM:
392             /* User has specified a default From: address.  Remove default address */
393             address_list_wipe(&env->from);
394             env->from = rfc822_parse_adrlist(env->from, p);
395             break;
396
397           case MIME_REPLY_TO:
398             address_list_wipe(&env->reply_to);
399             env->reply_to = rfc822_parse_adrlist (env->reply_to, p);
400             break;
401
402           case MIME_MESSAGE_ID:
403             m_strreplace(&env->message_id, p);
404             break;
405
406           case MIME_TO:
407           case MIME_CC:
408           case MIME_BCC:
409 #ifdef USE_NNTP
410           case MIME_NEWSGROUPS:
411           case MIME_FOLLOWUP_TO:
412           case MIME_X_COMMENT_TO:
413 #endif
414           case MIME_SUPERSEDES:
415           case MIME_SUPERCEDES:
416           case MIME_SUBJECT:
417             break;
418
419           default:
420             *last = string_item_new();
421             (*last)->data = m_strdup(uh->data);
422             last = &(*last)->next;
423             break;
424         }
425     }
426 }
427
428 void mutt_forward_intro (FILE * fp, HEADER * cur)
429 {
430   char buffer[STRING];
431
432   fputs ("----- Forwarded message from ", fp);
433   buffer[0] = 0;
434   rfc822_addrcat(buffer, sizeof(buffer), cur->env->from, 1);
435   fputs (buffer, fp);
436   fputs (" -----\n\n", fp);
437 }
438
439 void mutt_forward_trailer (FILE * fp)
440 {
441   fputs ("\n----- End forwarded message -----\n", fp);
442 }
443
444
445 static int include_forward (CONTEXT * ctx, HEADER * cur, FILE * out)
446 {
447   int chflags = CH_DECODE, cmflags = 0;
448
449   mutt_parse_mime_message (ctx, cur);
450   mutt_message_hook (ctx, cur, M_MESSAGEHOOK);
451
452   mutt_forward_intro (out, cur);
453
454   if (option (OPTFORWDECODE)) {
455     cmflags |= M_CM_DECODE | M_CM_CHARCONV;
456     if (option (OPTWEED)) {
457       chflags |= CH_WEED | CH_REORDER;
458       cmflags |= M_CM_WEED;
459     }
460   }
461   if (option (OPTFORWQUOTE))
462     cmflags |= M_CM_PREFIX;
463
464   mutt_copy_message (out, ctx, cur, cmflags, chflags);
465   mutt_forward_trailer (out);
466   return 0;
467 }
468
469 void mutt_make_attribution (CONTEXT * ctx, HEADER * cur, FILE * out)
470 {
471   char buffer[STRING];
472
473   if (Attribution) {
474     mutt_make_string (buffer, sizeof (buffer), Attribution, ctx, cur);
475     fputs (buffer, out);
476     fputc ('\n', out);
477   }
478 }
479
480 static int include_reply (CONTEXT * ctx, HEADER * cur, FILE * out)
481 {
482   int cmflags = M_CM_PREFIX | M_CM_DECODE | M_CM_CHARCONV | M_CM_REPLYING;
483   int chflags = CH_DECODE;
484
485   mutt_parse_mime_message (ctx, cur);
486   mutt_message_hook (ctx, cur, M_MESSAGEHOOK);
487   mutt_make_attribution (ctx, cur, out);
488
489   if (!option (OPTHEADER))
490     cmflags |= M_CM_NOHEADER;
491   if (option (OPTWEED)) {
492     chflags |= CH_WEED | CH_REORDER;
493     cmflags |= M_CM_WEED;
494   }
495
496   mutt_copy_message (out, ctx, cur, cmflags, chflags);
497   return 0;
498 }
499
500 static int default_to (address_t ** to, ENVELOPE * env, int flags, int hmfupto)
501 {
502   char prompt[STRING];
503
504   if (flags && env->mail_followup_to && hmfupto == M_YES) {
505     address_list_append(to, address_list_dup(env->mail_followup_to));
506     return 0;
507   }
508
509   /* Exit now if we're setting up the default Cc list for list-reply
510    * (only set if Mail-Followup-To is present and honoured).
511    */
512   if (flags & SENDLISTREPLY)
513     return 0;
514
515   /* If this message came from a mailing list, ask the user if he really
516    * intended to reply to the author only.
517    */
518   if (!(flags & SENDGROUPREPLY) && mutt_is_list_cc (0, env->to, env->cc)) {
519     switch (query_quadoption (OPT_LISTREPLY,
520                               _("Message came from a mailing list. List-reply to mailing list?")))
521     {
522     case M_YES:
523       address_list_append(to, find_mailing_lists (env->to, env->cc));
524       return 0;
525     case -1:
526       return -1;                /* abort */
527     }
528   }
529
530   if (!option (OPTREPLYSELF) && mutt_addr_is_user (env->from)) {
531     /* mail is from the user, assume replying to recipients */
532     address_list_append(to, address_list_dup(env->to));
533   }
534   else if (env->reply_to) {
535     if ((mutt_addrcmp (env->from, env->reply_to) && !env->reply_to->next) ||
536         (option (OPTIGNORELISTREPLYTO) &&
537          mutt_is_mail_list (env->reply_to) &&
538          (mutt_addrsrc (env->reply_to, env->to) ||
539           mutt_addrsrc (env->reply_to, env->cc)))) {
540       /* If the Reply-To: address is a mailing list, assume that it was
541        * put there by the mailing list, and use the From: address
542        * 
543        * We also take the from header if our correspondant has a reply-to
544        * header which is identical to the electronic mail address given
545        * in his From header.
546        * 
547        */
548       address_list_append(to, address_list_dup(env->from));
549     }
550     else if (!(mutt_addrcmp (env->from, env->reply_to) &&
551                !env->reply_to->next) && quadoption (OPT_REPLYTO) != M_YES) {
552       /* There are quite a few mailing lists which set the Reply-To:
553        * header field to the list address, which makes it quite impossible
554        * to send a message to only the sender of the message.  This
555        * provides a way to do that.
556        */
557       snprintf (prompt, sizeof (prompt), _("Reply to %s%s?"),
558                 env->reply_to->mailbox, env->reply_to->next ? ",..." : "");
559       switch (query_quadoption (OPT_REPLYTO, prompt)) {
560       case M_YES:
561         address_list_append(to, address_list_dup(env->reply_to));
562         break;
563
564       case M_NO:
565         address_list_append(to, address_list_dup(env->from));
566         break;
567
568       default:
569         return (-1);            /* abort */
570       }
571     }
572     else
573       address_list_append(to, address_list_dup(env->reply_to));
574   }
575   else
576     address_list_append(to, address_list_dup(env->from));
577
578   return (0);
579 }
580
581 int mutt_fetch_recips (ENVELOPE * out, ENVELOPE * in, int flags)
582 {
583   char prompt[STRING];
584   int hmfupto = -1;
585
586   if ((flags & (SENDLISTREPLY | SENDGROUPREPLY)) && in->mail_followup_to) {
587     snprintf (prompt, sizeof (prompt), _("Follow-up to %s%s?"),
588               in->mail_followup_to->mailbox,
589               in->mail_followup_to->next ? ",..." : "");
590
591     if ((hmfupto = query_quadoption (OPT_MFUPTO, prompt)) == -1)
592       return -1;
593   }
594
595   if (flags & SENDLISTREPLY) {
596     address_list_append(&out->to, find_mailing_lists(in->to, in->cc));
597
598     if (in->mail_followup_to && hmfupto == M_YES &&
599         default_to (&out->cc, in, flags & SENDLISTREPLY, hmfupto) == -1)
600       return (-1);              /* abort */
601   }
602   else {
603     if (default_to (&out->to, in, flags & SENDGROUPREPLY, hmfupto) == -1)
604       return (-1);              /* abort */
605
606     if ((flags & SENDGROUPREPLY)
607         && (!in->mail_followup_to || hmfupto != M_YES))
608     {
609       address_t **tmp = address_list_append(&out->cc, address_list_dup(in->to));
610       address_list_append(tmp, address_list_dup(in->cc));
611     }
612   }
613   return 0;
614 }
615
616 void mutt_fix_reply_recipients (ENVELOPE * env)
617 {
618   mutt_expand_aliases_env (env);
619
620   if (!option (OPTMETOO)) {
621     /* the order is important here.  do the CC: first so that if the
622      * the user is the only recipient, it ends up on the TO: field
623      */
624     env->cc = remove_user (env->cc, (env->to == NULL));
625     env->to = remove_user (env->to, (env->cc == NULL));
626   }
627
628   /* the CC field can get cluttered, especially with lists */
629   address_list_uniq(env->to);
630   address_list_uniq(env->cc);
631   env->cc = mutt_remove_xrefs (env->to, env->cc);
632
633   if (env->cc && !env->to) {
634     env->to = env->cc;
635     env->cc = NULL;
636   }
637 }
638
639 void mutt_make_forward_subject (ENVELOPE * env, CONTEXT * ctx, HEADER * cur)
640 {
641   char buffer[STRING];
642
643   /* set the default subject for the message. */
644   mutt_make_string (buffer, sizeof (buffer), NONULL (ForwFmt), ctx, cur);
645   m_strreplace(&env->subject, buffer);
646 }
647
648 void mutt_make_misc_reply_headers (ENVELOPE * env,
649                                    CONTEXT * ctx __attribute__ ((unused)),
650                                    HEADER * cur __attribute__ ((unused)),
651                                    ENVELOPE * curenv)
652 {
653   /* This takes precedence over a subject that might have
654    * been taken from a List-Post header.  Is that correct?
655    */
656   if (curenv->real_subj) {
657     p_delete(&env->subject);
658     env->subject = p_new(char, m_strlen(curenv->real_subj) + 5);
659     sprintf (env->subject, "Re: %s", curenv->real_subj);
660   }
661   else if (!env->subject)
662     env->subject = m_strdup("Re: your mail");
663
664 #ifdef USE_NNTP
665   if (option (OPTNEWSSEND) && option (OPTXCOMMENTTO) && curenv->from)
666     env->x_comment_to = m_strdup(mutt_get_name (curenv->from));
667 #endif
668 }
669
670 static string_list_t *mutt_make_references (ENVELOPE * e)
671 {
672   string_list_t *t = NULL, *l = NULL;
673
674   if (e->references)
675     l = string_list_dup(e->references);
676   else
677     l = string_list_dup(e->in_reply_to);
678
679   if (e->message_id) {
680     t = string_item_new();
681     t->data = m_strdup(e->message_id);
682     t->next = l;
683     l = t;
684   }
685
686   return l;
687 }
688
689 void mutt_add_to_reference_headers (ENVELOPE * env, ENVELOPE * curenv,
690                                     string_list_t *** pp, string_list_t *** qq)
691 {
692   string_list_t **p = NULL, **q = NULL;
693
694   if (pp)
695     p = *pp;
696   if (qq)
697     q = *qq;
698
699   if (!p)
700     p = &env->references;
701   if (!q)
702     q = &env->in_reply_to;
703
704   while (*p)
705     p = &(*p)->next;
706   while (*q)
707     q = &(*q)->next;
708
709   *p = mutt_make_references (curenv);
710
711   if (curenv->message_id) {
712     *q = string_item_new();
713     (*q)->data = m_strdup(curenv->message_id);
714   }
715
716   if (pp)
717     *pp = p;
718   if (qq)
719     *qq = q;
720
721 }
722
723 static void
724 mutt_make_reference_headers (ENVELOPE * curenv, ENVELOPE * env, CONTEXT * ctx)
725 {
726   env->references = NULL;
727   env->in_reply_to = NULL;
728
729   if (!curenv) {
730     HEADER *h;
731     string_list_t **p = NULL, **q = NULL;
732     int i;
733
734     for (i = 0; i < ctx->vcount; i++) {
735       h = ctx->hdrs[ctx->v2r[i]];
736       if (h->tagged)
737         mutt_add_to_reference_headers (env, h->env, &p, &q);
738     }
739   }
740   else
741     mutt_add_to_reference_headers (env, curenv, NULL, NULL);
742 }
743
744 static int
745 envelope_defaults (ENVELOPE * env, CONTEXT * ctx, HEADER * cur, int flags)
746 {
747   ENVELOPE *curenv = NULL;
748   int i = 0, tag = 0;
749
750   if (!cur) {
751     tag = 1;
752     for (i = 0; i < ctx->vcount; i++)
753       if (ctx->hdrs[ctx->v2r[i]]->tagged) {
754         cur = ctx->hdrs[ctx->v2r[i]];
755         curenv = cur->env;
756         break;
757       }
758
759     if (!cur) {
760       /* This could happen if the user tagged some messages and then did
761        * a limit such that none of the tagged message are visible.
762        */
763       mutt_error _("No tagged messages are visible!");
764
765       return (-1);
766     }
767   }
768   else
769     curenv = cur->env;
770
771   if (flags & SENDREPLY) {
772 #ifdef USE_NNTP
773     if ((flags & SENDNEWS)) {
774       /* in case followup set Newsgroups: with Followup-To: if it present */
775       if (!env->newsgroups && curenv &&
776           m_strcasecmp(curenv->followup_to, "poster"))
777         env->newsgroups = m_strdup(curenv->followup_to);
778     }
779     else
780 #endif
781     if (tag) {
782       HEADER *h;
783
784       for (i = 0; i < ctx->vcount; i++) {
785         h = ctx->hdrs[ctx->v2r[i]];
786         if (h->tagged && mutt_fetch_recips (env, h->env, flags) == -1)
787           return -1;
788       }
789     }
790     else if (mutt_fetch_recips (env, curenv, flags) == -1)
791       return -1;
792
793     if ((flags & SENDLISTREPLY) && !env->to) {
794       mutt_error _("No mailing lists found!");
795
796       return (-1);
797     }
798
799     mutt_make_misc_reply_headers (env, ctx, cur, curenv);
800     mutt_make_reference_headers (tag ? NULL : curenv, env, ctx);
801   }
802   else if (flags & SENDFORWARD)
803     mutt_make_forward_subject (env, ctx, cur);
804
805   return (0);
806 }
807
808 static int generate_body (FILE * tempfp,        /* stream for outgoing message */
809                           HEADER * msg, /* header for outgoing message */
810                           int flags,    /* compose mode */
811                           CONTEXT * ctx,        /* current mailbox */
812                           HEADER * cur)
813 {                               /* current message */
814   int i;
815   HEADER *h;
816   BODY *tmp;
817
818   if (flags & SENDREPLY) {
819     if ((i =
820          query_quadoption (OPT_INCLUDE,
821                            _("Include message in reply?"))) == -1)
822       return (-1);
823
824     if (i == M_YES) {
825       mutt_message _("Including quoted message...");
826
827       if (!cur) {
828         for (i = 0; i < ctx->vcount; i++) {
829           h = ctx->hdrs[ctx->v2r[i]];
830           if (h->tagged) {
831             if (include_reply (ctx, h, tempfp) == -1) {
832               mutt_error _("Could not include all requested messages!");
833
834               return (-1);
835             }
836             fputc ('\n', tempfp);
837           }
838         }
839       }
840       else
841         include_reply (ctx, cur, tempfp);
842
843     }
844   }
845   else if (flags & SENDFORWARD) {
846     if ((i =
847          query_quadoption (OPT_MIMEFWD,
848                            _("Forward as attachment?"))) == M_YES) {
849       BODY *last = msg->content;
850
851       mutt_message _("Preparing forwarded message...");
852
853       while (last && last->next)
854         last = last->next;
855
856       if (cur) {
857         tmp = mutt_make_message_attach (ctx, cur, 0);
858         if (last)
859           last->next = tmp;
860         else
861           msg->content = tmp;
862       }
863       else {
864         for (i = 0; i < ctx->vcount; i++) {
865           if (ctx->hdrs[ctx->v2r[i]]->tagged) {
866             tmp = mutt_make_message_attach (ctx, ctx->hdrs[ctx->v2r[i]], 0);
867             if (last) {
868               last->next = tmp;
869               last = tmp;
870             }
871             else
872               last = msg->content = tmp;
873           }
874         }
875       }
876     }
877     else if (i != -1) {
878       if (cur)
879         include_forward (ctx, cur, tempfp);
880       else
881         for (i = 0; i < ctx->vcount; i++)
882           if (ctx->hdrs[ctx->v2r[i]]->tagged)
883             include_forward (ctx, ctx->hdrs[ctx->v2r[i]], tempfp);
884     }
885     else if (i == -1)
886       return -1;
887   }
888
889   mutt_clear_error ();
890
891   return (0);
892 }
893
894 void mutt_set_followup_to (ENVELOPE * e)
895 {
896     /*
897      * Only generate the Mail-Followup-To if the user has requested it, and
898      * it hasn't already been set
899      */
900     if (!option(OPTFOLLOWUPTO))
901         return;
902
903 #ifdef USE_NNTP
904     if (option(OPTNEWSSEND)) {
905         if (!e->followup_to && e->newsgroups && strrchr(e->newsgroups, ','))
906             e->followup_to = m_strdup(e->newsgroups);
907         return;
908     }
909 #endif
910
911     if (e->mail_followup_to)
912         return;
913
914     if (mutt_is_list_cc (0, e->to, e->cc)) {
915         address_t **tmp;
916
917         /*
918          * this message goes to known mailing lists, so create a proper
919          * mail-followup-to header
920          */
921         tmp = address_list_append(&e->mail_followup_to, address_list_dup(e->to));
922         address_list_append(tmp, address_list_dup(e->cc));
923     }
924
925     /* remove ourselves from the mail-followup-to header */
926     e->mail_followup_to = remove_user(e->mail_followup_to, 0);
927
928     /*
929      * If we are not subscribed to any of the lists in question,
930      * re-add ourselves to the mail-followup-to header.  The
931      * mail-followup-to header generated is a no-op with group-reply,
932      * but makes sure list-reply has the desired effect.
933      */
934     if (e->mail_followup_to && !mutt_is_list_recipient(0, e->to, e->cc)) {
935         address_t *from;
936
937         if (e->reply_to)
938             from = address_list_dup(e->reply_to);
939         else if (e->from)
940             from = address_list_dup(e->from);
941         else
942             from = mutt_default_from();
943
944         address_list_append(&from, e->mail_followup_to);
945         e->mail_followup_to = from;
946     }
947
948     address_list_uniq(e->mail_followup_to);
949 }
950
951
952 /* look through the recipients of the message we are replying to, and if
953    we find an address that matches $alternates, we use that as the default
954    from field */
955 static address_t *set_reverse_name (ENVELOPE * env)
956 {
957     address_t *tmp = NULL;
958
959     for (tmp = env->to; tmp; tmp = tmp->next) {
960         if (mutt_addr_is_user(tmp))
961             goto found;
962     }
963     for (tmp = env->cc; tmp; tmp = tmp->next) {
964         if (mutt_addr_is_user(tmp))
965             goto found;
966     }
967
968     if (!mutt_addr_is_user(env->from))
969         return NULL;
970
971     tmp = env->from;
972
973   found:
974     tmp = address_dup(tmp);
975     if (!option(OPTREVREAL) || !tmp->personal) {
976         p_delete(&tmp->personal);
977         tmp->personal = m_strdup(Realname);
978     }
979     return tmp;
980 }
981
982 address_t *mutt_default_from (void)
983 {
984   address_t *adr;
985
986   /*
987    * Note: We let $from override $realname here.
988    * Is this the right thing to do?
989    */
990
991   if (MAlias.from)
992     adr = address_dup(MAlias.from);
993   else if (MCore.use_domain) {
994     const char *fqdn = mutt_fqdn (1);
995     adr = address_new();
996     adr->mailbox = p_new(char, m_strlen(MCore.username) + m_strlen(fqdn) + 2);
997     sprintf(adr->mailbox, "%s@%s", NONULL(MCore.username), NONULL(fqdn));
998   } else {
999     adr = address_new ();
1000     adr->mailbox = m_strdup(NONULL(MCore.username));
1001   }
1002
1003   return (adr);
1004 }
1005
1006 static int send_message (HEADER * msg)
1007 {
1008   char tempfile[_POSIX_PATH_MAX];
1009   FILE *tempfp;
1010   int i;
1011
1012   /* Write out the message in MIME form. */
1013   tempfp = m_tempfile(tempfile, sizeof(tempfile), NONULL(MCore.tmpdir), NULL);
1014   if (!tempfp)
1015     return -1;
1016
1017   mutt_write_rfc822_header (tempfp, msg->env, msg->content, 0,
1018                             msg->chain ? 1 : 0);
1019   fputc ('\n', tempfp);         /* tie off the header. */
1020
1021   if ((mutt_write_mime_body (msg->content, tempfp) == -1)) {
1022     m_fclose(&tempfp);
1023     unlink (tempfile);
1024     return (-1);
1025   }
1026
1027   if (m_fclose(&tempfp) != 0) {
1028     mutt_perror (_("Can't create temporary file"));
1029     unlink (tempfile);
1030     return (-1);
1031   }
1032
1033   if (msg->chain)
1034     return mix_send_message (msg->chain, tempfile);
1035
1036   i = mutt_invoke_mta (msg->env->from, msg->env->to, msg->env->cc,
1037                        msg->env->bcc, tempfile,
1038                        (msg->content->encoding == ENC8BIT));
1039   return (i);
1040 }
1041
1042 /* rfc2047 encode the content-descriptions */
1043 static void encode_descriptions (BODY * b, short recurse)
1044 {
1045   BODY *t;
1046
1047   for (t = b; t; t = t->next) {
1048     if (t->description) {
1049       rfc2047_encode_string (&t->description);
1050     }
1051     if (recurse && t->parts)
1052       encode_descriptions (t->parts, recurse);
1053   }
1054 }
1055
1056 /* rfc2047 decode them in case of an error */
1057 static void decode_descriptions (BODY * b)
1058 {
1059   BODY *t;
1060
1061   for (t = b; t; t = t->next) {
1062     if (t->description) {
1063       rfc2047_decode (&t->description);
1064     }
1065     if (t->parts)
1066       decode_descriptions (t->parts);
1067   }
1068 }
1069
1070 static void fix_end_of_file (const char *data)
1071 {
1072   FILE *fp;
1073   int c;
1074
1075   if ((fp = safe_fopen (data, "a+")) == NULL)
1076     return;
1077   fseeko (fp, -1, SEEK_END);
1078   if ((c = fgetc (fp)) != '\n')
1079     fputc ('\n', fp);
1080   m_fclose(&fp);
1081 }
1082
1083 int mutt_resend_message (FILE * fp, CONTEXT * ctx, HEADER * cur)
1084 {
1085   HEADER *msg = header_new();
1086
1087   if (mutt_prepare_template (fp, ctx, msg, cur, option(OPTWEED)) < 0)
1088     return -1;
1089
1090   return ci_send_message (SENDRESEND, msg, NULL, ctx, cur);
1091 }
1092
1093 int ci_send_message (int flags, /* send mode */
1094                      HEADER * msg,      /* template to use for new message */
1095                      char *tempfile,    /* file specified by -i or -H */
1096                      CONTEXT * ctx,     /* current mailbox */
1097                      HEADER * cur)
1098 {                               /* current message */
1099   char fcc[_POSIX_PATH_MAX] = "";       /* where to copy this message */
1100   FILE *tempfp = NULL;
1101   BODY *pbody;
1102   int i, killfrom = 0;
1103   int fcc_error = 0;
1104   int free_clear_content = 0;
1105
1106   BODY *save_content = NULL;
1107   BODY *clear_content = NULL;
1108   char *pgpkeylist = NULL;
1109
1110   /* save current value of "pgp_sign_as" */
1111   char *signas = NULL, *err = NULL;
1112   const char *tag = NULL;
1113   char *ctype;
1114
1115   int rv = -1;
1116
1117 #ifdef USE_NNTP
1118   if (flags & SENDNEWS)
1119     set_option (OPTNEWSSEND);
1120   else
1121     unset_option (OPTNEWSSEND);
1122 #endif
1123
1124   if (!flags && !msg && quadoption (OPT_RECALL) != M_NO &&
1125       mutt_num_postponed (1)) {
1126     /* If the user is composing a new message, check to see if there
1127      * are any postponed messages first.
1128      */
1129     if ((i =
1130          query_quadoption (OPT_RECALL, _("Recall postponed message?"))) == -1)
1131       return rv;
1132
1133     if (i == M_YES)
1134       flags |= SENDPOSTPONED;
1135   }
1136
1137
1138   if (flags & SENDPOSTPONED)
1139     signas = m_strdup(PgpSignAs);
1140
1141   /* Delay expansion of aliases until absolutely necessary--shouldn't
1142    * be necessary unless we are prompting the user or about to execute a
1143    * send-hook.
1144    */
1145
1146   if (!msg) {
1147     msg = header_new();
1148
1149     if (flags == SENDPOSTPONED) {
1150       if ((flags =
1151            mutt_get_postponed (ctx, msg, &cur, fcc, sizeof (fcc))) < 0)
1152         goto cleanup;
1153 #ifdef USE_NNTP
1154       /*
1155        * If postponed message is a news article, it have
1156        * a "Newsgroups:" header line, then set appropriate flag.
1157        */
1158       if (msg->env->newsgroups) {
1159         flags |= SENDNEWS;
1160         set_option (OPTNEWSSEND);
1161       }
1162       else {
1163         flags &= ~SENDNEWS;
1164         unset_option (OPTNEWSSEND);
1165       }
1166 #endif
1167     }
1168
1169     if (flags & (SENDPOSTPONED | SENDRESEND)) {
1170       if ((tempfp = safe_fopen (msg->content->filename, "a+")) == NULL) {
1171         mutt_perror (msg->content->filename);
1172         goto cleanup;
1173       }
1174     }
1175
1176     if (!msg->env)
1177       msg->env = envelope_new();
1178   }
1179
1180   /* Parse and use an eventual list-post header */
1181   if ((flags & SENDLISTREPLY)
1182       && cur && cur->env && cur->env->list_post) {
1183     /* Use any list-post header as a template */
1184     url_parse_mailto (msg->env, NULL, cur->env->list_post);
1185     /* We don't let them set the sender's address. */
1186     address_list_wipe(&msg->env->from);
1187   }
1188
1189   if (!(flags & (SENDPOSTPONED | SENDRESEND))) {
1190     pbody = body_new();
1191     pbody->next = msg->content; /* don't kill command-line attachments */
1192     msg->content = pbody;
1193
1194     if (!(ctype = m_strdup(ContentType)))
1195       ctype = m_strdup("text/plain");
1196     mutt_parse_content_type (ctype, msg->content);
1197     p_delete(&ctype);
1198
1199     msg->content->unlink = 1;
1200     msg->content->use_disp = 0;
1201     msg->content->disposition = DISPINLINE;
1202     if (option (OPTTEXTFLOWED) && msg->content->type == TYPETEXT
1203         && !ascii_strcasecmp (msg->content->subtype, "plain")) {
1204       parameter_setval(&msg->content->parameter, "format", "flowed");
1205       if (option (OPTDELSP))
1206         parameter_setval(&msg->content->parameter, "delsp", "yes");
1207     }
1208
1209     if (!tempfile) {
1210       char buffer[_POSIX_PATH_MAX];
1211       tempfp = m_tempfile(buffer, sizeof(buffer), NONULL(MCore.tmpdir), NULL);
1212       msg->content->filename = m_strdup(buffer);
1213     } else {
1214       tempfp = safe_fopen(tempfile, "a+");
1215       msg->content->filename = m_strdup(tempfile);
1216     }
1217
1218     if (!tempfp) {
1219       mutt_perror (msg->content->filename);
1220       goto cleanup;
1221     }
1222   }
1223
1224   /* this is handled here so that the user can match ~f in send-hook */
1225   if (cur && option (OPTREVNAME) && !(flags & (SENDPOSTPONED | SENDRESEND))) {
1226     /* we shouldn't have to worry about freeing `msg->env->from' before
1227      * setting it here since this code will only execute when doing some
1228      * sort of reply.  the pointer will only be set when using the -H command
1229      * line option.
1230      *
1231      * We shouldn't have to worry about alias expansion here since we are
1232      * either replying to a real or postponed message, therefore no aliases
1233      * should exist since the user has not had the opportunity to add
1234      * addresses to the list.  We just have to ensure the postponed messages
1235      * have their aliases expanded.
1236      */
1237
1238     msg->env->from = set_reverse_name (cur->env);
1239   }
1240
1241   if (!msg->env->from && option (OPTUSEFROM)
1242       && !(flags & (SENDPOSTPONED | SENDRESEND)))
1243     msg->env->from = mutt_default_from ();
1244
1245   if (flags & SENDBATCH) {
1246     mutt_copy_stream (stdin, tempfp);
1247     if (option (OPTHDRS)) {
1248       process_user_recips (msg->env);
1249       process_user_header (msg->env);
1250     }
1251     mutt_expand_aliases_env (msg->env);
1252   }
1253   else if (!(flags & (SENDPOSTPONED | SENDRESEND))) {
1254     if ((flags & (SENDREPLY | SENDFORWARD)) && ctx &&
1255         envelope_defaults (msg->env, ctx, cur, flags) == -1)
1256       goto cleanup;
1257
1258     if (option (OPTHDRS))
1259       process_user_recips (msg->env);
1260
1261     /* Expand aliases and remove duplicates/crossrefs */
1262     mutt_fix_reply_recipients (msg->env);
1263
1264 #ifdef USE_NNTP
1265     if ((flags & SENDNEWS) && ctx && ctx->magic == M_NNTP
1266         && !msg->env->newsgroups)
1267       msg->env->newsgroups = m_strdup(((NNTP_DATA *) ctx->data)->group);
1268 #endif
1269
1270     if (!(option (OPTAUTOEDIT) && option (OPTEDITHDRS)) &&
1271         !((flags & SENDREPLY) && option (OPTFASTREPLY))) {
1272       if (edit_envelope (msg->env, flags) == -1)
1273         goto cleanup;
1274     }
1275
1276     /* the from address must be set here regardless of whether or not
1277      * $use_from is set so that the `~P' (from you) operator in send-hook
1278      * patterns will work.  if $use_from is unset, the from address is killed
1279      * after send-hooks are evaulated */
1280
1281     if (!msg->env->from) {
1282       msg->env->from = mutt_default_from ();
1283       killfrom = 1;
1284     }
1285
1286     if ((flags & SENDREPLY) && cur) {
1287       /* change setting based upon message we are replying to */
1288       mutt_message_hook (ctx, cur, M_REPLYHOOK);
1289
1290       /*
1291        * set the replied flag for the message we are generating so that the
1292        * user can use ~Q in a send-hook to know when reply-hook's are also
1293        * being used.
1294        */
1295       msg->replied = 1;
1296     }
1297
1298     /* change settings based upon recipients */
1299
1300     mutt_message_hook (NULL, msg, M_SENDHOOK);
1301
1302     /*
1303      * Unset the replied flag from the message we are composing since it is
1304      * no longer required.  This is done here because the FCC'd copy of
1305      * this message was erroneously get the 'R'eplied flag when stored in
1306      * a maildir-style mailbox.
1307      */
1308     msg->replied = 0;
1309
1310     if (killfrom) {
1311       address_list_wipe(&msg->env->from);
1312       killfrom = 0;
1313     }
1314
1315     if (option (OPTHDRS))
1316       process_user_header (msg->env);
1317
1318     /* include replies/forwarded messages, unless we are given a template */
1319     if (!tempfile && (ctx || !(flags & (SENDREPLY | SENDFORWARD)))
1320         && generate_body (tempfp, msg, flags, ctx, cur) == -1)
1321       goto cleanup;
1322
1323     append_signature (tempfp);
1324
1325     /* 
1326      * this wants to be done _after_ generate_body, so message-hooks
1327      * can take effect.
1328      */
1329
1330     if (option (OPTCRYPTAUTOSIGN))
1331       msg->security |= SIGN;
1332     if (option (OPTCRYPTAUTOENCRYPT))
1333       msg->security |= ENCRYPT;
1334     if (option (OPTCRYPTREPLYENCRYPT) && cur && (cur->security & ENCRYPT))
1335       msg->security |= ENCRYPT;
1336     if (option (OPTCRYPTREPLYSIGN) && cur && (cur->security & SIGN))
1337       msg->security |= SIGN;
1338     if (option (OPTCRYPTREPLYSIGNENCRYPTED) && cur
1339         && (cur->security & ENCRYPT))
1340       msg->security |= SIGN;
1341
1342     if (msg->security) {
1343       /* 
1344        * When reypling / forwarding, use the original message's
1345        * crypto system.  According to the documentation,
1346        * smime_is_default should be disregarded here.
1347        * 
1348        * Problem: At least with forwarding, this doesn't really
1349        * make much sense. Should we have an option to completely
1350        * disable individual mechanisms at run-time?
1351        */
1352       if (cur) {
1353         if (option (OPTCRYPTAUTOPGP) && (cur->security & APPLICATION_PGP))
1354           msg->security |= APPLICATION_PGP;
1355         else if (option (OPTCRYPTAUTOSMIME)
1356                  && (cur->security & APPLICATION_SMIME))
1357           msg->security |= APPLICATION_SMIME;
1358       }
1359
1360       /*
1361        * No crypto mechanism selected? Use availability + smime_is_default
1362        * for the decision. 
1363        */
1364       if (!(msg->security & (APPLICATION_SMIME | APPLICATION_PGP))) {
1365         if (option (OPTCRYPTAUTOSMIME) && option (OPTSMIMEISDEFAULT))
1366           msg->security |= APPLICATION_SMIME;
1367         else if (option (OPTCRYPTAUTOPGP))
1368           msg->security |= APPLICATION_PGP;
1369         else if (option (OPTCRYPTAUTOSMIME))
1370           msg->security |= APPLICATION_SMIME;
1371       }
1372     }
1373
1374     /* No permissible mechanisms found.  Don't sign or encrypt. */
1375     if (!(msg->security & (APPLICATION_SMIME | APPLICATION_PGP)))
1376       msg->security = 0;
1377   }
1378
1379   /* 
1380    * This hook is even called for postponed messages, and can, e.g., be
1381    * used for setting the editor, the sendmail path, or the
1382    * envelope sender.
1383    */
1384   mutt_message_hook (NULL, msg, M_SEND2HOOK);
1385
1386   /* wait until now to set the real name portion of our return address so
1387      that $realname can be set in a send-hook */
1388   if (msg->env->from && !msg->env->from->personal
1389       && !(flags & (SENDRESEND | SENDPOSTPONED)))
1390     msg->env->from->personal = m_strdup(Realname);
1391
1392   m_fclose(&tempfp);
1393
1394   if (!(flags & SENDBATCH)) {
1395     struct stat st;
1396     time_t mtime = m_decrease_mtime(msg->content->filename, NULL);
1397
1398     mutt_update_encoding (msg->content);
1399
1400     /*
1401      * Select whether or not the user's editor should be called now.  We
1402      * don't want to do this when:
1403      * 1) we are sending a key/cert
1404      * 2) we are forwarding a message and the user doesn't want to edit it.
1405      *    This is controled by the quadoption $forward_edit.  However, if
1406      *    both $edit_headers and $autoedit are set, we want to ignore the
1407      *    setting of $forward_edit because the user probably needs to add the
1408      *    recipients.
1409      */
1410     if (((flags & SENDFORWARD) == 0 ||
1411          (option (OPTEDITHDRS) && option (OPTAUTOEDIT)) ||
1412          query_quadoption (OPT_FORWEDIT,
1413                            _("Edit forwarded message?")) == M_YES))
1414     {
1415       /* If the this isn't a text message, look for a mailcap edit command */
1416       if (rfc1524_mailcap_isneeded(msg->content)) {
1417         if (!mutt_edit_attachment (msg->content))
1418           goto cleanup;
1419       } else if (option (OPTEDITHDRS)) {
1420         mutt_env_to_local (msg->env);
1421         mutt_edit_headers(msg->content->filename, msg, fcc, sizeof (fcc));
1422         mutt_env_to_idna (msg->env, NULL, NULL);
1423       }
1424       else {
1425         mutt_edit_file(msg->content->filename);
1426
1427         if (stat (msg->content->filename, &st) == 0) {
1428           if (mtime != st.st_mtime)
1429             fix_end_of_file (msg->content->filename);
1430         } else
1431           mutt_perror (msg->content->filename);
1432       }
1433
1434       if (option (OPTTEXTFLOWED))
1435         rfc3676_space_stuff (msg);
1436
1437       mutt_message_hook (NULL, msg, M_SEND2HOOK);
1438     }
1439
1440     if (!(flags & (SENDPOSTPONED | SENDFORWARD | SENDRESEND))) {
1441       if (stat (msg->content->filename, &st) == 0) {
1442         /* if the file was not modified, bail out now */
1443         if (mtime == st.st_mtime && !msg->content->next &&
1444             query_quadoption (OPT_ABORT,
1445                               _("Abort unmodified message?")) == M_YES) {
1446           mutt_message _("Aborted unmodified message.");
1447
1448           goto cleanup;
1449         }
1450       }
1451       else
1452         mutt_perror (msg->content->filename);
1453     }
1454   }
1455
1456   /* specify a default fcc.  if we are in batchmode, only save a copy of
1457    * the message if the value of $copy is yes or ask-yes */
1458
1459   if (!fcc[0] && !(flags & (SENDPOSTPONED))
1460       && (!(flags & SENDBATCH) || (quadoption (OPT_COPY) & 0x1))) {
1461     /* set the default FCC */
1462     if (!msg->env->from) {
1463       msg->env->from = mutt_default_from ();
1464       killfrom = 1;             /* no need to check $use_from because if the user specified
1465                                    a from address it would have already been set by now */
1466     }
1467     mutt_select_fcc (fcc, sizeof (fcc), msg);
1468     if (killfrom) {
1469       address_list_wipe(&msg->env->from);
1470       killfrom = 0;
1471     }
1472   }
1473
1474
1475   mutt_update_encoding (msg->content);
1476
1477   if (!(flags & SENDBATCH)) {
1478   main_loop:
1479
1480     fcc_error = 0;              /* reset value since we may have failed before */
1481     mutt_pretty_mailbox (fcc);
1482     i = mutt_compose_menu (msg, fcc, sizeof (fcc), cur);
1483     if (i == -1) {
1484       /* abort */
1485 #ifdef USE_NNTP
1486       if (flags & SENDNEWS)
1487         mutt_message (_("Article not posted."));
1488
1489       else
1490 #endif
1491         mutt_message _("Mail not sent.");
1492       goto cleanup;
1493     }
1494     else if (i == 1) {
1495       /* postpone the message until later. */
1496       if (msg->content->next)
1497         msg->content = mutt_make_multipart (msg->content);
1498
1499       /*
1500        * make sure the message is written to the right part of a maildir 
1501        * postponed folder.
1502        */
1503       msg->read = 0;
1504       msg->old = 0;
1505
1506       encode_descriptions (msg->content, 1);
1507       mutt_prepare_envelope (msg->env, 0);
1508       mutt_env_to_idna (msg->env, NULL, NULL);  /* Handle bad IDNAs the next time. */
1509
1510       if (!Postponed
1511           || mutt_write_fcc (NONULL (Postponed), msg,
1512                              (cur
1513                               && (flags & SENDREPLY)) ? cur->env->
1514                              message_id : NULL, 1, fcc) < 0) {
1515         msg->content = mutt_remove_multipart (msg->content);
1516         decode_descriptions (msg->content);
1517         mutt_unprepare_envelope (msg->env);
1518         goto main_loop;
1519       }
1520       mutt_update_num_postponed ();
1521       mutt_message _("Message postponed.");
1522
1523       goto cleanup;
1524     }
1525   }
1526
1527 #ifdef USE_NNTP
1528   if (!(flags & SENDNEWS))
1529 #endif
1530     if (!msg->env->to && !msg->env->cc && !msg->env->bcc) {
1531       if (!(flags & SENDBATCH)) {
1532         mutt_error _("No recipients are specified!");
1533
1534         goto main_loop;
1535       }
1536       else {
1537         puts _("No recipients were specified.");
1538
1539         goto cleanup;
1540       }
1541     }
1542
1543   if (mutt_env_to_idna (msg->env, &tag, &err)) {
1544     mutt_error (_("Bad IDN in \"%s\": '%s'"), tag, err);
1545     p_delete(&err);
1546     if (!(flags & SENDBATCH))
1547       goto main_loop;
1548     else
1549       goto cleanup;
1550   }
1551
1552   if (!msg->env->subject && !(flags & SENDBATCH) &&
1553       (i =
1554        query_quadoption (OPT_SUBJECT,
1555                          _("No subject, abort sending?"))) != M_NO) {
1556     /* if the abort is automatic, print an error message */
1557     if (quadoption (OPT_SUBJECT) == M_YES)
1558       mutt_error _("No subject specified.");
1559
1560     goto main_loop;
1561   }
1562 #ifdef USE_NNTP
1563   if ((flags & SENDNEWS) && !msg->env->subject) {
1564     mutt_error _("No subject specified.");
1565
1566     goto main_loop;
1567   }
1568
1569   if ((flags & SENDNEWS) && !msg->env->newsgroups) {
1570     mutt_error _("No newsgroup specified.");
1571
1572     goto main_loop;
1573   }
1574 #endif
1575
1576   if (msg->content->next)
1577     msg->content = mutt_make_multipart (msg->content);
1578
1579   if (mutt_attach_check (msg) &&
1580       !msg->content->next &&
1581       query_quadoption (OPT_ATTACH,
1582                         _("No attachments made but indicator found in text. "
1583                           "Cancel sending?")) == M_YES) {
1584     if (quadoption (OPT_ATTACH) == M_YES) {
1585       mutt_message _("No attachments made but indicator found in text. "
1586                      "Abort sending.");
1587       sleep (2);
1588     }
1589     mutt_message (_("Mail not sent."));
1590     goto main_loop;
1591   }
1592
1593   /* 
1594    * Ok, we need to do it this way instead of handling all fcc stuff in
1595    * one place in order to avoid going to main_loop with encoded "env"
1596    * in case of error.  Ugh.
1597    */
1598
1599   encode_descriptions (msg->content, 1);
1600
1601   /*
1602    * Make sure that clear_content and free_clear_content are
1603    * properly initialized -- we may visit this particular place in
1604    * the code multiple times, including after a failed call to
1605    * mutt_protect().
1606    */
1607
1608   clear_content = NULL;
1609   free_clear_content = 0;
1610
1611   if (msg->security) {
1612     /* save the decrypted attachments */
1613     clear_content = msg->content;
1614
1615     if ((crypt_get_keys (msg, &pgpkeylist) == -1) ||
1616         mutt_protect (msg, pgpkeylist) == -1) {
1617       msg->content = mutt_remove_multipart (msg->content);
1618
1619       p_delete(&pgpkeylist);
1620
1621       decode_descriptions (msg->content);
1622       goto main_loop;
1623     }
1624     encode_descriptions (msg->content, 0);
1625   }
1626
1627   /* 
1628    * at this point, msg->content is one of the following three things:
1629    * - multipart/signed.  In this case, clear_content is a child.
1630    * - multipart/encrypted.  In this case, clear_content exists
1631    *   independently
1632    * - application/pgp.  In this case, clear_content exists independently.
1633    * - something else.  In this case, it's the same as clear_content.
1634    */
1635
1636   /* This is ugly -- lack of "reporting back" from mutt_protect(). */
1637
1638   if (clear_content && (msg->content != clear_content)
1639       && (msg->content->parts != clear_content))
1640     free_clear_content = 1;
1641
1642   if (!option (OPTNOCURSES))
1643     mutt_message _("Sending message...");
1644
1645   mutt_prepare_envelope (msg->env, 1);
1646
1647   /* save a copy of the message, if necessary. */
1648
1649   mutt_expand_path (fcc, sizeof (fcc));
1650
1651
1652   /* Don't save a copy when we are in batch-mode, and the FCC
1653    * folder is on an IMAP server: This would involve possibly lots
1654    * of user interaction, which is not available in batch mode. 
1655    * 
1656    * Note: A patch to fix the problems with the use of IMAP servers
1657    * from non-curses mode is available from Brendan Cully.  However, 
1658    * I'd like to think a bit more about this before including it.
1659    */
1660
1661   if ((flags & SENDBATCH) && fcc[0] && mx_get_magic (fcc) == M_IMAP)
1662     fcc[0] = '\0';
1663
1664   if (*fcc && m_strcmp("/dev/null", fcc) != 0) {
1665     BODY *tmpbody = msg->content;
1666     BODY *save_sig = NULL;
1667     BODY *save_parts = NULL;
1668
1669     if (msg->security && option (OPTFCCCLEAR))
1670       msg->content = clear_content;
1671
1672     /* check to see if the user wants copies of all attachments */
1673     if (!option (OPTFCCATTACH) && msg->content->type == TYPEMULTIPART) {
1674       if ((m_strcmp(msg->content->subtype, "encrypted") == 0 ||
1675               m_strcmp(msg->content->subtype, "signed") == 0))
1676       {
1677         if (clear_content->type == TYPEMULTIPART) {
1678           if (!(msg->security & ENCRYPT) && (msg->security & SIGN)) {
1679             /* save initial signature and attachments */
1680             save_sig = msg->content->parts->next;
1681             save_parts = clear_content->parts->next;
1682           }
1683
1684           /* this means writing only the main part */
1685           msg->content = clear_content->parts;
1686
1687           if (mutt_protect (msg, pgpkeylist) == -1) {
1688             /* we can't do much about it at this point, so
1689              * fallback to saving the whole thing to fcc
1690              */
1691             msg->content = tmpbody;
1692             save_sig = NULL;
1693             goto full_fcc;
1694           }
1695
1696           save_content = msg->content;
1697         }
1698       }
1699       else
1700         msg->content = msg->content->parts;
1701     }
1702
1703   full_fcc:
1704     if (msg->content) {
1705       /* update received time so that when storing to a mbox-style folder
1706        * the From_ line contains the current time instead of when the
1707        * message was first postponed.
1708        */
1709       msg->received = time (NULL);
1710       if (mutt_write_fcc (fcc, msg, NULL, 0, NULL) == -1) {
1711         /*
1712          * Error writing FCC, we should abort sending.
1713          */
1714         fcc_error = 1;
1715       }
1716     }
1717
1718     msg->content = tmpbody;
1719
1720     if (save_sig) {
1721       /* cleanup the second signature structures */
1722       if (save_content->parts) {
1723         body_list_wipe(&save_content->parts->next);
1724         save_content->parts = NULL;
1725       }
1726       body_list_wipe(&save_content);
1727
1728       /* restore old signature and attachments */
1729       msg->content->parts->next = save_sig;
1730       msg->content->parts->parts->next = save_parts;
1731     }
1732     else if (save_content) {
1733       /* destroy the new encrypted body. */
1734       body_list_wipe(&save_content);
1735     }
1736
1737   }
1738
1739
1740   /*
1741    * Don't attempt to send the message if the FCC failed.  Just pretend
1742    * the send failed as well so we give the user a chance to fix the
1743    * error.
1744    */
1745   if (fcc_error || (i = send_message (msg)) == -1) {
1746     if (!(flags & SENDBATCH)) {
1747       if ((msg->security & ENCRYPT)
1748       ||  ((msg->security & SIGN)
1749       &&  msg->content->type == TYPEAPPLICATION)) {
1750         body_list_wipe(&msg->content); /* destroy PGP data */
1751         msg->content = clear_content;   /* restore clear text. */
1752       }
1753       else if ((msg->security & SIGN) && msg->content->type == TYPEMULTIPART) {
1754         body_list_wipe(&msg->content->parts->next);    /* destroy sig */
1755         msg->content = mutt_remove_multipart (msg->content);
1756       }
1757
1758       msg->content = mutt_remove_multipart (msg->content);
1759       decode_descriptions (msg->content);
1760       mutt_unprepare_envelope (msg->env);
1761       goto main_loop;
1762     }
1763     else {
1764       puts _("Could not send the message.");
1765
1766       goto cleanup;
1767     }
1768   }
1769   else if (!option (OPTNOCURSES))
1770     mutt_message (i != 0 ? _("Sending in background.") :
1771 #ifdef USE_NNTP
1772                   (flags & SENDNEWS) ? _("Article posted.") :
1773                   _("Mail sent.")
1774 #else
1775                   _("Mail sent.")
1776 #endif
1777     );
1778   if (msg->security & ENCRYPT)
1779     p_delete(&pgpkeylist);
1780
1781   if (free_clear_content)
1782     body_list_wipe(&clear_content);
1783
1784   if (flags & SENDREPLY) {
1785     if (cur && ctx)
1786       mutt_set_flag (ctx, cur, M_REPLIED, 1);
1787     else if (!(flags & SENDPOSTPONED) && ctx && ctx->tagged) {
1788       for (i = 0; i < ctx->vcount; i++)
1789         if (ctx->hdrs[ctx->v2r[i]]->tagged)
1790           mutt_set_flag (ctx, ctx->hdrs[ctx->v2r[i]], M_REPLIED, 1);
1791     }
1792   }
1793
1794
1795   rv = 0;
1796
1797 cleanup:
1798
1799   if (flags & SENDPOSTPONED) {
1800     if (signas) {
1801       p_delete(&PgpSignAs);
1802       PgpSignAs = signas;
1803     }
1804   }
1805
1806   m_fclose(&tempfp);
1807   header_delete(&msg);
1808
1809   return rv;
1810 }
1811
1812 /* vim: set sw=2: */