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