forked from neomutt/neomutt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.c
1432 lines (1318 loc) · 43.7 KB
/
main.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/**
* @file
* Command line processing
*
* @authors
* Copyright (C) 1996-2007,2010,2013 Michael R. Elkins <[email protected]>
* Copyright (C) 1999-2007 Thomas Roessler <[email protected]>
* Copyright (C) 2004 g10 Code GmbH
* Copyright (C) 2019 Pietro Cerutti <[email protected]>
* Copyright (C) 2020 R Primus <[email protected]>
*
* @copyright
* This program is free software: you can redistribute it and/or modify it under
* the terms of the GNU General Public License as published by the Free Software
* Foundation, either version 2 of the License, or (at your option) any later
* version.
*
* This program is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
* FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
* details.
*
* You should have received a copy of the GNU General Public License along with
* this program. If not, see <http://www.gnu.org/licenses/>.
*/
/**
* @mainpage Code Docs
*
* <img style="float: left; padding-right: 0.5em;" src="structs.svg">
* <img style="float: left; padding-right: 0.5em;" src="pages.svg">
* <img style="float: left; padding-right: 0.5em;" src="globals.svg">
* <img style="float: left; padding-right: 0.5em;" src="functions.svg">
* <img style="float: left; padding-right: 0.5em;" src="enums.svg">
* <img style="float: left; padding-right: 0.5em;" src="members.svg">
* <img style="float: left; padding-right: 0.5em;" src="defines.svg">
* <br>
*
* ## Libraries
*
* [Each library](pages.html) helps to untangle the code by grouping similar
* functions and reducing dependencies.
*
* The goal is that each library is:
* - Self-contained (it may rely on other libraries)
* - Independently testable (i.e. without using NeoMutt)
* - Fully documented
* - Robust
*
* Libraries:
* @ref lib_address, @ref lib_alias, @ref lib_attach, @ref lib_autocrypt,
* @ref lib_bcache, @ref lib_browser, @ref lib_color, @ref lib_complete,
* @ref lib_compmbox, @ref lib_compose, @ref lib_compress, @ref lib_config,
* @ref lib_conn, @ref lib_convert, @ref lib_core, @ref lib_email,
* @ref lib_enter, @ref lib_envelope, @ref lib_gui, @ref lib_hcache,
* @ref lib_helpbar, @ref lib_history, @ref lib_imap, @ref lib_index,
* @ref lib_maildir, @ref lib_mbox, @ref lib_menu, @ref lib_mixmaster,
* @ref lib_mutt, @ref lib_ncrypt, @ref lib_nntp, @ref lib_notmuch,
* @ref lib_pager, @ref lib_pattern, @ref lib_pop, @ref lib_postpone,
* @ref lib_progress, @ref lib_question, @ref lib_send, @ref lib_sidebar,
* @ref lib_store.
*
* ## Miscellaneous files
*
* These file form the main body of NeoMutt.
*
* | File | Description |
* | :-------------- | :------------------------- |
* | alternates.c | @subpage neo_alternates |
* | commands.c | @subpage neo_commands |
* | command_parse.c | @subpage neo_command_parse |
* | copy.c | @subpage neo_copy |
* | editmsg.c | @subpage neo_editmsg |
* | enriched.c | @subpage neo_enriched |
* | flags.c | @subpage neo_flags |
* | functions.c | @subpage neo_functions |
* | handler.c | @subpage neo_handler |
* | hdrline.c | @subpage neo_hdrline |
* | help.c | @subpage neo_help |
* | hook.c | @subpage neo_hook |
* | icommands.c | @subpage neo_icommands |
* | init.c | @subpage neo_init |
* | keymap.c | @subpage neo_keymap |
* | mailcap.c | @subpage neo_mailcap |
* | maillist.c | @subpage neo_maillist |
* | main.c | @subpage neo_main |
* | monitor.c | @subpage neo_monitor |
* | muttlib.c | @subpage neo_muttlib |
* | mutt_account.c | @subpage neo_mutt_account |
* | mutt_body.c | @subpage neo_mutt_body |
* | mutt_commands.c | @subpage neo_mutt_commands |
* | mutt_config.c | @subpage neo_mutt_config |
* | mutt_globals.h | @subpage neo_mutt_globals |
* | mutt_header.c | @subpage neo_mutt_header |
* | mutt_history.c | @subpage neo_mutt_history |
* | mutt_logging.c | @subpage neo_mutt_logging |
* | mutt_lua.c | @subpage neo_mutt_lua |
* | mutt_mailbox.c | @subpage neo_mutt_mailbox |
* | mutt_signal.c | @subpage neo_mutt_signal |
* | mutt_socket.c | @subpage neo_mutt_socket |
* | mutt_thread.c | @subpage neo_mutt_thread |
* | mx.c | @subpage neo_mx |
* | mview.c | @subpage neo_mview |
* | myvar.c | @subpage neo_myvar |
* | opcodes.c | @subpage neo_opcode |
* | options.h | @subpage neo_options |
* | recvcmd.c | @subpage neo_recvcmd |
* | resize.c | @subpage neo_resize |
* | rfc3676.c | @subpage neo_rfc3676 |
* | score.c | @subpage neo_score |
* | sort.c | @subpage neo_sort |
* | status.c | @subpage neo_status |
* | subjectrx.c | @subpage neo_subjrx |
* | system.c | @subpage neo_system |
* | timegm.c | @subpage neo_timegm |
* | version.c | @subpage neo_version |
* | wcscasecmp.c | @subpage neo_wcscasecmp |
*
* ## Building these Docs
*
* The config for building the docs is in the main source repo.
*
* Everything possible is turned on in the config file, so you'll need to
* install a few dependencies like `dot` from the graphviz package.
*
* ## Installing the Docs
*
* These docs aren't in the main website repo -- they weigh in at 100MB.
* Instead, they're stored in the [code repo](https://github.com/neomutt/code)
*/
/**
* @page neo_main Command line processing
*
* Command line processing
*/
#define MAIN_C 1
#define GNULIB_defined_setlocale
#include "config.h"
#include <errno.h>
#include <getopt.h>
#include <limits.h>
#include <locale.h>
#include <pwd.h>
#include <stdbool.h>
#include <stdint.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <sys/stat.h>
#include <unistd.h>
#include "mutt/lib.h"
#include "address/lib.h"
#include "config/lib.h"
#include "email/lib.h"
#include "core/lib.h"
#include "alias/lib.h"
#include "conn/lib.h"
#include "gui/lib.h"
#include "attach/lib.h"
#include "browser/lib.h"
#include "color/lib.h"
#include "index/lib.h"
#include "menu/lib.h"
#include "ncrypt/lib.h"
#include "postpone/lib.h"
#include "question/lib.h"
#include "send/lib.h"
#include "alternates.h"
#include "commands.h"
#include "hook.h"
#include "init.h"
#include "keymap.h"
#include "mutt_globals.h"
#include "mutt_history.h"
#include "mutt_logging.h"
#include "mutt_mailbox.h"
#include "muttlib.h"
#include "mx.h"
#include "myvar.h"
#include "options.h"
#include "protos.h"
#include "subjectrx.h"
#include "version.h"
#ifdef ENABLE_NLS
#include <libintl.h>
#endif
#ifdef USE_IMAP
#include "imap/lib.h"
#endif
#ifdef USE_POP
#include "pop/lib.h"
#endif
#ifdef USE_NNTP
#include "nntp/lib.h"
#include "nntp/adata.h" // IWYU pragma: keep
#include "nntp/mdata.h" // IWYU pragma: keep
#endif
#ifdef USE_AUTOCRYPT
#include "autocrypt/lib.h"
#endif
#if defined(USE_DEBUG_NOTIFY) || defined(HAVE_LIBUNWIND)
#include "debug/lib.h"
#endif
// clang-format off
typedef uint8_t CliFlags; ///< Flags for command line options, e.g. #MUTT_CLI_IGNORE
#define MUTT_CLI_NO_FLAGS 0 ///< No flags are set
#define MUTT_CLI_IGNORE (1 << 0) ///< -z Open first mailbox if it has mail
#define MUTT_CLI_MAILBOX (1 << 1) ///< -Z Open first mailbox if is has new mail
#define MUTT_CLI_NOSYSRC (1 << 2) ///< -n Do not read the system-wide config file
#define MUTT_CLI_RO (1 << 3) ///< -R Open mailbox in read-only mode
#define MUTT_CLI_SELECT (1 << 4) ///< -y Start with a list of all mailboxes
#ifdef USE_NNTP
#define MUTT_CLI_NEWS (1 << 5) ///< -g/-G Start with a list of all newsgroups
#endif
// clang-format on
/**
* reset_tilde - Temporary measure
* @param cs Config Set
*/
static void reset_tilde(struct ConfigSet *cs)
{
static const char *names[] = { "folder", "mbox", "postponed", "record" };
struct Buffer value = mutt_buffer_make(256);
for (size_t i = 0; i < mutt_array_size(names); i++)
{
struct HashElem *he = cs_get_elem(cs, names[i]);
if (!he)
continue;
mutt_buffer_reset(&value);
cs_he_initial_get(cs, he, &value);
mutt_buffer_expand_path_regex(&value, false);
cs_he_initial_set(cs, he, value.data, NULL);
cs_he_reset(cs, he, NULL);
}
mutt_buffer_dealloc(&value);
}
/**
* mutt_exit - Leave NeoMutt NOW
* @param code Value to return to the calling environment
*/
void mutt_exit(int code)
{
mutt_endwin();
#ifdef HAVE_LIBUNWIND
if (code != 0)
show_backtrace();
#endif
exit(code);
}
/**
* usage - Display NeoMutt command line
* @retval true Text displayed
*/
static bool usage(void)
{
puts(mutt_make_version());
// clang-format off
/* L10N: Try to limit to 80 columns */
puts(_("usage:"));
puts(_(" neomutt [-Enx] [-e <command>] [-F <config>] [-H <draft>] [-i <include>]\n"
" [-b <address>] [-c <address>] [-s <subject>] [-a <file> [...] --]\n"
" <address> [...]"));
puts(_(" neomutt [-nx] [-e <command>] [-F <config>] [-b <address>] [-c <address>]\n"
" [-s <subject>] [-a <file> [...] --] <address> [...] < message"));
puts(_(" neomutt [-nRy] [-e <command>] [-F <config>] [-f <mailbox>] [-m <type>]"));
puts(_(" neomutt [-n] [-e <command>] [-F <config>] -A <alias>"));
puts(_(" neomutt [-n] [-e <command>] [-F <config>] -B"));
puts(_(" neomutt [-n] [-e <command>] [-F <config>] -D [-S] [-O]"));
puts(_(" neomutt [-n] [-e <command>] [-F <config>] -d <level> -l <file>"));
puts(_(" neomutt [-n] [-e <command>] [-F <config>] -G"));
puts(_(" neomutt [-n] [-e <command>] [-F <config>] -g <server>"));
puts(_(" neomutt [-n] [-e <command>] [-F <config>] -p"));
puts(_(" neomutt [-n] [-e <command>] [-F <config>] -Q <variable> [-O]"));
puts(_(" neomutt [-n] [-e <command>] [-F <config>] -Z"));
puts(_(" neomutt [-n] [-e <command>] [-F <config>] -z [-f <mailbox>]"));
puts(_(" neomutt -v[v]\n"));
/* L10N: Try to limit to 80 columns. If more space is needed add an indented line */
puts(_("options:"));
puts(_(" -- Special argument forces NeoMutt to stop option parsing and treat\n"
" remaining arguments as addresses even if they start with a dash"));
puts(_(" -A <alias> Print an expanded version of the given alias to stdout and exit"));
puts(_(" -a <file> Attach one or more files to a message (must be the last option)\n"
" Add any addresses after the '--' argument"));
puts(_(" -B Run in batch mode (do not start the ncurses UI)"));
puts(_(" -b <address> Specify a blind carbon copy (Bcc) recipient"));
puts(_(" -c <address> Specify a carbon copy (Cc) recipient"));
puts(_(" -D Dump all config variables as 'name=value' pairs to stdout"));
puts(_(" -D -O Like -D, but show one-liner documentation"));
puts(_(" -D -S Like -D, but hide the value of sensitive variables"));
puts(_(" -d <level> Log debugging output to a file (default is \"~/.neomuttdebug0\")\n"
" The level can range from 1-5 and affects verbosity"));
puts(_(" -E Edit draft (-H) or include (-i) file during message composition"));
puts(_(" -e <command> Specify a command to be run after reading the config files"));
puts(_(" -F <config> Specify an alternative initialization file to read"));
puts(_(" -f <mailbox> Specify a mailbox (as defined with 'mailboxes' command) to load"));
puts(_(" -G Start NeoMutt with a listing of subscribed newsgroups"));
puts(_(" -g <server> Like -G, but start at specified news server"));
puts(_(" -H <draft> Specify a draft file with header and body for message composing"));
puts(_(" -h Print this help message and exit"));
puts(_(" -i <include> Specify an include file to be embedded in the body of a message"));
puts(_(" -l <file> Specify a file for debugging output (default \"~/.neomuttdebug0\")"));
puts(_(" -m <type> Specify a default mailbox format type for newly created folders\n"
" The type is either MH, MMDF, Maildir or mbox (case-insensitive)"));
puts(_(" -n Do not read the system-wide configuration file"));
puts(_(" -p Resume a prior postponed message, if any"));
puts(_(" -Q <variable> Query a configuration variable and print its value to stdout\n"
" (after the config has been read and any commands executed)\n"
" Add -O for one-liner documentation"));
puts(_(" -R Open mailbox in read-only mode"));
puts(_(" -s <subject> Specify a subject (must be enclosed in quotes if it has spaces)"));
puts(_(" -v Print the NeoMutt version and compile-time definitions and exit"));
puts(_(" -vv Print the NeoMutt license and copyright information and exit"));
puts(_(" -y Start NeoMutt with a listing of all defined mailboxes"));
puts(_(" -Z Open the first mailbox with new message or exit immediately with\n"
" exit code 1 if none is found in all defined mailboxes"));
puts(_(" -z Open the first or specified (-f) mailbox if it holds any message\n"
" or exit immediately with exit code 1 otherwise"));
// clang-format on
fflush(stdout);
return !ferror(stdout);
}
/**
* start_curses - Start the Curses UI
* @retval 0 Success
* @retval 1 Failure
*/
static int start_curses(void)
{
km_init(); /* must come before mutt_init */
/* should come before initscr() so that ncurses 4.2 doesn't try to install
* its own SIGWINCH handler */
mutt_signal_init();
if (!initscr())
{
mutt_error(_("Error initializing terminal"));
return 1;
}
mutt_signal_init();
mutt_colors_init();
keypad(stdscr, true);
cbreak();
noecho();
nonl();
typeahead(-1); /* simulate smooth scrolling */
meta(stdscr, true);
init_extended_keys();
/* Now that curses is set up, we drop back to normal screen mode.
* This simplifies displaying error messages to the user.
* The first call to refresh() will swap us back to curses screen mode. */
endwin();
return 0;
}
/**
* init_locale - Initialise the Locale/NLS settings
*/
static void init_locale(void)
{
setlocale(LC_ALL, "");
#ifdef ENABLE_NLS
const char *domdir = mutt_str_getenv("TEXTDOMAINDIR");
if (domdir)
bindtextdomain(PACKAGE, domdir);
else
bindtextdomain(PACKAGE, MUTTLOCALEDIR);
textdomain(PACKAGE);
#endif
#ifndef LOCALES_HACK
/* Do we have a locale definition? */
if (mutt_str_getenv("LC_ALL") || mutt_str_getenv("LANG") || mutt_str_getenv("LC_CTYPE"))
{
OptLocales = true;
}
#endif
}
/**
* get_user_info - Find the user's name, home and shell
* @param cs Config Set
* @retval true Success
*
* Find the login name, real name, home directory and shell.
*/
static bool get_user_info(struct ConfigSet *cs)
{
const char *shell = mutt_str_getenv("SHELL");
if (shell)
cs_str_initial_set(cs, "shell", shell, NULL);
/* Get some information about the user */
struct passwd *pw = getpwuid(getuid());
if (pw)
{
if (!Username)
Username = mutt_str_dup(pw->pw_name);
if (!HomeDir)
HomeDir = mutt_str_dup(pw->pw_dir);
if (!shell)
cs_str_initial_set(cs, "shell", pw->pw_shell, NULL);
}
if (!Username)
{
mutt_error(_("unable to determine username"));
return false; // TEST05: neomutt (unset $USER, delete user from /etc/passwd)
}
if (!HomeDir)
{
mutt_error(_("unable to determine home directory"));
return false; // TEST06: neomutt (unset $HOME, delete user from /etc/passwd)
}
cs_str_reset(cs, "shell", NULL);
return true;
}
/**
* log_translation - Log the translation being used
*
* Read the header info from the translation file.
*
* @note Call bindtextdomain() first
*/
static void log_translation(void)
{
const char *header = ""; // Do not merge these two lines
header = _(header); // otherwise the .po files will end up badly ordered
const char *label = "Language:"; // the start of the lookup/needle
const char *lang = mutt_istr_find(header, label);
int len = 64;
if (lang)
{
lang += strlen(label); // skip label
SKIPWS(lang);
char *nl = strchr(lang, '\n');
if (nl)
len = (nl - lang);
}
else
{
lang = "NONE";
}
mutt_debug(LL_DEBUG1, "Translation: %.*s\n", len, lang);
}
/**
* main - Start NeoMutt
* @param argc Number of command line arguments
* @param argv List of command line arguments
* @param envp Copy of the environment
* @retval 0 Success
* @retval 1 Error
*/
int
#ifdef ENABLE_FUZZ_TESTS
disabled_main
#else
main
#endif
(int argc, char *argv[], char *envp[])
{
char *subject = NULL;
char *include_file = NULL;
char *draft_file = NULL;
char *new_type = NULL;
char *dlevel = NULL;
char *dfile = NULL;
#ifdef USE_NNTP
const char *cli_nntp = NULL;
#endif
struct Email *e = NULL;
struct ListHead attach = STAILQ_HEAD_INITIALIZER(attach);
struct ListHead commands = STAILQ_HEAD_INITIALIZER(commands);
struct ListHead queries = STAILQ_HEAD_INITIALIZER(queries);
struct ListHead alias_queries = STAILQ_HEAD_INITIALIZER(alias_queries);
struct ListHead cc_list = STAILQ_HEAD_INITIALIZER(cc_list);
struct ListHead bcc_list = STAILQ_HEAD_INITIALIZER(bcc_list);
SendFlags sendflags = SEND_NO_FLAGS;
CliFlags flags = MUTT_CLI_NO_FLAGS;
int version = 0;
int i;
bool explicit_folder = false;
bool dump_variables = false;
bool one_liner = false;
bool hide_sensitive = false;
bool batch_mode = false;
bool edit_infile = false;
#ifdef USE_DEBUG_PARSE_TEST
bool test_config = false;
#endif
int double_dash = argc, nargc = 1;
int rc = 1;
bool repeat_error = false;
struct Buffer folder = mutt_buffer_make(0);
struct Buffer expanded_infile = mutt_buffer_make(0);
struct Buffer tempfile = mutt_buffer_make(0);
struct ConfigSet *cs = NULL;
MuttLogger = log_disp_terminal;
/* sanity check against stupid administrators */
if (getegid() != getgid())
{
mutt_error("%s: I don't want to run with privileges!", (argc != 0) ? argv[0] : "neomutt");
goto main_exit; // TEST01: neomutt (as root, chgrp mail neomutt; chmod +s neomutt)
}
init_locale();
umask(077);
mutt_envlist_init(envp);
for (optind = 1; optind < double_dash;)
{
/* We're getopt'ing POSIXLY, so we'll be here every time getopt()
* encounters a non-option. That could be a file to attach
* (all non-options between -a and --) or it could be an address
* (which gets collapsed to the front of argv). */
for (; optind < argc; optind++)
{
if ((argv[optind][0] == '-') && (argv[optind][1] != '\0'))
{
if ((argv[optind][1] == '-') && (argv[optind][2] == '\0'))
double_dash = optind; /* quit outer loop after getopt */
break; /* drop through to getopt */
}
/* non-option, either an attachment or address */
if (!STAILQ_EMPTY(&attach))
mutt_list_insert_tail(&attach, mutt_str_dup(argv[optind]));
else
argv[nargc++] = argv[optind];
}
/* USE_NNTP 'g:G' */
i = getopt(argc, argv, "+A:a:Bb:F:f:c:Dd:l:Ee:g:GH:i:hm:nOpQ:RSs:TvxyzZ");
if (i != EOF)
{
switch (i)
{
case 'A':
mutt_list_insert_tail(&alias_queries, mutt_str_dup(optarg));
break;
case 'a':
mutt_list_insert_tail(&attach, mutt_str_dup(optarg));
break;
case 'B':
batch_mode = true;
break;
case 'b':
mutt_list_insert_tail(&bcc_list, mutt_str_dup(optarg));
break;
case 'c':
mutt_list_insert_tail(&cc_list, mutt_str_dup(optarg));
break;
case 'D':
dump_variables = true;
break;
case 'd':
dlevel = optarg;
break;
case 'E':
edit_infile = true;
break;
case 'e':
mutt_list_insert_tail(&commands, mutt_str_dup(optarg));
break;
case 'F':
mutt_list_insert_tail(&Muttrc, mutt_str_dup(optarg));
break;
case 'f':
mutt_buffer_strcpy(&folder, optarg);
explicit_folder = true;
break;
#ifdef USE_NNTP
case 'g': /* Specify a news server */
cli_nntp = optarg;
/* fallthrough */
case 'G': /* List of newsgroups */
flags |= MUTT_CLI_SELECT | MUTT_CLI_NEWS;
break;
#endif
case 'H':
draft_file = optarg;
break;
case 'i':
include_file = optarg;
break;
case 'l':
dfile = optarg;
break;
case 'm':
new_type = optarg;
break;
case 'n':
flags |= MUTT_CLI_NOSYSRC;
break;
case 'O':
one_liner = true;
break;
case 'p':
sendflags |= SEND_POSTPONED;
break;
case 'Q':
mutt_list_insert_tail(&queries, mutt_str_dup(optarg));
break;
case 'R':
flags |= MUTT_CLI_RO; /* read-only mode */
break;
case 'S':
hide_sensitive = true;
break;
case 's':
subject = optarg;
break;
#ifdef USE_DEBUG_PARSE_TEST
case 'T':
test_config = true;
break;
#endif
case 'v':
version++;
break;
case 'y': /* My special hack mode */
flags |= MUTT_CLI_SELECT;
break;
case 'Z':
flags |= MUTT_CLI_MAILBOX | MUTT_CLI_IGNORE;
break;
case 'z':
flags |= MUTT_CLI_IGNORE;
break;
default:
OptNoCurses = true;
if (usage())
goto main_ok; // TEST03: neomutt -9
else
goto main_curses;
}
}
}
/* collapse remaining argv */
while (optind < argc)
argv[nargc++] = argv[optind++];
optind = 1;
argc = nargc;
if (version > 0)
{
log_queue_flush(log_disp_terminal);
bool done;
if (version == 1)
done = print_version(stdout);
else
done = print_copyright();
OptNoCurses = true;
if (done)
goto main_ok; // TEST04: neomutt -v
else
goto main_curses;
}
mutt_str_replace(&Username, mutt_str_getenv("USER"));
mutt_str_replace(&HomeDir, mutt_str_getenv("HOME"));
cs = cs_new(500);
if (!cs)
goto main_curses;
NeoMutt = neomutt_new(cs);
init_config(cs);
subjrx_init();
attach_init();
alternates_init();
#ifdef USE_DEBUG_NOTIFY
notify_observer_add(NeoMutt->notify, NT_ALL, debug_all_observer, NULL);
#endif
if (!get_user_info(cs))
goto main_exit;
#ifdef USE_DEBUG_PARSE_TEST
if (test_config)
{
cs_str_initial_set(cs, "from", "[email protected]", NULL);
cs_str_reset(cs, "from", NULL);
myvar_set("my_var", "foo");
test_parse_set();
goto main_ok;
}
#endif
reset_tilde(cs);
if (dfile)
{
cs_str_initial_set(cs, "debug_file", dfile, NULL);
cs_str_reset(cs, "debug_file", NULL);
}
if (dlevel)
{
short num = 0;
if (!mutt_str_atos_full(dlevel, &num) || (num < LL_MESSAGE) || (num >= LL_MAX))
{
mutt_error(_("Error: value '%s' is invalid for -d"), dlevel);
goto main_exit; // TEST07: neomutt -d xyz
}
cs_str_initial_set(cs, "debug_level", dlevel, NULL);
cs_str_reset(cs, "debug_level", NULL);
}
mutt_log_prep();
MuttLogger = log_disp_queue;
log_translation();
if (!STAILQ_EMPTY(&cc_list) || !STAILQ_EMPTY(&bcc_list))
{
e = email_new();
e->env = mutt_env_new();
struct ListNode *np = NULL;
STAILQ_FOREACH(np, &bcc_list, entries)
{
mutt_addrlist_parse(&e->env->bcc, np->data);
}
STAILQ_FOREACH(np, &cc_list, entries)
{
mutt_addrlist_parse(&e->env->cc, np->data);
}
mutt_list_free(&bcc_list);
mutt_list_free(&cc_list);
}
/* Check for a batch send. */
if (!isatty(0) || !STAILQ_EMPTY(&queries) || !STAILQ_EMPTY(&alias_queries) ||
dump_variables || batch_mode)
{
OptNoCurses = true;
sendflags = SEND_BATCH;
MuttLogger = log_disp_terminal;
log_queue_flush(log_disp_terminal);
}
/* Check to make sure stdout is available in curses mode. */
if (!OptNoCurses && !isatty(1))
goto main_curses;
/* Always create the mutt_windows because batch mode has some shared code
* paths that end up referencing them. */
rootwin_new();
/* This must come before mutt_init() because curses needs to be started
* before calling the init_pair() function to set the color scheme. */
if (!OptNoCurses)
{
int crc = start_curses();
if (crc != 0)
goto main_curses; // TEST08: can't test -- fake term?
/* check whether terminal status is supported (must follow curses init) */
TsSupported = mutt_ts_capability();
rootwin_set_size(COLS, LINES);
}
/* set defaults and read init files */
int rc2 = mutt_init(cs, flags & MUTT_CLI_NOSYSRC, &commands);
if (rc2 != 0)
goto main_curses;
mutt_init_abort_key();
/* The command line overrides the config */
if (dlevel)
cs_str_reset(cs, "debug_level", NULL);
if (dfile)
cs_str_reset(cs, "debug_file", NULL);
if (mutt_log_start() < 0)
{
mutt_perror("log file");
goto main_exit;
}
#ifdef USE_NNTP
{
/* "$news_server" precedence: command line, config file, environment, system file */
if (!cli_nntp)
cli_nntp = cs_subset_string(NeoMutt->sub, "news_server");
if (!cli_nntp)
cli_nntp = mutt_str_getenv("NNTPSERVER");
if (!cli_nntp)
{
char buf[1024] = { 0 };
cli_nntp = mutt_file_read_keyword(SYSCONFDIR "/nntpserver", buf, sizeof(buf));
}
if (cli_nntp)
{
cs_str_initial_set(cs, "news_server", cli_nntp, NULL);
cs_str_reset(cs, "news_server", NULL);
}
}
#endif
/* Initialize crypto backends. */
crypt_init();
if (new_type)
{
struct Buffer err = mutt_buffer_make(0);
int r = cs_str_initial_set(cs, "mbox_type", new_type, &err);
if (CSR_RESULT(r) != CSR_SUCCESS)
{
mutt_error(err.data);
mutt_buffer_dealloc(&err);
goto main_curses;
}
cs_str_reset(cs, "mbox_type", NULL);
}
if (!STAILQ_EMPTY(&queries))
{
rc = mutt_query_variables(&queries, one_liner);
goto main_curses;
}
if (dump_variables)
{
ConfigDumpFlags cdflags = CS_DUMP_NO_FLAGS;
if (hide_sensitive)
cdflags |= CS_DUMP_HIDE_SENSITIVE;
if (one_liner)
cdflags |= CS_DUMP_SHOW_DOCS;
dump_config(cs, cdflags, stdout);
goto main_ok; // TEST18: neomutt -D
}
if (!STAILQ_EMPTY(&alias_queries))
{
rc = 0;
for (; optind < argc; optind++)
mutt_list_insert_tail(&alias_queries, mutt_str_dup(argv[optind]));
struct ListNode *np = NULL;
STAILQ_FOREACH(np, &alias_queries, entries)
{
struct AddressList *al = alias_lookup(np->data);
if (al)
{
/* output in machine-readable form */
mutt_addrlist_to_intl(al, NULL);
mutt_addrlist_write_file(al, stdout, 0, false);
}
else
{
rc = 1;
printf("%s\n", np->data); // TEST19: neomutt -A unknown
}
}
mutt_list_free(&alias_queries);
goto main_curses; // TEST20: neomutt -A alias
}
if (!OptNoCurses)
{
mutt_curses_set_color_by_id(MT_COLOR_NORMAL);
clear();
MuttLogger = log_disp_curses;
log_queue_flush(log_disp_curses);
log_queue_set_max_size(100);
}
#ifdef USE_AUTOCRYPT
/* Initialize autocrypt after curses messages are working,
* because of the initial account setup screens. */
const bool c_autocrypt = cs_subset_bool(NeoMutt->sub, "autocrypt");
if (c_autocrypt)
mutt_autocrypt_init(!(sendflags & SEND_BATCH));
#endif
/* Create the `$folder` directory if it doesn't exist. */
const char *const c_folder = cs_subset_string(NeoMutt->sub, "folder");
if (!OptNoCurses && c_folder)
{
struct stat st = { 0 };
struct Buffer *fpath = mutt_buffer_pool_get();
mutt_buffer_strcpy(fpath, c_folder);
mutt_buffer_expand_path(fpath);
bool skip = false;
#ifdef USE_IMAP
/* we're not connected yet - skip mail folder creation */
skip |= (imap_path_probe(mutt_buffer_string(fpath), NULL) == MUTT_IMAP);
#endif
#ifdef USE_POP
skip |= (pop_path_probe(mutt_buffer_string(fpath), NULL) == MUTT_POP);
#endif
#ifdef USE_NNTP
skip |= (nntp_path_probe(mutt_buffer_string(fpath), NULL) == MUTT_NNTP);
#endif
if (!skip && (stat(mutt_buffer_string(fpath), &st) == -1) && (errno == ENOENT))
{
char msg2[256];
snprintf(msg2, sizeof(msg2), _("%s does not exist. Create it?"), c_folder);
if (mutt_yesorno(msg2, MUTT_YES) == MUTT_YES)
{
if ((mkdir(mutt_buffer_string(fpath), 0700) == -1) && (errno != EEXIST))
mutt_error(_("Can't create %s: %s"), c_folder, strerror(errno)); // TEST21: neomutt -n -F /dev/null (and ~/Mail doesn't exist)
}
}
mutt_buffer_pool_release(&fpath);
}
if (batch_mode)
{
goto main_ok; // TEST22: neomutt -B
}
notify_observer_add(NeoMutt->notify, NT_CONFIG, main_hist_observer, NULL);
notify_observer_add(NeoMutt->notify, NT_CONFIG, main_log_observer, NULL);
notify_observer_add(NeoMutt->notify, NT_CONFIG, main_config_observer, NULL);
if (sendflags & SEND_POSTPONED)
{
if (!OptNoCurses)
mutt_flushinp();
if (mutt_send_message(SEND_POSTPONED, NULL, NULL, NULL, NULL, NeoMutt->sub) == 0)
rc = 0;
// TEST23: neomutt -p (postponed message, cancel)
// TEST24: neomutt -p (no postponed message)
log_queue_empty();
repeat_error = true;
goto main_curses;
}
else if (subject || e || draft_file || include_file ||
!STAILQ_EMPTY(&attach) || (optind < argc))
{
FILE *fp_in = NULL;
FILE *fp_out = NULL;
char *infile = NULL;
char *bodytext = NULL;
const char *bodyfile = NULL;
int rv = 0;
if (!OptNoCurses)
mutt_flushinp();
if (!e)
e = email_new();
if (!e->env)
e->env = mutt_env_new();
for (i = optind; i < argc; i++)
{
if (url_check_scheme(argv[i]) == U_MAILTO)
{
if (!mutt_parse_mailto(e->env, &bodytext, argv[i]))
{
mutt_error(_("Failed to parse mailto: link"));
email_free(&e);
goto main_curses; // TEST25: neomutt mailto:?
}
}
else
mutt_addrlist_parse(&e->env->to, argv[i]);
}
const bool c_auto_edit = cs_subset_bool(NeoMutt->sub, "auto_edit");
if (!draft_file && c_auto_edit && TAILQ_EMPTY(&e->env->to) &&
TAILQ_EMPTY(&e->env->cc))
{
mutt_error(_("No recipients specified"));
email_free(&e);
goto main_curses; // TEST26: neomutt -s test (with auto_edit=yes)
}
if (subject)