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