implement $-vars substitution.
[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_START_COLOR
273          "+HAVE_START_COLOR  "
274 #else
275          "-HAVE_START_COLOR  "
276 #endif
277 #ifdef HAVE_TYPEAHEAD
278          "+HAVE_TYPEAHEAD  "
279 #else
280          "-HAVE_TYPEAHEAD  "
281 #endif
282 #ifdef HAVE_BKGDSET
283          "+HAVE_BKGDSET  "
284 #else
285          "-HAVE_BKGDSET  "
286 #endif
287          "\n  "
288 #ifdef HAVE_CURS_SET
289          "+HAVE_CURS_SET  "
290 #else
291          "-HAVE_CURS_SET  "
292 #endif
293 #ifdef HAVE_META
294          "+HAVE_META  "
295 #else
296          "-HAVE_META  "
297 #endif
298 #ifdef HAVE_RESIZETERM
299          "+HAVE_RESIZETERM  "
300 #else
301          "-HAVE_RESIZETERM  "
302 #endif
303     );
304
305   puts (
306 #ifdef CRYPT_BACKEND_GPGME
307          "+CRYPT_BACKEND_GPGME  "
308 #else
309          "-CRYPT_BACKEND_GPGME  "
310 #endif
311          "\n  "
312 #ifdef ENABLE_NLS
313          "+ENABLE_NLS  "
314 #else
315          "-ENABLE_NLS  "
316 #endif
317 #ifdef HAVE_WC_FUNCS
318          "+HAVE_WC_FUNCS  "
319 #else
320          "-HAVE_WC_FUNCS  "
321 #endif
322 #ifdef HAVE_LANGINFO_CODESET
323          "+HAVE_LANGINFO_CODESET  "
324 #else
325          "-HAVE_LANGINFO_CODESET  "
326 #endif
327 #ifdef HAVE_LANGINFO_YESEXPR
328          "+HAVE_LANGINFO_YESEXPR  "
329 #else
330          "-HAVE_LANGINFO_YESEXPR  "
331 #endif
332          "\n  "
333 #ifdef HAVE_ICONV
334          "+HAVE_ICONV  "
335 #else
336          "-HAVE_ICONV  "
337 #endif
338 #ifdef HAVE_LIBIDN
339          "+HAVE_LIBIDN  "
340 #else
341          "-HAVE_LIBIDN  "
342 #endif
343 #ifdef HAVE_GETSID
344          "+HAVE_GETSID  "
345 #else
346          "-HAVE_GETSID  "
347 #endif
348 #ifdef HAVE_GETADDRINFO
349          "+HAVE_GETADDRINFO  "
350 #else
351          "-HAVE_GETADDRINFO  "
352 #endif
353     );
354
355   puts (_("Built-In Defaults:"));
356
357 #ifdef ISPELL
358   printf ("  +ISPELL=\"%s\"\n", ISPELL);
359 #else
360   puts ("  -ISPELL");
361 #endif
362
363   printf ("  +SENDMAIL=\"%s\"\n", SENDMAIL);
364   printf ("  +MAILPATH=\"%s\"\n", MAILPATH);
365   printf ("  +PKGDATADIR=\"%s\"\n", PKGDATADIR);
366   printf ("  +PKGDOCDIR=\"%s\"\n", PKGDOCDIR);
367   printf ("  +SYSCONFDIR=\"%s\"\n", SYSCONFDIR);
368   printf ("  +MIXMASTER=\"%s\"\n\n", MIXMASTER);
369
370   puts (_("MadMutt is based on Madmutt wich was based on Mutt before\n"));
371
372   exit (0);
373 }
374
375 static void start_curses (void)
376 {
377   km_init ();                   /* must come before mutt_init */
378
379 #ifdef USE_SLANG_CURSES
380   SLtt_Ignore_Beep = 1;         /* don't do that #*$@^! annoying visual beep! */
381   SLsmg_Display_Eight_Bit = 128;        /* characters above this are printable */
382   SLtt_set_color (0, NULL, "default", "default");
383 #else
384   /* should come before initscr() so that ncurses 4.2 doesn't try to install
385      its own SIGWINCH handler */
386   mutt_signal_initialize ();
387 #endif
388   if (initscr () == NULL) {
389     puts _("Error initializing terminal.");
390
391     exit (1);
392   }
393   mutt_signal_initialize ();
394   ci_start_color ();
395   keypad (stdscr, TRUE);
396   cbreak ();
397   noecho ();
398 #ifdef HAVE_TYPEAHEAD
399   typeahead (-1);               /* simulate smooth scrolling */
400 #endif
401 #ifdef HAVE_META
402   meta (stdscr, TRUE);
403 #endif
404 }
405
406 #define M_IGNORE  (1<<0)        /* -z */
407 #define M_BUFFY   (1<<1)        /* -Z */
408 #define M_NOSYSRC (1<<2)        /* -n */
409 #define M_RO      (1<<3)        /* -R */
410 #define M_SELECT  (1<<4)        /* -y */
411 #ifdef USE_NNTP
412 #define M_NEWS    (1<<5)        /* -g and -G */
413 #endif
414
415 int main (int argc, char **argv)
416 {
417   char folder[_POSIX_PATH_MAX] = "";
418   char *subject = NULL;
419   char *includeFile = NULL;
420   char *draftFile = NULL;
421   char *newMagic = NULL;
422   HEADER *msg = NULL;
423   string_list_t *attach = NULL;
424   string_list_t *commands = NULL;
425   string_list_t *queries = NULL;
426   string_list_t *alias_queries = NULL;
427   int sendflags = 0;
428   int flags = 0;
429   int version = 0;
430   int i;
431   int explicit_folder = 0;
432   int dump_variables = -1;
433
434   /* initialize random number for tmp file creation */ 
435   srand48((unsigned int) time (NULL));
436   
437   /* sanity check against stupid administrators */
438   
439   if (getegid () != getgid ()) {
440     fprintf (stderr, "%s: I don't want to run with privileges!\n", argv[0]);
441     exit (1);
442   }
443
444 #ifdef ENABLE_NLS
445   /* FIXME what about init.c:1439 ? */
446   setlocale (LC_ALL, "");
447   bindtextdomain (PACKAGE, MUTTLOCALEDIR);
448   textdomain (PACKAGE);
449 #endif
450
451   setlocale (LC_CTYPE, "");
452
453   mutt_error = mutt_nocurses_error;
454   mutt_message = mutt_nocurses_error;
455   srand48 (time (NULL));
456   umask (077);
457
458   p_clear(Options, countof(Options));
459   p_clear(QuadOptions, countof(QuadOptions));
460
461   while ((i = getopt(argc, argv, "A:a:b:F:f:c:e:H:s:i:hm:npQ:RTtvyzZ"
462 #ifdef USE_NNTP
463                                                                     "g:G"
464 #endif
465                     )) >= 0)
466     switch (i) {
467     case 'A':
468       alias_queries = mutt_add_list (alias_queries, optarg);
469       break;
470     case 'a':
471       if (strlen(optarg)<=512)
472         attach = mutt_add_list (attach, optarg);
473       else{
474         printf("too long arguments. exiting ...\n");
475         exit(1);
476       }
477       break;
478
479     case 'F':
480       m_strreplace(&Muttrc, optarg);
481       break;
482
483     case 'f':
484       m_strcpy(folder, sizeof(folder), optarg);
485       explicit_folder = 1;
486       break;
487
488     case 'b':
489     case 'c':
490       if (!msg)
491         msg = header_new();
492       if (!msg->env)
493         msg->env = envelope_new();
494       if (i == 'b')
495         msg->env->bcc = rfc822_parse_adrlist (msg->env->bcc, optarg);
496       else
497         msg->env->cc = rfc822_parse_adrlist (msg->env->cc, optarg);
498       break;
499
500     case 't':
501       dump_variables = 2;
502       break;
503
504     case 'T':
505       dump_variables = 1;
506       break;
507
508     case 'e':
509       commands = mutt_add_list (commands, optarg);
510       break;
511
512     case 'H':
513       draftFile = optarg;
514       break;
515
516     case 'i':
517       includeFile = optarg;
518       break;
519
520     case 'm':
521       /* should take precedence over .muttrc setting, so save it for later */
522       newMagic = optarg;
523       break;
524
525     case 'n':
526       flags |= M_NOSYSRC;
527       break;
528
529     case 'p':
530       sendflags |= SENDPOSTPONED;
531       break;
532
533     case 'Q':
534       queries = mutt_add_list (queries, optarg);
535       break;
536
537     case 'R':
538       flags |= M_RO;            /* read-only mode */
539       break;
540
541     case 's':
542       subject = optarg;
543       break;
544
545     case 'v':
546       version++;
547       break;
548
549     case 'y':                  /* My special hack mode */
550       flags |= M_SELECT;
551       break;
552
553 #ifdef USE_NNTP
554     case 'g':                  /* Specify a newsserver */
555       {
556         char buf[LONG_STRING];
557
558         snprintf (buf, sizeof (buf), "set nntp_host=%s", optarg);
559         commands = mutt_add_list (commands, buf);
560       }
561
562     case 'G':                  /* List of newsgroups */
563       flags |= M_SELECT | M_NEWS;
564       break;
565 #endif
566
567     case 'z':
568       flags |= M_IGNORE;
569       break;
570
571     case 'Z':
572       flags |= M_BUFFY | M_IGNORE;
573       break;
574
575     default:
576       mutt_usage ();
577     }
578
579   if (version) {
580     show_version ();
581   }
582
583   /* Check for a batch send. */
584   if (!isatty (0) || queries || alias_queries || dump_variables > 0) {
585     set_option (OPTNOCURSES);
586     sendflags = SENDBATCH;
587   }
588
589   /* This must come before mutt_init() because curses needs to be started
590      before calling the init_pair() function to set the color scheme.  */
591   if (!option (OPTNOCURSES))
592     start_curses ();
593
594   /* set defaults and read init files */
595   mutt_init (flags & M_NOSYSRC, commands);
596   string_list_wipe(&commands);
597
598   /* Initialize crypto */
599   crypt_init ();
600
601   if (queries)
602     return mutt_query_variables (queries);
603   if (dump_variables > 0)
604     return (mutt_dump_variables (dump_variables-1));
605
606   if (alias_queries) {
607     int rv = 0;
608     address_t *a;
609
610     for (; alias_queries; alias_queries = alias_queries->next) {
611       if ((a = address_list_dup(alias_lookup(alias_queries->data)))) {
612         /* output in machine-readable form */
613         mutt_addrlist_to_idna (a, NULL);
614         mutt_write_address_list (a, stdout, 0, 0);
615         address_list_wipe(&a);
616       } else {
617         rv = 1;
618         printf ("%s\n", alias_queries->data);
619       }
620     }
621     return rv;
622   }
623
624   if (newMagic)
625     mx_set_magic (newMagic);
626
627   if (!option (OPTNOCURSES)) {
628     SETCOLOR (MT_COLOR_NORMAL);
629     clear ();
630     mutt_error = mutt_curses_error;
631     mutt_message = mutt_curses_message;
632   }
633
634   /* Create the Maildir directory if it doesn't exist. */
635   if (!option (OPTNOCURSES) && Maildir) {
636     struct stat sb;
637     char fpath[_POSIX_PATH_MAX];
638     char mesg[STRING];
639
640     m_strcpy(fpath, sizeof(fpath), Maildir);
641     mutt_expand_path (fpath, sizeof (fpath));
642     /* we're not connected yet - skip mail folder creation */
643     if (mx_get_magic (fpath) != M_IMAP)
644       if (stat (fpath, &sb) == -1 && errno == ENOENT) {
645         snprintf (mesg, sizeof (mesg), _("%s does not exist. Create it?"),
646                   Maildir);
647         if (mutt_yesorno (mesg, M_YES) == M_YES) {
648           if (mkdir (fpath, 0700) == -1 && errno != EEXIST)
649             mutt_error (_("Can't create %s: %s."), Maildir, strerror (errno));
650         }
651       }
652   }
653
654   if (sendflags & SENDPOSTPONED) {
655     if (!option (OPTNOCURSES))
656       mutt_flushinp ();
657     ci_send_message (SENDPOSTPONED, NULL, NULL, NULL, NULL);
658     mutt_endwin (NULL);
659   }
660   else if (subject || msg || sendflags || draftFile || includeFile || attach
661            || optind < argc) {
662     FILE *fin = NULL;
663     char buf[LONG_STRING];
664     char *tempfile = NULL, *infile = NULL;
665     char *bodytext = NULL;
666     FILE *fout;
667
668     if (!option (OPTNOCURSES))
669       mutt_flushinp ();
670
671     if (!msg)
672       msg = header_new();
673
674     if (draftFile)
675       infile = draftFile;
676     else {
677       if (!msg->env)
678         msg->env = envelope_new();
679
680       for (i = optind; i < argc; i++) {
681         if (url_check_scheme (argv[i]) == U_MAILTO)
682           url_parse_mailto (msg->env, &bodytext, argv[i]);
683         else
684           msg->env->to = rfc822_parse_adrlist (msg->env->to, argv[i]);
685       }
686
687       if (option (OPTAUTOEDIT) && !msg->env->to && !msg->env->cc) {
688         if (!option (OPTNOCURSES))
689           mutt_endwin (NULL);
690         fputs (_("No recipients specified.\n"), stderr);
691         exit (1);
692       }
693
694       if (subject)
695         msg->env->subject = m_strdup(subject);
696
697       if (includeFile)
698         infile = includeFile;
699     }
700
701     if (infile || bodytext) {
702       if (infile) {
703         if (m_strcmp("-", infile) == 0)
704           fin = stdin;
705         else {
706           char path[_POSIX_PATH_MAX];
707
708           m_strcpy(path, sizeof(path), infile);
709           mutt_expand_path (path, sizeof (path));
710           if ((fin = fopen (path, "r")) == NULL) {
711             if (!option (OPTNOCURSES))
712               mutt_endwin (NULL);
713             perror (path);
714             exit (1);
715           }
716         }
717       }
718       else
719         fin = NULL;
720
721       if (draftFile)
722         msg->env = mutt_read_rfc822_header (fin, NULL, 1, 0);
723
724       /* is the following if still needed? */
725
726       fout = m_tempfile(buf, sizeof(buf), NONULL(Tempdir), NULL);
727       tempfile = m_strdup(buf);
728
729       if (tempfile) {
730         if (!fout) {
731           if (!option (OPTNOCURSES))
732             mutt_endwin (NULL);
733           perror (tempfile);
734           m_fclose(&fin);
735           p_delete(&tempfile);
736           exit (1);
737         }
738         if (fin)
739           mutt_copy_stream (fin, fout);
740         else if (bodytext)
741           fputs (bodytext, fout);
742         m_fclose(&fout);
743         if (fin && fin != stdin)
744           m_fclose(&fin);
745       }
746     }
747
748     p_delete(&bodytext);
749
750     if (attach) {
751       string_list_t *t = attach;
752       BODY *a = NULL;
753
754       while (t) {
755         if (a) {
756           a->next = mutt_make_file_attach (t->data);
757           a = a->next;
758         }
759         else
760           msg->content = a = mutt_make_file_attach (t->data);
761         if (!a) {
762           if (!option (OPTNOCURSES))
763             mutt_endwin (NULL);
764           fprintf (stderr, _("%s: unable to attach file.\n"), t->data);
765           string_list_wipe(&attach);
766           exit (1);
767         }
768         t = t->next;
769       }
770       string_list_wipe(&attach);
771     }
772
773     ci_send_message (sendflags, msg, tempfile, NULL, NULL);
774
775     if (!option (OPTNOCURSES))
776       mutt_endwin (NULL);
777   }
778   else {
779     if (flags & M_BUFFY) {
780       if (!buffy_check (0)) {
781         mutt_endwin _("No mailbox with new mail.");
782
783         exit (1);
784       }
785       folder[0] = 0;
786       buffy_next (folder, sizeof (folder));
787     }
788     else if (flags & M_SELECT) {
789 #ifdef USE_NNTP
790       if (flags & M_NEWS) {
791         set_option (OPTNEWS);
792         if (!(CurrentNewsSrv = mutt_select_newsserver (NewsServer))) {
793           mutt_endwin (Errorbuf);
794           exit (1);
795         }
796       } else
797 #endif
798       if (!Incoming.len) {
799         mutt_endwin _("No incoming mailboxes defined.");
800
801         exit (1);
802       }
803       folder[0] = 0;
804       mutt_select_file (folder, sizeof (folder), M_SEL_FOLDER | M_SEL_BUFFY);
805       if (!folder[0]) {
806         mutt_endwin (NULL);
807         exit (0);
808       }
809     }
810
811     if (!folder[0])
812       m_strcpy(folder, sizeof(folder), NONULL(Spoolfile));
813
814 #ifdef USE_NNTP
815     if (option (OPTNEWS)) {
816       unset_option (OPTNEWS);
817       nntp_expand_path (folder, sizeof (folder),
818                         &CurrentNewsSrv->conn->account);
819     } else
820 #endif
821       mutt_expand_path (folder, sizeof (folder));
822
823     m_strreplace(&CurrentFolder, folder);
824     m_strreplace(&LastFolder, folder);
825
826     if (flags & M_IGNORE) {
827       /* check to see if there are any messages in the folder */
828       switch (mx_check_empty (folder)) {
829       case -1:
830         mutt_endwin (strerror (errno));
831         exit (1);
832       case 1:
833         mutt_endwin _("Mailbox is empty.");
834         exit (1);
835       }
836     }
837
838     mutt_folder_hook (folder);
839
840     if ((Context = mx_open_mailbox (folder, ((flags & M_RO)
841                                              || option (OPTREADONLY)) ?
842                                     M_READONLY : 0, NULL))
843         || !explicit_folder) {
844       mutt_index_menu ();
845       if (option (OPTXTERMSETTITLES))
846         printf("\033]2;%s\007", NONULL(XtermLeave));
847       if (Context)
848         p_delete(&Context);
849     }
850     mutt_endwin (Errorbuf);
851   }
852
853   exit (0);
854 }