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