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