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