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