]> git.llucax.com Git - software/mutt-debian.git/blob - send.c
debian/control: Standards-Version moved from 3.9.2.0 to 3.9.2 for cosmetic reasons
[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     safe_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              ascii_strncasecmp ("return-path:", uh->data, 12) != 0)
314     {
315       if (last)
316       {
317         last->next = mutt_new_list ();
318         last = last->next;
319       }
320       else
321         last = env->userhdrs = mutt_new_list ();
322       last->data = safe_strdup (uh->data);
323     }
324   }
325 }
326
327 LIST *mutt_copy_list (LIST *p)
328 {
329   LIST *t, *r=NULL, *l=NULL;
330
331   for (; p; p = p->next)
332   {
333     t = (LIST *) safe_malloc (sizeof (LIST));
334     t->data = safe_strdup (p->data);
335     t->next = NULL;
336     if (l)
337     {
338       r->next = t;
339       r = r->next;
340     }
341     else
342       l = r = t;
343   }
344   return (l);
345 }
346
347 void mutt_forward_intro (FILE *fp, HEADER *cur)
348 {
349   char buffer[STRING];
350   
351   fputs ("----- Forwarded message from ", fp);
352   buffer[0] = 0;
353   rfc822_write_address (buffer, sizeof (buffer), cur->env->from, 1);
354   fputs (buffer, fp);
355   fputs (" -----\n\n", fp);
356 }
357
358 void mutt_forward_trailer (FILE *fp)
359 {
360   fputs ("\n----- End forwarded message -----\n", fp);
361 }
362
363
364 static int include_forward (CONTEXT *ctx, HEADER *cur, FILE *out)
365 {
366   int chflags = CH_DECODE, cmflags = 0;
367   
368   mutt_parse_mime_message (ctx, cur);
369   mutt_message_hook (ctx, cur, M_MESSAGEHOOK);
370
371   if (WithCrypto && (cur->security & ENCRYPT) && option (OPTFORWDECODE))
372   {
373     /* make sure we have the user's passphrase before proceeding... */
374     crypt_valid_passphrase (cur->security);
375   }
376
377   mutt_forward_intro (out, cur);
378
379   if (option (OPTFORWDECODE))
380   {
381     cmflags |= M_CM_DECODE | M_CM_CHARCONV;
382     if (option (OPTWEED))
383     {
384       chflags |= CH_WEED | CH_REORDER;
385       cmflags |= M_CM_WEED;
386     }
387   }
388   if (option (OPTFORWQUOTE))
389     cmflags |= M_CM_PREFIX;
390
391   /* wrapping headers for forwarding is considered a display
392    * rather than send action */
393   chflags |= CH_DISPLAY;
394
395   mutt_copy_message (out, ctx, cur, cmflags, chflags);
396   mutt_forward_trailer (out);
397   return 0;
398 }
399
400 void mutt_make_attribution (CONTEXT *ctx, HEADER *cur, FILE *out)
401 {
402   char buffer[STRING];
403   if (Attribution)
404   {
405     mutt_make_string (buffer, sizeof (buffer), Attribution, ctx, cur);
406     fputs (buffer, out);
407     fputc ('\n', out);
408   }
409 }
410
411 void mutt_make_post_indent (CONTEXT *ctx, HEADER *cur, FILE *out)
412 {
413   char buffer[STRING];
414   if (PostIndentString)
415   {
416     mutt_make_string (buffer, sizeof (buffer), PostIndentString, ctx, cur);
417     fputs (buffer, out);
418     fputc ('\n', out);
419   }
420 }
421
422 static int include_reply (CONTEXT *ctx, HEADER *cur, FILE *out)
423 {
424   int cmflags = M_CM_PREFIX | M_CM_DECODE | M_CM_CHARCONV | M_CM_REPLYING;
425   int chflags = CH_DECODE;
426
427   if (WithCrypto && (cur->security & ENCRYPT))
428   {
429     /* make sure we have the user's passphrase before proceeding... */
430     crypt_valid_passphrase (cur->security);
431   }
432
433   mutt_parse_mime_message (ctx, cur);
434   mutt_message_hook (ctx, cur, M_MESSAGEHOOK);
435   
436   mutt_make_attribution (ctx, cur, out);
437   
438   if (!option (OPTHEADER))
439     cmflags |= M_CM_NOHEADER;
440   if (option (OPTWEED))
441   {
442     chflags |= CH_WEED | CH_REORDER;
443     cmflags |= M_CM_WEED;
444   }
445
446   mutt_copy_message (out, ctx, cur, cmflags, chflags);
447
448   mutt_make_post_indent (ctx, cur, out);
449   
450   return 0;
451 }
452
453 static int default_to (ADDRESS **to, ENVELOPE *env, int flags, int hmfupto)
454 {
455   char prompt[STRING];
456
457   if (flags && env->mail_followup_to && hmfupto == M_YES) 
458   {
459     rfc822_append (to, env->mail_followup_to, 1);
460     return 0;
461   }
462
463   /* Exit now if we're setting up the default Cc list for list-reply
464    * (only set if Mail-Followup-To is present and honoured).
465    */
466   if (flags & SENDLISTREPLY)
467     return 0;
468
469   if (!option(OPTREPLYSELF) && mutt_addr_is_user (env->from))
470   {
471     /* mail is from the user, assume replying to recipients */
472     rfc822_append (to, env->to, 1);
473   }
474   else if (env->reply_to)
475   {
476     if ((mutt_addrcmp (env->from, env->reply_to) && !env->reply_to->next) || 
477         (option (OPTIGNORELISTREPLYTO) &&
478         mutt_is_mail_list (env->reply_to) &&
479         (mutt_addrsrc (env->reply_to, env->to) ||
480         mutt_addrsrc (env->reply_to, env->cc))))
481     {
482       /* If the Reply-To: address is a mailing list, assume that it was
483        * put there by the mailing list, and use the From: address
484        * 
485        * We also take the from header if our correspondant has a reply-to
486        * header which is identical to the electronic mail address given
487        * in his From header.
488        * 
489        */
490       rfc822_append (to, env->from, 0);
491     }
492     else if (!(mutt_addrcmp (env->from, env->reply_to) && 
493                !env->reply_to->next) &&
494              quadoption (OPT_REPLYTO) != M_YES)
495     {
496       /* There are quite a few mailing lists which set the Reply-To:
497        * header field to the list address, which makes it quite impossible
498        * to send a message to only the sender of the message.  This
499        * provides a way to do that.
500        */
501       snprintf (prompt, sizeof (prompt), _("Reply to %s%s?"),
502                 env->reply_to->mailbox, 
503                 env->reply_to->next?",...":"");
504       switch (query_quadoption (OPT_REPLYTO, prompt))
505       {
506       case M_YES:
507         rfc822_append (to, env->reply_to, 0);
508         break;
509
510       case M_NO:
511         rfc822_append (to, env->from, 0);
512         break;
513
514       default:
515         return (-1); /* abort */
516       }
517     }
518     else
519       rfc822_append (to, env->reply_to, 0);
520   }
521   else
522     rfc822_append (to, env->from, 0);
523
524   return (0);
525 }
526
527 int mutt_fetch_recips (ENVELOPE *out, ENVELOPE *in, int flags)
528 {
529   char prompt[STRING];
530   ADDRESS *tmp;
531   int hmfupto = -1;
532
533   if ((flags & (SENDLISTREPLY|SENDGROUPREPLY)) && in->mail_followup_to)
534   {
535     snprintf (prompt, sizeof (prompt), _("Follow-up to %s%s?"),
536               in->mail_followup_to->mailbox,
537               in->mail_followup_to->next ? ",..." : "");
538
539     if ((hmfupto = query_quadoption (OPT_MFUPTO, prompt)) == -1)
540       return -1;
541   }
542
543   if (flags & SENDLISTREPLY)
544   {
545     tmp = find_mailing_lists (in->to, in->cc);
546     rfc822_append (&out->to, tmp, 0);
547     rfc822_free_address (&tmp);
548
549     if (in->mail_followup_to && hmfupto == M_YES &&
550         default_to (&out->cc, in, flags & SENDLISTREPLY, hmfupto) == -1)
551       return (-1); /* abort */
552   }
553   else
554   {
555     if (default_to (&out->to, in, flags & SENDGROUPREPLY, hmfupto) == -1)
556       return (-1); /* abort */
557
558     if ((flags & SENDGROUPREPLY) && (!in->mail_followup_to || hmfupto != M_YES))
559     {
560       /* if(!mutt_addr_is_user(in->to)) */
561       rfc822_append (&out->cc, in->to, 1);
562       rfc822_append (&out->cc, in->cc, 1);
563     }
564   }
565   return 0;
566 }
567
568 LIST *mutt_make_references(ENVELOPE *e)
569 {
570   LIST *t = NULL, *l = NULL;
571
572   if (e->references)
573     l = mutt_copy_list (e->references);
574   else
575     l = mutt_copy_list (e->in_reply_to);
576   
577   if (e->message_id)
578   {
579     t = mutt_new_list();
580     t->data = safe_strdup(e->message_id);
581     t->next = l;
582     l = t;
583   }
584   
585   return l;
586 }
587
588 void mutt_fix_reply_recipients (ENVELOPE *env)
589 {
590   if (! option (OPTMETOO))
591   {
592     /* the order is important here.  do the CC: first so that if the
593      * the user is the only recipient, it ends up on the TO: field
594      */
595     env->cc = remove_user (env->cc, (env->to == NULL));
596     env->to = remove_user (env->to, (env->cc == NULL));
597   }
598   
599   /* the CC field can get cluttered, especially with lists */
600   env->to = mutt_remove_duplicates (env->to);
601   env->cc = mutt_remove_duplicates (env->cc);
602   env->cc = mutt_remove_xrefs (env->to, env->cc);
603   
604   if (env->cc && !env->to)
605   {
606     env->to = env->cc;
607     env->cc = NULL;
608   }
609 }
610
611 void mutt_make_forward_subject (ENVELOPE *env, CONTEXT *ctx, HEADER *cur)
612 {
613   char buffer[STRING];
614
615   /* set the default subject for the message. */
616   mutt_make_string (buffer, sizeof (buffer), NONULL(ForwFmt), ctx, cur);
617   mutt_str_replace (&env->subject, buffer);
618 }
619
620 void mutt_make_misc_reply_headers (ENVELOPE *env, CONTEXT *ctx,
621                                     HEADER *cur, ENVELOPE *curenv)
622 {
623   /* This takes precedence over a subject that might have
624    * been taken from a List-Post header.  Is that correct?
625    */
626   if (curenv->real_subj)
627   {
628     FREE (&env->subject);
629     env->subject = safe_malloc (mutt_strlen (curenv->real_subj) + 5);
630     sprintf (env->subject, "Re: %s", curenv->real_subj);        /* __SPRINTF_CHECKED__ */
631   }
632   else if (!env->subject)
633     env->subject = safe_strdup ("Re: your mail");
634 }
635
636 void mutt_add_to_reference_headers (ENVELOPE *env, ENVELOPE *curenv, LIST ***pp, LIST ***qq)
637 {
638   LIST **p = NULL, **q = NULL;
639
640   if (pp) p = *pp;
641   if (qq) q = *qq;
642   
643   if (!p) p = &env->references;
644   if (!q) q = &env->in_reply_to;
645   
646   while (*p) p = &(*p)->next;
647   while (*q) q = &(*q)->next;
648   
649   *p = mutt_make_references (curenv);
650   
651   if (curenv->message_id)
652   {
653     *q = mutt_new_list();
654     (*q)->data = safe_strdup (curenv->message_id);
655   }
656   
657   if (pp) *pp = p;
658   if (qq) *qq = q;
659   
660 }
661
662 static void 
663 mutt_make_reference_headers (ENVELOPE *curenv, ENVELOPE *env, CONTEXT *ctx)
664 {
665   env->references = NULL;
666   env->in_reply_to = NULL;
667   
668   if (!curenv)
669   {
670     HEADER *h;
671     LIST **p = NULL, **q = NULL;
672     int i;
673     
674     for(i = 0; i < ctx->vcount; i++)
675     {
676       h = ctx->hdrs[ctx->v2r[i]];
677       if (h->tagged)
678         mutt_add_to_reference_headers (env, h->env, &p, &q);
679     }
680   }
681   else
682     mutt_add_to_reference_headers (env, curenv, NULL, NULL);
683
684   /* if there's more than entry in In-Reply-To (i.e. message has
685      multiple parents), don't generate a References: header as it's
686      discouraged by RfC2822, sect. 3.6.4 */
687   if (ctx->tagged > 0 && env->in_reply_to && env->in_reply_to->next)
688     mutt_free_list (&env->references);
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   {
699     tag = 1;
700     for (i = 0; i < ctx->vcount; i++)
701       if (ctx->hdrs[ctx->v2r[i]]->tagged)
702       {
703         cur = ctx->hdrs[ctx->v2r[i]];
704         curenv = cur->env;
705         break;
706       }
707
708     if (!cur)
709     {
710       /* This could happen if the user tagged some messages and then did
711        * a limit such that none of the tagged message are visible.
712        */
713       mutt_error _("No tagged messages are visible!");
714       return (-1);
715     }
716   }
717   else
718     curenv = cur->env;
719
720   if (flags & SENDREPLY)
721   {
722     if (tag)
723     {
724       HEADER *h;
725
726       for (i = 0; i < ctx->vcount; i++)
727       {
728         h = ctx->hdrs[ctx->v2r[i]];
729         if (h->tagged && mutt_fetch_recips (env, h->env, flags) == -1)
730           return -1;
731       }
732     }
733     else if (mutt_fetch_recips (env, curenv, flags) == -1)
734       return -1;
735
736     if ((flags & SENDLISTREPLY) && !env->to)
737     {
738       mutt_error _("No mailing lists found!");
739       return (-1);
740     }
741
742     mutt_make_misc_reply_headers (env, ctx, cur, curenv);
743     mutt_make_reference_headers (tag ? NULL : curenv, env, ctx);
744   }
745   else if (flags & SENDFORWARD)
746     mutt_make_forward_subject (env, ctx, cur);
747
748   return (0);
749 }
750
751 static int
752 generate_body (FILE *tempfp,    /* stream for outgoing message */
753                HEADER *msg,     /* header for outgoing message */
754                int flags,       /* compose mode */
755                CONTEXT *ctx,    /* current mailbox */
756                HEADER *cur)     /* current message */
757 {
758   int i;
759   HEADER *h;
760   BODY *tmp;
761
762   if (flags & SENDREPLY)
763   {
764     if ((i = query_quadoption (OPT_INCLUDE, _("Include message in reply?"))) == -1)
765       return (-1);
766
767     if (i == M_YES)
768     {
769       mutt_message _("Including quoted message...");
770       if (!cur)
771       {
772         for (i = 0; i < ctx->vcount; i++)
773         {
774           h = ctx->hdrs[ctx->v2r[i]];
775           if (h->tagged)
776           {
777             if (include_reply (ctx, h, tempfp) == -1)
778             {
779               mutt_error _("Could not include all requested messages!");
780               return (-1);
781             }
782             fputc ('\n', tempfp);
783           }
784         }
785       }
786       else
787         include_reply (ctx, cur, tempfp);
788
789     }
790   }
791   else if (flags & SENDFORWARD)
792   {
793     if ((i = query_quadoption (OPT_MIMEFWD, _("Forward as attachment?"))) == M_YES)
794     {
795       BODY *last = msg->content;
796
797       mutt_message _("Preparing forwarded message...");
798       
799       while (last && last->next)
800         last = last->next;
801
802       if (cur)
803       {
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       {
812         for (i = 0; i < ctx->vcount; i++)
813         {
814           if (ctx->hdrs[ctx->v2r[i]]->tagged)
815           {
816             tmp = mutt_make_message_attach (ctx, ctx->hdrs[ctx->v2r[i]], 0);
817             if (last)
818             {
819               last->next = tmp;
820               last = tmp;
821             }
822             else
823               last = msg->content = tmp;
824           }
825         }
826       }
827     }
828     else if (i != -1)
829     {
830       if (cur)
831         include_forward (ctx, cur, tempfp);
832       else
833         for (i=0; i < ctx->vcount; i++)
834           if (ctx->hdrs[ctx->v2r[i]]->tagged)
835             include_forward (ctx, ctx->hdrs[ctx->v2r[i]], tempfp);
836     }
837     else if (i == -1)
838       return -1;
839   }
840   /* if (WithCrypto && (flags & SENDKEY)) */
841   else if ((WithCrypto & APPLICATION_PGP) && (flags & SENDKEY)) 
842   {
843     BODY *tmp;
844
845     if ((WithCrypto & APPLICATION_PGP)
846         && (tmp = crypt_pgp_make_key_attachment (NULL)) == NULL)
847       return -1;
848
849     tmp->next = msg->content;
850     msg->content = tmp;
851   }
852
853   mutt_clear_error ();
854
855   return (0);
856 }
857
858 void mutt_set_followup_to (ENVELOPE *e)
859 {
860   ADDRESS *t = NULL;
861   ADDRESS *from;
862
863   /* 
864    * Only generate the Mail-Followup-To if the user has requested it, and
865    * it hasn't already been set
866    */
867
868   if (option (OPTFOLLOWUPTO) && !e->mail_followup_to)
869   {
870     if (mutt_is_list_cc (0, e->to, e->cc))
871     {
872       /* 
873        * this message goes to known mailing lists, so create a proper
874        * mail-followup-to header
875        */
876
877       t = rfc822_append (&e->mail_followup_to, e->to, 0);
878       rfc822_append (&t, e->cc, 1);
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
891     if (e->mail_followup_to && !mutt_is_list_recipient (0, e->to, e->cc))
892     {
893       if (e->reply_to)
894         from = rfc822_cpy_adr (e->reply_to, 0);
895       else if (e->from)
896         from = rfc822_cpy_adr (e->from, 0);
897       else
898         from = mutt_default_from ();
899       
900       if (from)
901       {
902         /* Normally, this loop will not even be entered. */
903         for (t = from; t && t->next; t = t->next)
904           ;
905         
906         t->next = e->mail_followup_to;  /* t cannot be NULL at this point. */
907         e->mail_followup_to = from;
908       }
909     }
910     
911     e->mail_followup_to = mutt_remove_duplicates (e->mail_followup_to);
912     
913   }
914 }
915
916
917 /* look through the recipients of the message we are replying to, and if
918    we find an address that matches $alternates, we use that as the default
919    from field */
920 static ADDRESS *set_reverse_name (ENVELOPE *env)
921 {
922   ADDRESS *tmp;
923
924   for (tmp = env->to; tmp; tmp = tmp->next)
925   {
926     if (mutt_addr_is_user (tmp))
927       break;
928   }
929   if (!tmp)
930   {
931     for (tmp = env->cc; tmp; tmp = tmp->next)
932     {
933       if (mutt_addr_is_user (tmp))
934         break;
935     }
936   }
937   if (!tmp && mutt_addr_is_user (env->from))
938     tmp = env->from;
939   if (tmp)
940   {
941     tmp = rfc822_cpy_adr_real (tmp);
942     /* when $reverse_realname is not set, clear the personal name so that it
943      * may be set vi a reply- or send-hook.
944      */
945     if (!option (OPTREVREAL))
946       FREE (&tmp->personal);
947   }
948   return (tmp);
949 }
950
951 ADDRESS *mutt_default_from (void)
952 {
953   ADDRESS *adr;
954   const char *fqdn = mutt_fqdn(1);
955
956   /* 
957    * Note: We let $from override $realname here.  Is this the right
958    * thing to do? 
959    */
960
961   if (From)
962     adr = rfc822_cpy_adr_real (From);
963   else if (option (OPTUSEDOMAIN))
964   {
965     adr = rfc822_new_address ();
966     adr->mailbox = safe_malloc (mutt_strlen (Username) + mutt_strlen (fqdn) + 2);
967     sprintf (adr->mailbox, "%s@%s", NONULL(Username), NONULL(fqdn));    /* __SPRINTF_CHECKED__ */
968   }
969   else
970   {
971     adr = rfc822_new_address ();
972     adr->mailbox = safe_strdup (NONULL(Username));
973   }
974   
975   return (adr);
976 }
977
978 static int send_message (HEADER *msg)
979 {  
980   char tempfile[_POSIX_PATH_MAX];
981   FILE *tempfp;
982   int i;
983 #ifdef USE_SMTP
984   short old_write_bcc;
985 #endif
986   
987   /* Write out the message in MIME form. */
988   mutt_mktemp (tempfile, sizeof (tempfile));
989   if ((tempfp = safe_fopen (tempfile, "w")) == NULL)
990     return (-1);
991
992 #ifdef USE_SMTP
993   old_write_bcc = option (OPTWRITEBCC);
994   if (SmtpUrl)
995     unset_option (OPTWRITEBCC);
996 #endif
997 #ifdef MIXMASTER
998   mutt_write_rfc822_header (tempfp, msg->env, msg->content, 0, msg->chain ? 1 : 0);
999 #endif
1000 #ifndef MIXMASTER
1001   mutt_write_rfc822_header (tempfp, msg->env, msg->content, 0, 0);
1002 #endif
1003 #ifdef USE_SMTP
1004   if (old_write_bcc)
1005     set_option (OPTWRITEBCC);
1006 #endif
1007   
1008   fputc ('\n', tempfp); /* tie off the header. */
1009
1010   if ((mutt_write_mime_body (msg->content, tempfp) == -1))
1011   {
1012     safe_fclose (&tempfp);
1013     unlink (tempfile);
1014     return (-1);
1015   }
1016   
1017   if (fclose (tempfp) != 0)
1018   {
1019     mutt_perror (tempfile);
1020     unlink (tempfile);
1021     return (-1);
1022   }
1023
1024 #ifdef MIXMASTER
1025   if (msg->chain)
1026     return mix_send_message (msg->chain, tempfile);
1027 #endif
1028
1029 #if USE_SMTP
1030   if (SmtpUrl)
1031       return mutt_smtp_send (msg->env->from, msg->env->to, msg->env->cc,
1032                              msg->env->bcc, tempfile,
1033                              (msg->content->encoding == ENC8BIT));
1034 #endif /* USE_SMTP */
1035
1036   i = mutt_invoke_sendmail (msg->env->from, msg->env->to, msg->env->cc, 
1037                             msg->env->bcc, tempfile,
1038                             (msg->content->encoding == ENC8BIT));
1039   return (i);
1040 }
1041
1042 /* rfc2047 encode the content-descriptions */
1043 static void encode_descriptions (BODY *b, short recurse)
1044 {
1045   BODY *t;
1046
1047   for (t = b; t; t = t->next)
1048   {
1049     if (t->description)
1050     {
1051       rfc2047_encode_string (&t->description);
1052     }
1053     if (recurse && t->parts)
1054       encode_descriptions (t->parts, recurse);
1055   }
1056 }
1057
1058 /* rfc2047 decode them in case of an error */
1059 static void decode_descriptions (BODY *b)
1060 {
1061   BODY *t;
1062   
1063   for (t = b; t; t = t->next)
1064   {
1065     if (t->description)
1066     {
1067       rfc2047_decode (&t->description);
1068     }
1069     if (t->parts)
1070       decode_descriptions (t->parts);
1071   }
1072 }
1073
1074 static void fix_end_of_file (const char *data)
1075 {
1076   FILE *fp;
1077   int c;
1078   
1079   if ((fp = safe_fopen (data, "a+")) == NULL)
1080     return;
1081   fseek (fp,-1,SEEK_END);
1082   if ((c = fgetc(fp)) != '\n')
1083     fputc ('\n', fp);
1084   safe_fclose (&fp);
1085 }
1086
1087 int mutt_resend_message (FILE *fp, CONTEXT *ctx, HEADER *cur)
1088 {
1089   HEADER *msg = mutt_new_header ();
1090   
1091   if (mutt_prepare_template (fp, ctx, msg, cur, 1) < 0)
1092     return -1;
1093   
1094   return ci_send_message (SENDRESEND, msg, NULL, ctx, cur);
1095 }
1096
1097 static int is_reply (HEADER *reply, HEADER *orig)
1098 {
1099   return mutt_find_list (orig->env->references, reply->env->message_id) ||
1100          mutt_find_list (orig->env->in_reply_to, reply->env->message_id);
1101 }
1102
1103 static int has_recips (ADDRESS *a)
1104 {
1105   int c = 0;
1106
1107   for ( ; a; a = a->next)
1108   {
1109     if (!a->mailbox || a->group)
1110       continue;
1111     c++;
1112   }
1113   return c;
1114 }
1115
1116 int
1117 ci_send_message (int flags,             /* send mode */
1118                  HEADER *msg,           /* template to use for new message */
1119                  char *tempfile,        /* file specified by -i or -H */
1120                  CONTEXT *ctx,          /* current mailbox */
1121                  HEADER *cur)           /* current message */
1122 {
1123   char buffer[LONG_STRING];
1124   char fcc[_POSIX_PATH_MAX] = ""; /* where to copy this message */
1125   FILE *tempfp = NULL;
1126   BODY *pbody;
1127   int i, killfrom = 0;
1128   int fcc_error = 0;
1129   int free_clear_content = 0;
1130
1131   BODY *save_content = NULL;
1132   BODY *clear_content = NULL;
1133   char *pgpkeylist = NULL;
1134   /* save current value of "pgp_sign_as" */
1135   char *signas = NULL;
1136   char *tag = NULL, *err = NULL;
1137   char *ctype;
1138
1139   int rv = -1;
1140   
1141   if (!flags && !msg && quadoption (OPT_RECALL) != M_NO &&
1142       mutt_num_postponed (1))
1143   {
1144     /* If the user is composing a new message, check to see if there
1145      * are any postponed messages first.
1146      */
1147     if ((i = query_quadoption (OPT_RECALL, _("Recall postponed message?"))) == -1)
1148       return rv;
1149
1150     if(i == M_YES)
1151       flags |= SENDPOSTPONED;
1152   }
1153   
1154   
1155   if ((WithCrypto & APPLICATION_PGP) && (flags & SENDPOSTPONED))
1156     signas = safe_strdup(PgpSignAs);
1157
1158   /* Delay expansion of aliases until absolutely necessary--shouldn't
1159    * be necessary unless we are prompting the user or about to execute a
1160    * send-hook.
1161    */
1162
1163   if (!msg)
1164   {
1165     msg = mutt_new_header ();
1166
1167     if (flags == SENDPOSTPONED)
1168     {
1169       if ((flags = mutt_get_postponed (ctx, msg, &cur, fcc, sizeof (fcc))) < 0)
1170         goto cleanup;
1171     }
1172
1173     if (flags & (SENDPOSTPONED|SENDRESEND))
1174     {
1175       if ((tempfp = safe_fopen (msg->content->filename, "a+")) == NULL)
1176       {
1177         mutt_perror (msg->content->filename);
1178         goto cleanup;
1179       }
1180     }
1181
1182     if (!msg->env)
1183       msg->env = mutt_new_envelope ();
1184   }
1185
1186   /* Parse and use an eventual list-post header */
1187   if ((flags & SENDLISTREPLY) 
1188       && cur && cur->env && cur->env->list_post) 
1189   {
1190     /* Use any list-post header as a template */
1191     url_parse_mailto (msg->env, NULL, cur->env->list_post);
1192     /* We don't let them set the sender's address. */
1193     rfc822_free_address (&msg->env->from);
1194   }
1195   
1196   if (! (flags & (SENDKEY | SENDPOSTPONED | SENDRESEND)))
1197   {
1198     pbody = mutt_new_body ();
1199     pbody->next = msg->content; /* don't kill command-line attachments */
1200     msg->content = pbody;
1201
1202     if (!(ctype = safe_strdup (ContentType)))
1203       ctype = safe_strdup ("text/plain");
1204     mutt_parse_content_type (ctype, msg->content);
1205     FREE (&ctype);
1206     msg->content->unlink = 1;
1207     msg->content->use_disp = 0;
1208     msg->content->disposition = DISPINLINE;
1209     if (option (OPTTEXTFLOWED) && msg->content->type == TYPETEXT && !ascii_strcasecmp (msg->content->subtype, "plain"))
1210       mutt_set_parameter ("format", "flowed", &msg->content->parameter);
1211     
1212     if (!tempfile)
1213     {
1214       mutt_mktemp (buffer, sizeof (buffer));
1215       tempfp = safe_fopen (buffer, "w+");
1216       msg->content->filename = safe_strdup (buffer);
1217     }
1218     else
1219     {
1220       tempfp = safe_fopen (tempfile, "a+");
1221       msg->content->filename = safe_strdup (tempfile);
1222     }
1223
1224     if (!tempfp)
1225     {
1226       dprint(1,(debugfile, "newsend_message: can't create tempfile %s (errno=%d)\n", msg->content->filename, errno));
1227       mutt_perror (msg->content->filename);
1228       goto cleanup;
1229     }
1230   }
1231
1232   /* this is handled here so that the user can match ~f in send-hook */
1233   if (cur && option (OPTREVNAME) && !(flags & (SENDPOSTPONED|SENDRESEND)))
1234   {
1235     /* we shouldn't have to worry about freeing `msg->env->from' before
1236      * setting it here since this code will only execute when doing some
1237      * sort of reply.  the pointer will only be set when using the -H command
1238      * line option.
1239      *
1240      * We shouldn't have to worry about alias expansion here since we are
1241      * either replying to a real or postponed message, therefore no aliases
1242      * should exist since the user has not had the opportunity to add
1243      * addresses to the list.  We just have to ensure the postponed messages
1244      * have their aliases expanded.
1245      */
1246
1247     msg->env->from = set_reverse_name (cur->env);
1248   }
1249
1250   if (! (flags & (SENDPOSTPONED|SENDRESEND)))
1251   {
1252     if ((flags & (SENDREPLY | SENDFORWARD)) && ctx &&
1253         envelope_defaults (msg->env, ctx, cur, flags) == -1)
1254       goto cleanup;
1255
1256     if (option (OPTHDRS))
1257       process_user_recips (msg->env);
1258
1259     /* Expand aliases and remove duplicates/crossrefs */
1260     mutt_expand_aliases_env (msg->env);
1261     
1262     if (flags & SENDREPLY)
1263       mutt_fix_reply_recipients (msg->env);
1264
1265     if (! (flags & (SENDMAILX|SENDBATCH)) &&
1266         ! (option (OPTAUTOEDIT) && option (OPTEDITHDRS)) &&
1267         ! ((flags & SENDREPLY) && option (OPTFASTREPLY)))
1268     {
1269       if (edit_envelope (msg->env) == -1)
1270         goto cleanup;
1271     }
1272
1273     /* the from address must be set here regardless of whether or not
1274      * $use_from is set so that the `~P' (from you) operator in send-hook
1275      * patterns will work.  if $use_from is unset, the from address is killed
1276      * after send-hooks are evaulated */
1277
1278     if (!msg->env->from)
1279     {
1280       msg->env->from = mutt_default_from ();
1281       killfrom = 1;
1282     }
1283
1284     if ((flags & SENDREPLY) && cur)
1285     {
1286       /* change setting based upon message we are replying to */
1287       mutt_message_hook (ctx, cur, M_REPLYHOOK);
1288
1289       /*
1290        * set the replied flag for the message we are generating so that the
1291        * user can use ~Q in a send-hook to know when reply-hook's are also
1292        * being used.
1293        */
1294       msg->replied = 1;
1295     }
1296
1297     /* change settings based upon recipients */
1298     
1299     mutt_message_hook (NULL, msg, M_SENDHOOK);
1300
1301     /*
1302      * Unset the replied flag from the message we are composing since it is
1303      * no longer required.  This is done here because the FCC'd copy of
1304      * this message was erroneously get the 'R'eplied flag when stored in
1305      * a maildir-style mailbox.
1306      */
1307     msg->replied = 0;
1308
1309     /* $use_from and/or $from might have changed in a send-hook */
1310     if (killfrom)
1311     {
1312       rfc822_free_address (&msg->env->from);
1313       if (option (OPTUSEFROM) && !(flags & (SENDPOSTPONED|SENDRESEND)))
1314         msg->env->from = mutt_default_from ();
1315       killfrom = 0;
1316     }
1317
1318     if (option (OPTHDRS))
1319       process_user_header (msg->env);
1320
1321     if (flags & SENDBATCH)
1322        mutt_copy_stream (stdin, tempfp);
1323
1324     if (option (OPTSIGONTOP) && ! (flags & (SENDMAILX|SENDKEY|SENDBATCH))
1325         && Editor && mutt_strcmp (Editor, "builtin") != 0)
1326       append_signature (tempfp);
1327
1328     /* include replies/forwarded messages, unless we are given a template */
1329     if (!tempfile && (ctx || !(flags & (SENDREPLY|SENDFORWARD)))
1330         && generate_body (tempfp, msg, flags, ctx, cur) == -1)
1331       goto cleanup;
1332
1333     if (!option (OPTSIGONTOP) && ! (flags & (SENDMAILX|SENDKEY|SENDBATCH))
1334         && Editor && mutt_strcmp (Editor, "builtin") != 0)
1335       append_signature (tempfp);
1336   }
1337   
1338   /* 
1339    * This hook is even called for postponed messages, and can, e.g., be
1340    * used for setting the editor, the sendmail path, or the
1341    * envelope sender.
1342    */
1343   mutt_message_hook (NULL, msg, M_SEND2HOOK);
1344   
1345   /* wait until now to set the real name portion of our return address so
1346      that $realname can be set in a send-hook */
1347   if (msg->env->from && !msg->env->from->personal
1348       && !(flags & (SENDRESEND|SENDPOSTPONED)))
1349     msg->env->from->personal = safe_strdup (Realname);
1350
1351   if (!((WithCrypto & APPLICATION_PGP) && (flags & SENDKEY)))
1352     safe_fclose (&tempfp);
1353
1354   if (flags & SENDMAILX)
1355   {
1356     if (mutt_builtin_editor (msg->content->filename, msg, cur) == -1)
1357       goto cleanup;
1358   }
1359   else if (! (flags & SENDBATCH))
1360   {
1361     struct stat st;
1362     time_t mtime = mutt_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 controlled 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, _("Edit forwarded message?")) == M_YES))
1380     {
1381       /* If the this isn't a text message, look for a mailcap edit command */
1382       if (mutt_needs_mailcap (msg->content))
1383       {
1384         if (!mutt_edit_attachment (msg->content))
1385           goto cleanup;
1386       }
1387       else if (!Editor || mutt_strcmp ("builtin", Editor) == 0)
1388         mutt_builtin_editor (msg->content->filename, msg, cur);
1389       else if (option (OPTEDITHDRS))
1390       {
1391         mutt_env_to_local (msg->env);
1392         mutt_edit_headers (Editor, msg->content->filename, msg, fcc, sizeof (fcc));
1393         mutt_env_to_idna (msg->env, NULL, NULL);
1394       }
1395       else
1396       {
1397         mutt_edit_file (Editor, msg->content->filename);
1398         if (stat (msg->content->filename, &st) == 0)
1399         {
1400           if (mtime != st.st_mtime)
1401             fix_end_of_file (msg->content->filename);
1402         }
1403         else
1404           mutt_perror (msg->content->filename);
1405       }
1406       
1407       if (option (OPTTEXTFLOWED))
1408         rfc3676_space_stuff (msg);
1409
1410       mutt_message_hook (NULL, msg, M_SEND2HOOK);
1411     }
1412
1413     if (! (flags & (SENDPOSTPONED | SENDFORWARD | SENDKEY | SENDRESEND)))
1414     {
1415       if (stat (msg->content->filename, &st) == 0)
1416       {
1417         /* if the file was not modified, bail out now */
1418         if (mtime == st.st_mtime && !msg->content->next &&
1419             query_quadoption (OPT_ABORT, _("Abort unmodified message?")) == M_YES)
1420         {
1421           mutt_message _("Aborted unmodified message.");
1422           goto cleanup;
1423         }
1424       }
1425       else
1426         mutt_perror (msg->content->filename);
1427     }
1428   }
1429
1430   /* 
1431    * Set the message security unless:
1432    * 1) crypto support is not enabled (WithCrypto==0)
1433    * 2) pgp: header field was present during message editing with $edit_headers (msg->security != 0)
1434    * 3) we are resending a message
1435    * 4) we are recalling a postponed message (don't override the user's saved settings)
1436    * 5) we are in mailx mode
1437    * 6) we are in batch mode
1438    *
1439    * This is done after allowing the user to edit the message so that security
1440    * settings can be configured with send2-hook and $edit_headers.
1441    */
1442   if (WithCrypto && (msg->security == 0) && !(flags & (SENDBATCH | SENDMAILX | SENDPOSTPONED | SENDRESEND)))
1443   {
1444     if (option (OPTCRYPTAUTOSIGN))
1445       msg->security |= SIGN;
1446     if (option (OPTCRYPTAUTOENCRYPT))
1447       msg->security |= ENCRYPT;
1448     if (option (OPTCRYPTREPLYENCRYPT) && cur && (cur->security & ENCRYPT))
1449       msg->security |= ENCRYPT;
1450     if (option (OPTCRYPTREPLYSIGN) && cur && (cur->security & SIGN))
1451       msg->security |= SIGN;
1452     if (option (OPTCRYPTREPLYSIGNENCRYPTED) && cur && (cur->security & ENCRYPT))
1453       msg->security |= SIGN;
1454     if (WithCrypto & APPLICATION_PGP && (msg->security & (ENCRYPT | SIGN)))
1455     {
1456       if (option (OPTPGPAUTOINLINE))
1457         msg->security |= INLINE;
1458       if (option (OPTPGPREPLYINLINE) && cur && (cur->security & INLINE))
1459         msg->security |= INLINE;
1460     }
1461
1462     if (msg->security)
1463     {
1464       /* 
1465        * When replying / forwarding, use the original message's
1466        * crypto system.  According to the documentation,
1467        * smime_is_default should be disregarded here.
1468        * 
1469        * Problem: At least with forwarding, this doesn't really
1470        * make much sense. Should we have an option to completely
1471        * disable individual mechanisms at run-time?
1472        */
1473       if (cur)
1474       {
1475         if ((WithCrypto & APPLICATION_PGP) && option (OPTCRYPTAUTOPGP) 
1476             && (cur->security & APPLICATION_PGP))
1477           msg->security |= APPLICATION_PGP;
1478         else if ((WithCrypto & APPLICATION_SMIME) && option (OPTCRYPTAUTOSMIME)
1479             && (cur->security & APPLICATION_SMIME))
1480           msg->security |= APPLICATION_SMIME;
1481       }
1482
1483       /*
1484        * No crypto mechanism selected? Use availability + smime_is_default
1485        * for the decision. 
1486        */
1487       if (!(msg->security & (APPLICATION_SMIME | APPLICATION_PGP)))
1488       {
1489         if ((WithCrypto & APPLICATION_SMIME) && option (OPTCRYPTAUTOSMIME) 
1490             && option (OPTSMIMEISDEFAULT))
1491           msg->security |= APPLICATION_SMIME;
1492         else if ((WithCrypto & APPLICATION_PGP) && option (OPTCRYPTAUTOPGP))
1493           msg->security |= APPLICATION_PGP;
1494         else if ((WithCrypto & APPLICATION_SMIME) && option (OPTCRYPTAUTOSMIME))
1495           msg->security |= APPLICATION_SMIME;
1496       }
1497     }
1498
1499     /* No permissible mechanisms found.  Don't sign or encrypt. */
1500     if (!(msg->security & (APPLICATION_SMIME|APPLICATION_PGP)))
1501       msg->security = 0;
1502   }
1503
1504   /* specify a default fcc.  if we are in batchmode, only save a copy of
1505    * the message if the value of $copy is yes or ask-yes */
1506
1507   if (!fcc[0] && !(flags & (SENDPOSTPONED)) && (!(flags & SENDBATCH) || (quadoption (OPT_COPY) & 0x1)))
1508   {
1509     /* set the default FCC */
1510     if (!msg->env->from)
1511     {
1512       msg->env->from = mutt_default_from ();
1513       killfrom = 1; /* no need to check $use_from because if the user specified
1514                        a from address it would have already been set by now */
1515     }
1516     mutt_select_fcc (fcc, sizeof (fcc), msg);
1517     if (killfrom)
1518     {
1519       rfc822_free_address (&msg->env->from);
1520       killfrom = 0;
1521     }
1522   }
1523
1524   
1525   mutt_update_encoding (msg->content);
1526
1527   if (! (flags & (SENDMAILX | SENDBATCH)))
1528   {
1529 main_loop:
1530
1531     fcc_error = 0; /* reset value since we may have failed before */
1532     mutt_pretty_mailbox (fcc, sizeof (fcc));
1533     i = mutt_compose_menu (msg, fcc, sizeof (fcc), cur);
1534     if (i == -1)
1535     {
1536       /* abort */
1537       mutt_message _("Mail not sent.");
1538       goto cleanup;
1539     }
1540     else if (i == 1)
1541     {
1542       /* postpone the message until later. */
1543       if (msg->content->next)
1544         msg->content = mutt_make_multipart (msg->content);
1545
1546       /*
1547        * make sure the message is written to the right part of a maildir 
1548        * postponed folder.
1549        */
1550       msg->read = 0; msg->old = 0;
1551
1552       encode_descriptions (msg->content, 1);
1553       mutt_prepare_envelope (msg->env, 0);
1554       mutt_env_to_idna (msg->env, NULL, NULL);  /* Handle bad IDNAs the next time. */
1555
1556       if (!Postponed || mutt_write_fcc (NONULL (Postponed), msg, (cur && (flags & SENDREPLY)) ? cur->env->message_id : NULL, 1, fcc) < 0)
1557       {
1558         msg->content = mutt_remove_multipart (msg->content);
1559         decode_descriptions (msg->content);
1560         mutt_unprepare_envelope (msg->env);
1561         goto main_loop;
1562       }
1563       mutt_update_num_postponed ();
1564       mutt_message _("Message postponed.");
1565       goto cleanup;
1566     }
1567   }
1568
1569   if (!has_recips (msg->env->to) && !has_recips (msg->env->cc) &&
1570       !has_recips (msg->env->bcc))
1571   {
1572     if (! (flags & SENDBATCH))
1573     {
1574       mutt_error _("No recipients are specified!");
1575       goto main_loop;
1576     }
1577     else
1578     {
1579       puts _("No recipients were specified.");
1580       goto cleanup;
1581     }
1582   }
1583
1584   if (mutt_env_to_idna (msg->env, &tag, &err))
1585   {
1586     mutt_error (_("Bad IDN in \"%s\": '%s'"), tag, err);
1587     FREE (&err);
1588     if (!(flags & SENDBATCH))
1589       goto main_loop;
1590     else 
1591       goto cleanup;
1592   }
1593   
1594   if (!msg->env->subject && ! (flags & SENDBATCH) &&
1595       (i = query_quadoption (OPT_SUBJECT, _("No subject, abort sending?"))) != M_NO)
1596   {
1597     /* if the abort is automatic, print an error message */
1598     if (quadoption (OPT_SUBJECT) == M_YES)
1599       mutt_error _("No subject specified.");
1600     goto main_loop;
1601   }
1602
1603   if (msg->content->next)
1604     msg->content = mutt_make_multipart (msg->content);
1605
1606   /* 
1607    * Ok, we need to do it this way instead of handling all fcc stuff in
1608    * one place in order to avoid going to main_loop with encoded "env"
1609    * in case of error.  Ugh.
1610    */
1611
1612   encode_descriptions (msg->content, 1);
1613   
1614   /*
1615    * Make sure that clear_content and free_clear_content are
1616    * properly initialized -- we may visit this particular place in
1617    * the code multiple times, including after a failed call to
1618    * mutt_protect().
1619    */
1620   
1621   clear_content = NULL;
1622   free_clear_content = 0;
1623   
1624   if (WithCrypto)
1625   {
1626     if (msg->security)  
1627     {
1628       /* save the decrypted attachments */
1629       clear_content = msg->content;
1630   
1631       if ((crypt_get_keys (msg, &pgpkeylist) == -1) ||
1632           mutt_protect (msg, pgpkeylist) == -1)
1633       {
1634         msg->content = mutt_remove_multipart (msg->content);
1635         
1636         FREE (&pgpkeylist);
1637         
1638         decode_descriptions (msg->content);
1639         goto main_loop;
1640       }
1641       encode_descriptions (msg->content, 0);
1642     }
1643   
1644     /* 
1645      * at this point, msg->content is one of the following three things:
1646      * - multipart/signed.  In this case, clear_content is a child.
1647      * - multipart/encrypted.  In this case, clear_content exists
1648      *   independently
1649      * - application/pgp.  In this case, clear_content exists independently.
1650      * - something else.  In this case, it's the same as clear_content.
1651      */
1652   
1653     /* This is ugly -- lack of "reporting back" from mutt_protect(). */
1654     
1655     if (clear_content && (msg->content != clear_content)
1656         && (msg->content->parts != clear_content))
1657       free_clear_content = 1;
1658   }
1659
1660   if (!option (OPTNOCURSES) && !(flags & SENDMAILX))
1661     mutt_message _("Sending message...");
1662
1663   mutt_prepare_envelope (msg->env, 1);
1664
1665   /* save a copy of the message, if necessary. */
1666
1667   mutt_expand_path (fcc, sizeof (fcc));
1668
1669   
1670   /* Don't save a copy when we are in batch-mode, and the FCC
1671    * folder is on an IMAP server: This would involve possibly lots
1672    * of user interaction, which is not available in batch mode. 
1673    * 
1674    * Note: A patch to fix the problems with the use of IMAP servers
1675    * from non-curses mode is available from Brendan Cully.  However, 
1676    * I'd like to think a bit more about this before including it.
1677    */
1678
1679 #ifdef USE_IMAP
1680   if ((flags & SENDBATCH) && fcc[0] && mx_is_imap (fcc))
1681     fcc[0] = '\0';
1682 #endif
1683
1684   if (*fcc && mutt_strcmp ("/dev/null", fcc) != 0)
1685   {
1686     BODY *tmpbody = msg->content;
1687     BODY *save_sig = NULL;
1688     BODY *save_parts = NULL;
1689
1690     if (WithCrypto && msg->security && option (OPTFCCCLEAR))
1691       msg->content = clear_content;
1692
1693     /* check to see if the user wants copies of all attachments */
1694     if (query_quadoption (OPT_FCCATTACH, _("Save attachments in Fcc?")) != M_YES &&
1695         msg->content->type == TYPEMULTIPART)
1696     {
1697       if (WithCrypto
1698           && (mutt_strcmp (msg->content->subtype, "encrypted") == 0 ||
1699               mutt_strcmp (msg->content->subtype, "signed") == 0))
1700       {
1701         if (clear_content->type == TYPEMULTIPART)
1702         {
1703           if(!(msg->security & ENCRYPT) && (msg->security & SIGN))
1704           {
1705             /* save initial signature and attachments */
1706             save_sig = msg->content->parts->next;
1707             save_parts = clear_content->parts->next;
1708           }
1709
1710           /* this means writing only the main part */
1711           msg->content = clear_content->parts;
1712
1713           if (mutt_protect (msg, pgpkeylist) == -1)
1714           {
1715             /* we can't do much about it at this point, so
1716              * fallback to saving the whole thing to fcc
1717              */
1718             msg->content = tmpbody;
1719             save_sig = NULL;
1720             goto full_fcc;
1721           }
1722
1723           save_content = msg->content;
1724         }
1725       }
1726       else
1727         msg->content = msg->content->parts;
1728     }
1729
1730 full_fcc:
1731     if (msg->content)
1732     {
1733       /* update received time so that when storing to a mbox-style folder
1734        * the From_ line contains the current time instead of when the
1735        * message was first postponed.
1736        */
1737       msg->received = time (NULL);
1738       if (mutt_write_fcc (fcc, msg, NULL, 0, NULL) == -1)
1739       {
1740         /*
1741          * Error writing FCC, we should abort sending.
1742          */
1743         fcc_error = 1;
1744       }
1745     }
1746
1747     msg->content = tmpbody;
1748
1749     if (WithCrypto && save_sig)
1750     {
1751       /* cleanup the second signature structures */
1752       if (save_content->parts)
1753       {
1754         mutt_free_body (&save_content->parts->next);
1755         save_content->parts = NULL;
1756       }
1757       mutt_free_body (&save_content);
1758
1759       /* restore old signature and attachments */
1760       msg->content->parts->next = save_sig;
1761       msg->content->parts->parts->next = save_parts;
1762     }
1763     else if (WithCrypto && save_content)
1764     {
1765       /* destroy the new encrypted body. */
1766       mutt_free_body (&save_content);
1767     }
1768
1769   }
1770
1771
1772   /*
1773    * Don't attempt to send the message if the FCC failed.  Just pretend
1774    * the send failed as well so we give the user a chance to fix the
1775    * error.
1776    */
1777   if (fcc_error || (i = send_message (msg)) < 0)
1778   {
1779     if (!(flags & SENDBATCH))
1780     {
1781       if (!WithCrypto)
1782         ;
1783       else if ((msg->security & ENCRYPT) || 
1784                ((msg->security & SIGN)
1785                 && msg->content->type == TYPEAPPLICATION))
1786       {
1787         mutt_free_body (&msg->content); /* destroy PGP data */
1788         msg->content = clear_content;   /* restore clear text. */
1789       }
1790       else if ((msg->security & SIGN) && msg->content->type == TYPEMULTIPART)
1791       {
1792         mutt_free_body (&msg->content->parts->next);         /* destroy sig */
1793         msg->content = mutt_remove_multipart (msg->content); 
1794       }
1795
1796       msg->content = mutt_remove_multipart (msg->content);
1797       decode_descriptions (msg->content);
1798       mutt_unprepare_envelope (msg->env);
1799       goto main_loop;
1800     }
1801     else
1802     {
1803       puts _("Could not send the message.");
1804       goto cleanup;
1805     }
1806   }
1807   else if (!option (OPTNOCURSES) && ! (flags & SENDMAILX))
1808     mutt_message (i == 0 ? _("Mail sent.") : _("Sending in background."));
1809
1810   if (WithCrypto && (msg->security & ENCRYPT))
1811     FREE (&pgpkeylist);
1812   
1813   if (WithCrypto && free_clear_content)
1814     mutt_free_body (&clear_content);
1815
1816   /* set 'replied' flag only if the user didn't change/remove
1817      In-Reply-To: and References: headers during edit */
1818   if (flags & SENDREPLY)
1819   {
1820     if (cur && ctx)
1821       mutt_set_flag (ctx, cur, M_REPLIED, is_reply (cur, msg));
1822     else if (!(flags & SENDPOSTPONED) && ctx && ctx->tagged)
1823     {
1824       for (i = 0; i < ctx->vcount; i++)
1825         if (ctx->hdrs[ctx->v2r[i]]->tagged)
1826           mutt_set_flag (ctx, ctx->hdrs[ctx->v2r[i]], M_REPLIED,
1827                          is_reply (ctx->hdrs[ctx->v2r[i]], msg));
1828     }
1829   }
1830
1831
1832   rv = 0;
1833   
1834 cleanup:
1835
1836   if ((WithCrypto & APPLICATION_PGP) && (flags & SENDPOSTPONED))
1837   {
1838     if(signas)
1839     {
1840       FREE (&PgpSignAs);
1841       PgpSignAs = signas;
1842     }
1843   }
1844    
1845   safe_fclose (&tempfp);
1846   mutt_free_header (&msg);
1847   
1848   return rv;
1849 }
1850
1851 /* vim: set sw=2: */