d5e6cf843ad40f66e0b4e56d700ac583a6dfe11d
[apps/madmutt.git] / main.c
1 /*
2  * Copyright notice from original mutt:
3  * Copyright (C) 1996-2002 Michael R. Elkins <me@mutt.org>
4  * Copyright (C) 1999-2002 Thomas Roessler <roessler@does-not-exist.org>
5  * Copyright (C) 2004 g10 Code GmbH
6  *
7  * Parts written/modified by:
8  * Nico Golde <nion@muttng.org>
9  * Andreas Krennmair <ak@synflood.at>
10  *
11  * This file is part of mutt-ng, see http://www.muttng.org/.
12  * It's licensed under the GNU General Public License,
13  * please see the file GPL in the top level source directory.
14  */
15
16 #define MAIN_C 1
17
18 #include <lib-lib/lib-lib.h>
19
20 #include <sys/utsname.h>
21
22 #include <lib-sys/mutt_signal.h>
23 #include <lib-mime/mime.h>
24 #include <lib-ui/curses.h>
25 #include <lib-crypt/crypt.h>
26 #include <lib-mx/mx.h>
27
28 #include "mutt.h"
29 #include "alias.h"
30 #include "buffy.h"
31 #include "sort.h"
32 #include "keymap.h"
33 #include "mutt_idna.h"
34
35 #ifdef HAVE_GETOPT_H
36 #include <getopt.h>
37 #else
38 extern char *optarg;
39 extern int optind;
40 #endif
41
42 #ifdef HAVE_LIBIDN
43 #include <stringprep.h>
44 #endif
45
46 #ifdef USE_NNTP
47 #include <nntp/nntp.h>
48 #endif
49
50 #ifdef USE_LIBESMTP
51 #include <libesmtp.h>
52 #endif
53
54 #ifdef USE_HCACHE
55 #if defined(HAVE_QDBM)
56 #include <depot.h>
57 #elif defined(HAVE_GDBM)
58 #include <gdbm.h>
59 #elif defined(HAVE_DB4)
60 #include <db.h>
61 #endif
62 #endif
63
64 #ifdef USE_GNUTLS
65 #include <gnutls/gnutls.h>
66 #endif
67
68 #ifdef CRYPT_BACKEND_GPGME
69 #include <gpgme.h>
70 #endif
71
72 #ifdef USE_SSL
73 #include <openssl/opensslv.h>
74 #endif
75
76 static const char *Notice = N_("\
77 Copyright (C) 1996-2002 Michael R. Elkins and others.\n\
78 Copyright (C) 2005 The Mutt-ng Team\n\
79 Copyright (C) 2006 Pierre Habouzit undation, Inc.\n\
80 This is free software.  You may redistribute copies of it under the terms of\n\
81 the GNU General Public License <http://www.gnu.org/licenses/gpl.html>.\n\
82 There is NO WARRANTY, to the extent permitted by law.\n");
83
84 void mutt_exit (int code)
85 {
86   mutt_endwin (NULL);
87   exit (code);
88 }
89
90 static void mutt_usage (void)
91 {
92   puts (mutt_make_version (1));
93
94   puts
95     _("usage: madmutt [ -nRyzZ ] [ -e <cmd> ] [ -F <file> ] [ -m <type> ] [ -f <file> ]\n\
96        madmutt [ -nR ] [ -e <cmd> ] [ -F <file> ] -Q <query> [ -Q <query> ] [...]\n\
97        madmutt [ -nR ] [ -e <cmd> ] [ -F <file> ] -A <alias> [ -A <alias> ] [...]\n\
98        madmutt [ -nR ] [ -e <cmd> ] [ -F <file> ] -t");
99   puts
100     _("\
101        madmutt [ -nR ] [ -e <cmd> ] [ -F <file> ] -T\n\
102        madmutt [ -nx ] [ -e <cmd> ] [ -a <file> ] [ -F <file> ] [ -H <file> ] [ -i <file> ] [ -s <subj> ] [ -b <addr> ] [ -c <addr> ] <addr> [ ... ]\n\
103        madmutt [ -n ] [ -e <cmd> ] [ -F <file> ] -p\n\
104        madmutt -v\n\
105 \n\
106 options:\n\
107   -A <alias>\texpand the given alias\n\
108   -a <file>\tattach a file to the message\n\
109   -b <address>\tspecify a blind carbon-copy (BCC) address\n\
110   -c <address>\tspecify a carbon-copy (CC) address");
111   puts _("\
112   -e <command>\tspecify a command to be executed after initialization\n\
113   -f <file>\tspecify which mailbox to read\n\
114   -F <file>\tspecify an alternate muttrngc file\n\
115   -g <server>\tspecify a newsserver (if compiled with NNTP)\n\
116   -G\t\tselect a newsgroup (if compiled with NNTP)\n\
117   -H <file>\tspecify a draft file to read header and body from\n\
118   -i <file>\tspecify a file which Madmutt should include in the body");
119   puts _("\
120   -d <level>\t specify debugging level of Madmutt\n\
121   -m <type>\tspecify a default mailbox type\n\
122   -n\t\tcauses Madmutt not to read the system Madmuttrc\n\
123   -p\t\trecall a postponed message\n\
124   -Q <variable>\tquery a configuration variable\n\
125   -R\t\topen mailbox in read-only mode\n\
126   -s <subj>\tspecify a subject (must be in quotes if it has spaces)");
127   puts _("\
128   -t\t\tprint the value of all variables to stdout\n\
129   -T\t\tprint the value of all changed variables to stdout\n\
130   -v\t\tshow version and compile-time definitions\n\
131   -y\t\tselect a mailbox specified in your `mailboxes' list\n\
132   -z\t\texit immediately if there are no messages in the mailbox\n\
133   -Z\t\topen the first folder with new message, exit immediately if none\n\
134   -h\t\tthis help message");
135
136   exit (0);
137 }
138
139 static void show_version (void)
140 {
141   struct utsname uts;
142 #ifdef USE_LIBESMTP
143   char buf[STRING];
144 #endif
145
146   puts (mutt_make_version (1));
147   puts (_(Notice));
148
149   uname (&uts);
150
151 #ifdef _AIX
152   printf ("System:\n  %s %s.%s", uts.sysname, uts.version, uts.release);
153 #elif defined (SCO)
154   printf ("System:\n  SCO %s", uts.release);
155 #else
156   printf ("System:\n  %s %s", uts.sysname, uts.release);
157 #endif
158
159   printf (" (%s)\nExternal Libraries:\n", uts.machine);
160
161 #ifdef NCURSES_VERSION
162   printf ("  ncurses %s\n", NCURSES_VERSION);
163 #elif defined(USE_SLANG_CURSES)
164   printf ("  slang %d\n", SLANG_VERSION);
165 #endif
166
167 #ifdef _LIBICONV_VERSION
168   printf ("  libiconv %d.%d\n", _LIBICONV_VERSION >> 8,
169           _LIBICONV_VERSION & 0xff);
170 #endif
171
172 #ifdef HAVE_LIBIDN
173   printf ("  libidn %s (compiled with %s)\n",
174           stringprep_check_version (NULL), STRINGPREP_VERSION);
175 #endif
176
177 #ifdef USE_LIBESMTP
178   smtp_version (buf, sizeof (buf), 0);
179   printf ("  libESMTP %s\n", buf);
180 #endif
181
182 #ifdef USE_HCACHE
183 #if defined(HAVE_QDBM)
184   printf ("  qdbm %s\n", dpversion);
185 #elif defined(HAVE_GDBM)
186   printf ("  gdbm %s\n", gdbm_version);
187 #elif defined(HAVE_DB4)
188   printf ("  DB4 %d.%d.%d\n", DB_VERSION_MAJOR, DB_VERSION_MINOR,
189           DB_VERSION_PATCH);
190 #endif
191 #endif
192
193 #ifdef USE_GNUTLS
194   printf ("  gnutls %s\n", LIBGNUTLS_VERSION);
195 #endif
196
197 #ifdef USE_SSL
198   printf ("  %s\n",OPENSSL_VERSION_TEXT);
199 #endif
200
201 #ifdef CRYPT_BACKEND_GPGME
202   printf ("  gpgme %s\n", GPGME_VERSION);
203 #endif
204
205   puts (_("Compile Options:"));
206
207   puts (
208 #ifdef HOMESPOOL
209          "  +HOMESPOOL  "
210 #else
211          "  -HOMESPOOL  "
212 #endif
213 #ifdef USE_SETGID
214          "+USE_SETGID  "
215 #else
216          "-USE_SETGID  "
217 #endif
218 #ifdef USE_FCNTL
219          "+USE_FCNTL  "
220 #else
221          "-USE_FCNTL  "
222 #endif
223 #ifdef USE_FLOCK
224          "+USE_FLOCK   "
225 #else
226          "-USE_FLOCK   "
227 #endif
228 #ifdef USE_HCACHE
229          "+USE_HCACHE  "
230 #else
231          "-USE_HCACHE  "
232 #endif
233     );
234   puts (
235 #ifdef USE_NNTP
236          "+USE_NNTP  "
237 #else
238          "-USE_NNTP  "
239 #endif
240 #ifdef USE_GSS
241          "+USE_GSS  "
242 #else
243          "-USE_GSS  "
244 #endif
245 #ifdef USE_SSL
246          "+USE_SSL  "
247 #else
248          "-USE_SSL  "
249 #endif
250 #ifdef USE_GNUTLS
251          "+USE_GNUTLS  "
252 #else
253          "-USE_GNUTLS  "
254 #endif
255 #ifdef USE_SASL
256          "+USE_SASL  "
257 #else
258          "-USE_SASL  "
259 #endif
260 #ifdef USE_LIBESMTP
261          "+USE_LIBESMTP  "
262 #else
263          "-USE_LIBESMTP  "
264 #endif
265          "\n  "
266 #ifdef HAVE_REGCOMP
267          "+HAVE_REGCOMP  "
268 #else
269          "-HAVE_REGCOMP  "
270 #endif
271          "\n  "
272 #ifdef HAVE_COLOR
273          "+HAVE_COLOR  "
274 #else
275          "-HAVE_COLOR  "
276 #endif
277 #ifdef HAVE_START_COLOR
278          "+HAVE_START_COLOR  "
279 #else
280          "-HAVE_START_COLOR  "
281 #endif
282 #ifdef HAVE_TYPEAHEAD
283          "+HAVE_TYPEAHEAD  "
284 #else
285          "-HAVE_TYPEAHEAD  "
286 #endif
287 #ifdef HAVE_BKGDSET
288          "+HAVE_BKGDSET  "
289 #else
290          "-HAVE_BKGDSET  "
291 #endif
292          "\n  "
293 #ifdef HAVE_CURS_SET
294          "+HAVE_CURS_SET  "
295 #else
296          "-HAVE_CURS_SET  "
297 #endif
298 #ifdef HAVE_META
299          "+HAVE_META  "
300 #else
301          "-HAVE_META  "
302 #endif
303 #ifdef HAVE_RESIZETERM
304          "+HAVE_RESIZETERM  "
305 #else
306          "-HAVE_RESIZETERM  "
307 #endif
308     );
309
310   puts (
311 #ifdef CRYPT_BACKEND_GPGME
312          "+CRYPT_BACKEND_GPGME  "
313 #else
314          "-CRYPT_BACKEND_GPGME  "
315 #endif
316          "\n  "
317 #ifdef ENABLE_NLS
318          "+ENABLE_NLS  "
319 #else
320          "-ENABLE_NLS  "
321 #endif
322 #ifdef HAVE_WC_FUNCS
323          "+HAVE_WC_FUNCS  "
324 #else
325          "-HAVE_WC_FUNCS  "
326 #endif
327 #ifdef HAVE_LANGINFO_CODESET
328          "+HAVE_LANGINFO_CODESET  "
329 #else
330          "-HAVE_LANGINFO_CODESET  "
331 #endif
332 #ifdef HAVE_LANGINFO_YESEXPR
333          "+HAVE_LANGINFO_YESEXPR  "
334 #else
335          "-HAVE_LANGINFO_YESEXPR  "
336 #endif
337          "\n  "
338 #ifdef HAVE_ICONV
339          "+HAVE_ICONV  "
340 #else
341          "-HAVE_ICONV  "
342 #endif
343 #ifdef HAVE_LIBIDN
344          "+HAVE_LIBIDN  "
345 #else
346          "-HAVE_LIBIDN  "
347 #endif
348 #ifdef HAVE_GETSID
349          "+HAVE_GETSID  "
350 #else
351          "-HAVE_GETSID  "
352 #endif
353 #ifdef HAVE_GETADDRINFO
354          "+HAVE_GETADDRINFO  "
355 #else
356          "-HAVE_GETADDRINFO  "
357 #endif
358     );
359
360   puts (_("Built-In Defaults:"));
361
362 #ifdef ISPELL
363   printf ("  +ISPELL=\"%s\"\n", ISPELL);
364 #else
365   puts ("  -ISPELL");
366 #endif
367
368   printf ("  +SENDMAIL=\"%s\"\n", SENDMAIL);
369   printf ("  +MAILPATH=\"%s\"\n", MAILPATH);
370   printf ("  +PKGDATADIR=\"%s\"\n", PKGDATADIR);
371   printf ("  +PKGDOCDIR=\"%s\"\n", PKGDOCDIR);
372   printf ("  +SYSCONFDIR=\"%s\"\n", SYSCONFDIR);
373 #ifdef MIXMASTER
374   printf ("  +MIXMASTER=\"%s\"\n\n", MIXMASTER);
375 #else
376   puts ("  -MIXMASTER\n");
377 #endif
378
379   puts (_("MadMutt is based on Madmutt wich was based on Mutt before\n"));
380
381   exit (0);
382 }
383
384 static void start_curses (void)
385 {
386   km_init ();                   /* must come before mutt_init */
387
388 #ifdef USE_SLANG_CURSES
389   SLtt_Ignore_Beep = 1;         /* don't do that #*$@^! annoying visual beep! */
390   SLsmg_Display_Eight_Bit = 128;        /* characters above this are printable */
391   SLtt_set_color (0, NULL, "default", "default");
392 #else
393   /* should come before initscr() so that ncurses 4.2 doesn't try to install
394      its own SIGWINCH handler */
395   mutt_signal_initialize ();
396 #endif
397   if (initscr () == NULL) {
398     puts _("Error initializing terminal.");
399
400     exit (1);
401   }
402   mutt_signal_initialize ();
403   ci_start_color ();
404   keypad (stdscr, TRUE);
405   cbreak ();
406   noecho ();
407 #ifdef HAVE_TYPEAHEAD
408   typeahead (-1);               /* simulate smooth scrolling */
409 #endif
410 #ifdef HAVE_META
411   meta (stdscr, TRUE);
412 #endif
413 }
414
415 #define M_IGNORE  (1<<0)        /* -z */
416 #define M_BUFFY   (1<<1)        /* -Z */
417 #define M_NOSYSRC (1<<2)        /* -n */
418 #define M_RO      (1<<3)        /* -R */
419 #define M_SELECT  (1<<4)        /* -y */
420 #ifdef USE_NNTP
421 #define M_NEWS    (1<<5)        /* -g and -G */
422 #endif
423
424 int main (int argc, char **argv)
425 {
426   char folder[_POSIX_PATH_MAX] = "";
427   char *subject = NULL;
428   char *includeFile = NULL;
429   char *draftFile = NULL;
430   char *newMagic = NULL;
431   HEADER *msg = NULL;
432   string_list_t *attach = NULL;
433   string_list_t *commands = NULL;
434   string_list_t *queries = NULL;
435   string_list_t *alias_queries = NULL;
436   int sendflags = 0;
437   int flags = 0;
438   int version = 0;
439   int i;
440   int explicit_folder = 0;
441   int dump_variables = -1;
442
443   /* initialize random number for tmp file creation */ 
444   srand48((unsigned int) time (NULL));
445   
446   /* sanity check against stupid administrators */
447   
448   if (getegid () != getgid ()) {
449     fprintf (stderr, "%s: I don't want to run with privileges!\n", argv[0]);
450     exit (1);
451   }
452
453 #ifdef ENABLE_NLS
454   /* FIXME what about init.c:1439 ? */
455   setlocale (LC_ALL, "");
456   bindtextdomain (PACKAGE, MUTTLOCALEDIR);
457   textdomain (PACKAGE);
458 #endif
459
460   setlocale (LC_CTYPE, "");
461
462   mutt_error = mutt_nocurses_error;
463   mutt_message = mutt_nocurses_error;
464   srand48 (time (NULL));
465   umask (077);
466
467   p_clear(Options, countof(Options));
468   p_clear(QuadOptions, countof(QuadOptions));
469
470 #ifdef USE_NNTP
471   while ((i =
472           getopt (argc, argv,
473                   "A:a:b:F:f:c:e:g:GH:s:i:hm:npQ:RTtvyzZ")) != EOF)
474 #else
475   while ((i =
476           getopt (argc, argv, "A:a:b:F:f:c:e:H:s:i:hm:npQ:RTtvyzZ")) != EOF)
477 #endif
478     switch (i) {
479     case 'A':
480       alias_queries = mutt_add_list (alias_queries, optarg);
481       break;
482     case 'a':
483       if (strlen(optarg)<=512)
484         attach = mutt_add_list (attach, optarg);
485       else{
486         printf("too long arguments. exiting ...\n");
487         exit(1);
488       }
489       break;
490
491     case 'F':
492       m_strreplace(&Muttrc, optarg);
493       break;
494
495     case 'f':
496       m_strcpy(folder, sizeof(folder), optarg);
497       explicit_folder = 1;
498       break;
499
500     case 'b':
501     case 'c':
502       if (!msg)
503         msg = header_new();
504       if (!msg->env)
505         msg->env = envelope_new();
506       if (i == 'b')
507         msg->env->bcc = rfc822_parse_adrlist (msg->env->bcc, optarg);
508       else
509         msg->env->cc = rfc822_parse_adrlist (msg->env->cc, optarg);
510       break;
511
512     case 't':
513       dump_variables = 2;
514       break;
515
516     case 'T':
517       dump_variables = 1;
518       break;
519
520     case 'e':
521       commands = mutt_add_list (commands, optarg);
522       break;
523
524     case 'H':
525       draftFile = optarg;
526       break;
527
528     case 'i':
529       includeFile = optarg;
530       break;
531
532     case 'm':
533       /* should take precedence over .muttrc setting, so save it for later */
534       newMagic = optarg;
535       break;
536
537     case 'n':
538       flags |= M_NOSYSRC;
539       break;
540
541     case 'p':
542       sendflags |= SENDPOSTPONED;
543       break;
544
545     case 'Q':
546       queries = mutt_add_list (queries, optarg);
547       break;
548
549     case 'R':
550       flags |= M_RO;            /* read-only mode */
551       break;
552
553     case 's':
554       subject = optarg;
555       break;
556
557     case 'v':
558       version++;
559       break;
560
561     case 'y':                  /* My special hack mode */
562       flags |= M_SELECT;
563       break;
564
565 #ifdef USE_NNTP
566     case 'g':                  /* Specify a newsserver */
567       {
568         char buf[LONG_STRING];
569
570         snprintf (buf, sizeof (buf), "set nntp_host=%s", optarg);
571         commands = mutt_add_list (commands, buf);
572       }
573
574     case 'G':                  /* List of newsgroups */
575       flags |= M_SELECT | M_NEWS;
576       break;
577 #endif
578
579     case 'z':
580       flags |= M_IGNORE;
581       break;
582
583     case 'Z':
584       flags |= M_BUFFY | M_IGNORE;
585       break;
586
587     default:
588       mutt_usage ();
589     }
590
591   if (version) {
592     show_version ();
593   }
594
595   /* Check for a batch send. */
596   if (!isatty (0) || queries || alias_queries || dump_variables > 0) {
597     set_option (OPTNOCURSES);
598     sendflags = SENDBATCH;
599   }
600
601   /* This must come before mutt_init() because curses needs to be started
602      before calling the init_pair() function to set the color scheme.  */
603   if (!option (OPTNOCURSES))
604     start_curses ();
605
606   /* set defaults and read init files */
607   mutt_init (flags & M_NOSYSRC, commands);
608   string_list_wipe(&commands);
609
610   /* Initialize crypto */
611   crypt_init ();
612
613   if (queries)
614     return mutt_query_variables (queries);
615   if (dump_variables > 0)
616     return (mutt_dump_variables (dump_variables-1));
617
618   if (alias_queries) {
619     int rv = 0;
620     address_t *a;
621
622     for (; alias_queries; alias_queries = alias_queries->next) {
623       if ((a = address_list_dup(alias_lookup(alias_queries->data)))) {
624         /* output in machine-readable form */
625         mutt_addrlist_to_idna (a, NULL);
626         mutt_write_address_list (a, stdout, 0, 0);
627         address_list_wipe(&a);
628       } else {
629         rv = 1;
630         printf ("%s\n", alias_queries->data);
631       }
632     }
633     return rv;
634   }
635
636   if (newMagic)
637     mx_set_magic (newMagic);
638
639   if (!option (OPTNOCURSES)) {
640     SETCOLOR (MT_COLOR_NORMAL);
641     clear ();
642     mutt_error = mutt_curses_error;
643     mutt_message = mutt_curses_message;
644   }
645
646   /* Create the Maildir directory if it doesn't exist. */
647   if (!option (OPTNOCURSES) && Maildir) {
648     struct stat sb;
649     char fpath[_POSIX_PATH_MAX];
650     char mesg[STRING];
651
652     m_strcpy(fpath, sizeof(fpath), Maildir);
653     mutt_expand_path (fpath, sizeof (fpath));
654     /* we're not connected yet - skip mail folder creation */
655     if (mx_get_magic (fpath) != M_IMAP)
656       if (stat (fpath, &sb) == -1 && errno == ENOENT) {
657         snprintf (mesg, sizeof (mesg), _("%s does not exist. Create it?"),
658                   Maildir);
659         if (mutt_yesorno (mesg, M_YES) == M_YES) {
660           if (mkdir (fpath, 0700) == -1 && errno != EEXIST)
661             mutt_error (_("Can't create %s: %s."), Maildir, strerror (errno));
662         }
663       }
664   }
665
666   if (sendflags & SENDPOSTPONED) {
667     if (!option (OPTNOCURSES))
668       mutt_flushinp ();
669     ci_send_message (SENDPOSTPONED, NULL, NULL, NULL, NULL);
670     mutt_endwin (NULL);
671   }
672   else if (subject || msg || sendflags || draftFile || includeFile || attach
673            || optind < argc) {
674     FILE *fin = NULL;
675     char buf[LONG_STRING];
676     char *tempfile = NULL, *infile = NULL;
677     char *bodytext = NULL;
678
679     if (!option (OPTNOCURSES))
680       mutt_flushinp ();
681
682     if (!msg)
683       msg = header_new();
684
685     if (draftFile)
686       infile = draftFile;
687     else {
688       if (!msg->env)
689         msg->env = envelope_new();
690
691       for (i = optind; i < argc; i++) {
692         if (url_check_scheme (argv[i]) == U_MAILTO)
693           url_parse_mailto (msg->env, &bodytext, argv[i]);
694         else
695           msg->env->to = rfc822_parse_adrlist (msg->env->to, argv[i]);
696       }
697
698       if (option (OPTAUTOEDIT) && !msg->env->to && !msg->env->cc) {
699         if (!option (OPTNOCURSES))
700           mutt_endwin (NULL);
701         fputs (_("No recipients specified.\n"), stderr);
702         exit (1);
703       }
704
705       if (subject)
706         msg->env->subject = m_strdup(subject);
707
708       if (includeFile)
709         infile = includeFile;
710     }
711
712     if (infile || bodytext) {
713       if (infile) {
714         if (m_strcmp("-", infile) == 0)
715           fin = stdin;
716         else {
717           char path[_POSIX_PATH_MAX];
718
719           m_strcpy(path, sizeof(path), infile);
720           mutt_expand_path (path, sizeof (path));
721           if ((fin = fopen (path, "r")) == NULL) {
722             if (!option (OPTNOCURSES))
723               mutt_endwin (NULL);
724             perror (path);
725             exit (1);
726           }
727         }
728       }
729       else
730         fin = NULL;
731
732       mutt_mktemp (buf);
733       tempfile = m_strdup(buf);
734
735       if (draftFile)
736         msg->env = mutt_read_rfc822_header (fin, NULL, 1, 0);
737
738       /* is the following if still needed? */
739
740       if (tempfile) {
741         FILE *fout;
742
743         if ((fout = safe_fopen (tempfile, "w")) == NULL) {
744           if (!option (OPTNOCURSES))
745             mutt_endwin (NULL);
746           perror (tempfile);
747           m_fclose(&fin);
748           p_delete(&tempfile);
749           exit (1);
750         }
751         if (fin)
752           mutt_copy_stream (fin, fout);
753         else if (bodytext)
754           fputs (bodytext, fout);
755         m_fclose(&fout);
756         if (fin && fin != stdin)
757           m_fclose(&fin);
758       }
759     }
760
761     p_delete(&bodytext);
762
763     if (attach) {
764       string_list_t *t = attach;
765       BODY *a = NULL;
766
767       while (t) {
768         if (a) {
769           a->next = mutt_make_file_attach (t->data);
770           a = a->next;
771         }
772         else
773           msg->content = a = mutt_make_file_attach (t->data);
774         if (!a) {
775           if (!option (OPTNOCURSES))
776             mutt_endwin (NULL);
777           fprintf (stderr, _("%s: unable to attach file.\n"), t->data);
778           string_list_wipe(&attach);
779           exit (1);
780         }
781         t = t->next;
782       }
783       string_list_wipe(&attach);
784     }
785
786     ci_send_message (sendflags, msg, tempfile, NULL, NULL);
787
788     if (!option (OPTNOCURSES))
789       mutt_endwin (NULL);
790   }
791   else {
792     if (flags & M_BUFFY) {
793       if (!buffy_check (0)) {
794         mutt_endwin _("No mailbox with new mail.");
795
796         exit (1);
797       }
798       folder[0] = 0;
799       buffy_next (folder, sizeof (folder));
800     }
801     else if (flags & M_SELECT) {
802 #ifdef USE_NNTP
803       if (flags & M_NEWS) {
804         set_option (OPTNEWS);
805         if (!(CurrentNewsSrv = mutt_select_newsserver (NewsServer))) {
806           mutt_endwin (Errorbuf);
807           exit (1);
808         }
809       }
810       else
811 #endif
812       if (!Incoming.len) {
813         mutt_endwin _("No incoming mailboxes defined.");
814
815         exit (1);
816       }
817       folder[0] = 0;
818       mutt_select_file (folder, sizeof (folder), M_SEL_FOLDER | M_SEL_BUFFY);
819       if (!folder[0]) {
820         mutt_endwin (NULL);
821         exit (0);
822       }
823     }
824
825     if (!folder[0])
826       m_strcpy(folder, sizeof(folder), NONULL(Spoolfile));
827
828 #ifdef USE_NNTP
829     if (option (OPTNEWS)) {
830       unset_option (OPTNEWS);
831       nntp_expand_path (folder, sizeof (folder),
832                         &CurrentNewsSrv->conn->account);
833     }
834     else
835 #endif
836       mutt_expand_path (folder, sizeof (folder));
837
838     m_strreplace(&CurrentFolder, folder);
839     m_strreplace(&LastFolder, folder);
840
841     if (flags & M_IGNORE) {
842       /* check to see if there are any messages in the folder */
843       switch (mx_check_empty (folder)) {
844       case -1:
845         mutt_endwin (strerror (errno));
846         exit (1);
847       case 1:
848         mutt_endwin _("Mailbox is empty.");
849         exit (1);
850       }
851     }
852
853     mutt_folder_hook (folder);
854
855     if ((Context = mx_open_mailbox (folder, ((flags & M_RO)
856                                              || option (OPTREADONLY)) ?
857                                     M_READONLY : 0, NULL))
858         || !explicit_folder) {
859       mutt_index_menu ();
860       if (option (OPTXTERMSETTITLES))
861         printf("\033]2;%s\007", NONULL(XtermLeave));
862       if (Context)
863         p_delete(&Context);
864     }
865     mutt_endwin (Errorbuf);
866   }
867
868   exit (0);
869 }