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