(BWDIC!) Allow `source' in `call'ed macros..
[s-mailx.git] / main.c
blob62793b07420ae2382693b220e4e417586eb35d29
1 /*@ S-nail - a mail user agent derived from Berkeley Mail.
2 *@ Startup and initialization.
3 *@ This file is also used to materialize externals.
5 * Copyright (c) 2000-2004 Gunnar Ritter, Freiburg i. Br., Germany.
6 * Copyright (c) 2012 - 2015 Steffen (Daode) Nurpmeso <sdaoden@users.sf.net>.
7 */
8 /*
9 * Copyright (c) 1980, 1993
10 * The Regents of the University of California. All rights reserved.
12 * Redistribution and use in source and binary forms, with or without
13 * modification, are permitted provided that the following conditions
14 * are met:
15 * 1. Redistributions of source code must retain the above copyright
16 * notice, this list of conditions and the following disclaimer.
17 * 2. Redistributions in binary form must reproduce the above copyright
18 * notice, this list of conditions and the following disclaimer in the
19 * documentation and/or other materials provided with the distribution.
20 * 3. Neither the name of the University nor the names of its contributors
21 * may be used to endorse or promote products derived from this software
22 * without specific prior written permission.
24 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
25 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
26 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
27 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
28 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
29 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
30 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
31 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
32 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
33 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
34 * SUCH DAMAGE.
36 #undef n_FILE
37 #define n_FILE main
38 #define n_MAIN_SOURCE
40 #include "nail.h"
42 #include <sys/ioctl.h>
44 #include <pwd.h>
46 #ifdef HAVE_NL_LANGINFO
47 # include <langinfo.h>
48 #endif
49 #ifdef HAVE_SETLOCALE
50 # include <locale.h>
51 #endif
53 struct a_arg {
54 struct a_arg *aa_next;
55 char *aa_file;
58 /* (extern, but not with amalgamation, so define here) */
59 VL char const weekday_names[7 + 1][4] = {
60 "Sun", "Mon", "Tue", "Wed", "Thu", "Fri", "Sat", ""
62 VL char const month_names[12 + 1][4] = {
63 "Jan", "Feb", "Mar", "Apr", "May", "Jun",
64 "Jul", "Aug", "Sep", "Oct", "Nov", "Dec", ""
66 VL char const uagent[sizeof UAGENT] = UAGENT;
67 VL uc_i const class_char[1 + 0x7F] = {
68 /* 000 nul 001 soh 002 stx 003 etx 004 eot 005 enq 006 ack 007 bel */
69 C_CNTRL, C_CNTRL, C_CNTRL, C_CNTRL, C_CNTRL, C_CNTRL, C_CNTRL, C_CNTRL,
70 /* 010 bs 011 ht 012 nl 013 vt 014 np 015 cr 016 so 017 si */
71 C_CNTRL, C_BLANK, C_WHITE, C_SPACE, C_SPACE, C_SPACE, C_CNTRL, C_CNTRL,
72 /* 020 dle 021 dc1 022 dc2 023 dc3 024 dc4 025 nak 026 syn 027 etb */
73 C_CNTRL, C_CNTRL, C_CNTRL, C_CNTRL, C_CNTRL, C_CNTRL, C_CNTRL, C_CNTRL,
74 /* 030 can 031 em 032 sub 033 esc 034 fs 035 gs 036 rs 037 us */
75 C_CNTRL, C_CNTRL, C_CNTRL, C_CNTRL, C_CNTRL, C_CNTRL, C_CNTRL, C_CNTRL,
76 /* 040 sp 041 ! 042 " 043 # 044 $ 045 % 046 & 047 ' */
77 C_BLANK, C_PUNCT, C_PUNCT, C_PUNCT, C_PUNCT, C_PUNCT, C_PUNCT, C_PUNCT,
78 /* 050 ( 051 ) 052 * 053 + 054 , 055 - 056 . 057 / */
79 C_PUNCT, C_PUNCT, C_PUNCT, C_PUNCT, C_PUNCT, C_PUNCT, C_PUNCT, C_PUNCT,
80 /* 060 0 061 1 062 2 063 3 064 4 065 5 066 6 067 7 */
81 C_OCTAL, C_OCTAL, C_OCTAL, C_OCTAL, C_OCTAL, C_OCTAL, C_OCTAL, C_OCTAL,
82 /* 070 8 071 9 072 : 073 ; 074 < 075 = 076 > 077 ? */
83 C_DIGIT, C_DIGIT, C_PUNCT, C_PUNCT, C_PUNCT, C_PUNCT, C_PUNCT, C_PUNCT,
84 /* 100 @ 101 A 102 B 103 C 104 D 105 E 106 F 107 G */
85 C_PUNCT, C_UPPER, C_UPPER, C_UPPER, C_UPPER, C_UPPER, C_UPPER, C_UPPER,
86 /* 110 H 111 I 112 J 113 K 114 L 115 M 116 N 117 O */
87 C_UPPER, C_UPPER, C_UPPER, C_UPPER, C_UPPER, C_UPPER, C_UPPER, C_UPPER,
88 /* 120 P 121 Q 122 R 123 S 124 T 125 U 126 V 127 W */
89 C_UPPER, C_UPPER, C_UPPER, C_UPPER, C_UPPER, C_UPPER, C_UPPER, C_UPPER,
90 /* 130 X 131 Y 132 Z 133 [ 134 \ 135 ] 136 ^ 137 _ */
91 C_UPPER, C_UPPER, C_UPPER, C_PUNCT, C_PUNCT, C_PUNCT, C_PUNCT, C_PUNCT,
92 /* 140 ` 141 a 142 b 143 c 144 d 145 e 146 f 147 g */
93 C_PUNCT, C_LOWER, C_LOWER, C_LOWER, C_LOWER, C_LOWER, C_LOWER, C_LOWER,
94 /* 150 h 151 i 152 j 153 k 154 l 155 m 156 n 157 o */
95 C_LOWER, C_LOWER, C_LOWER, C_LOWER, C_LOWER, C_LOWER, C_LOWER, C_LOWER,
96 /* 160 p 161 q 162 r 163 s 164 t 165 u 166 v 167 w */
97 C_LOWER, C_LOWER, C_LOWER, C_LOWER, C_LOWER, C_LOWER, C_LOWER, C_LOWER,
98 /* 170 x 171 y 172 z 173 { 174 | 175 } 176 ~ 177 del */
99 C_LOWER, C_LOWER, C_LOWER, C_PUNCT, C_PUNCT, C_PUNCT, C_PUNCT, C_CNTRL
102 /* Our own little getopt(3) */
103 static char *_oarg;
104 static int _oind, /*_oerr,*/ _oopt;
106 /* Our own little getopt(3); note --help is special-treated as 'h' */
107 static int _getopt(int argc, char * const argv[], char const *optstring);
109 /* Perform basic startup initialization */
110 static void _startup(void);
112 /* Grow a char** */
113 static size_t _grow_cpp(char const ***cpp, size_t newsize, size_t oldcnt);
115 /* Initialize *tempdir*, *myname*, *homedir* */
116 static void _setup_vars(void);
118 /* We're in an interactive session - compute what the screen size for printing
119 * headers etc. should be; notify tty upon resize if *is_sighdl* is not 0.
120 * We use the following algorithm for the height:
121 * If baud rate < 1200, use 9
122 * If baud rate = 1200, use 14
123 * If baud rate > 1200, use 24 or ws_row
124 * Width is either 80 or ws_col */
125 static void _setscreensize(int is_sighdl);
127 /* Ok, we are reading mail. Decide whether we are editing a mailbox or reading
128 * the system mailbox, and open up the right stuff */
129 static int _rcv_mode(char const *folder, char const *Larg);
131 /* Interrupt printing of the headers */
132 static void _hdrstop(int signo);
134 static int
135 _getopt(int argc, char * const argv[], char const *optstring)
137 static char const *lastp;
139 int rv = -1/*, colon*/;
140 char const *curp;
141 NYD_ENTER;
143 _oarg = NULL;
145 /*if ((colon = (optstring[0] == ':')))
146 ++optstring;*/
148 if (lastp != NULL) {
149 curp = lastp;
150 lastp = NULL;
151 } else {
152 if (_oind >= argc || argv[_oind] == NULL || argv[_oind][0] != '-' ||
153 argv[_oind][1] == '\0')
154 goto jleave;
155 if (argv[_oind][1] == '-' && argv[_oind][2] == '\0') {
156 /* We need this in for MTA arg detection (easier) ++_oind;*/
157 goto jleave;
159 curp = &argv[_oind][1];
162 for(_oopt = curp[0]; optstring[0] != '\0';){
163 if(optstring[0] != _oopt){
164 optstring += 1 + (optstring[1] == ':');
165 continue;
168 if (optstring[1] == ':') {
169 if (curp[1] != '\0') {
170 _oarg = UNCONST(curp + 1);
171 ++_oind;
172 } else {
173 if ((_oind += 2) > argc) {
174 /*if (!colon *//*&& _oerr*//*)*/ {
175 n_err(_("%s: option requires an argument -- %c\n"),
176 argv[0], (char)_oopt);
178 rv = (/*colon ? ':' :*/ '?');
179 goto jleave;
181 _oarg = argv[_oind - 1];
183 } else {
184 if (curp[1] != '\0')
185 lastp = curp + 1;
186 else
187 ++_oind;
189 rv = _oopt;
190 goto jleave;
193 /* Special support for --help, which is quite common */
194 if (_oopt == '-' && !strcmp(curp, "-help") && curp - 1 == argv[_oind]) {
195 ++_oind;
196 rv = 'h';
197 goto jleave;
200 /* Definitive error */
201 /*if (!colon *//*&& opterr*//*)*/
202 n_err(_("%s: invalid option -- %c\n"), argv[0], _oopt);
203 if (curp[1] != '\0')
204 lastp = curp + 1;
205 else
206 ++_oind;
207 _oarg = NULL;
208 rv = '?';
209 jleave:
210 NYD_LEAVE;
211 return rv;
214 static void
215 _startup(void)
217 char *cp;
218 NYD_ENTER;
220 image = -1;
221 dflpipe = SIG_DFL;
222 _oind = /*_oerr =*/ 1;
224 if ((cp = strrchr(progname, '/')) != NULL)
225 progname = ++cp;
227 /* Set up a reasonable environment */
229 #ifdef HAVE_NYD
230 safe_signal(SIGABRT, &_nyd_oncrash);
231 # ifdef SIGBUS
232 safe_signal(SIGBUS, &_nyd_oncrash);
233 # endif
234 safe_signal(SIGFPE, &_nyd_oncrash);
235 safe_signal(SIGILL, &_nyd_oncrash);
236 safe_signal(SIGSEGV, &_nyd_oncrash);
237 #endif
238 command_manager_start();
240 if (isatty(STDIN_FILENO)) /* TODO should be isatty(0) && isatty(2)?? */
241 options |= OPT_TTYIN;
242 if (isatty(STDOUT_FILENO))
243 options |= OPT_TTYOUT;
244 if ((options & (OPT_TTYIN | OPT_TTYOUT)) == (OPT_TTYIN | OPT_TTYOUT)) {
245 options |= OPT_INTERACTIVE;
246 safe_signal(SIGPIPE, dflpipe = SIG_IGN);
249 /* -- >8 -- 8< -- */
251 /* Define defaults for internal variables, based on POSIX 2008/Cor 1-2013 */
252 /* (Keep in sync:
253 * ./main.c:_startup(), ./nail.rc, ./nail.1:"Initial settings") */
254 /* noallnet */
255 /* noappend */
256 ok_bset(asksub, TRU1);
257 /* noaskbcc */
258 /* noaskcc */
259 /* noautoprint */
260 /* nobang */
261 /* nocmd */
262 /* nocrt */
263 /* nodebug */
264 /* nodot */
265 /* ok_vset(escape, ESCAPE *"~"*); TODO non-compliant */
266 /* noflipr */
267 /* nofolder */
268 ok_bset(header, TRU1);
269 /* nohold */
270 /* noignore */
271 /* noignoreeof */
272 /* nokeep */
273 /* nokeepsave */
274 /* nometoo */
275 /* noonehop -- Note: we ignore this one */
276 /* nooutfolder */
277 /* nopage */
278 ok_vset(prompt, "\\& "); /* POSIX "? " unless *bsdcompat*, then "& " */
279 /* noquiet */
280 /* norecord */
281 ok_bset(save, TRU1);
282 /* nosendwait */
283 /* noshowto */
284 /* nosign */
285 /* noSign */
286 /* ok_vset(toplines, "5"); XXX somewhat hmm */
288 /* TODO until we have an automatic mechanism for that, set some more
289 * TODO variables so that users see the internal fallback settings
290 * TODO (something like "defval=X,notempty=1") */
291 do {
292 char const *vp;
294 vp = env_vlook("SHELL", TRU1);
295 ok_vset(SHELL, (vp != NULL ? vp : XSHELL));
297 vp = env_vlook("LISTER", TRU1);
298 ok_vset(LISTER, (vp != NULL ? vp : XLISTER));
300 vp = env_vlook("PAGER", TRU1);
301 ok_vset(PAGER, (vp != NULL ? vp : XPAGER));
303 ok_vset(sendmail, SENDMAIL);
304 ok_vset(sendmail_progname, SENDMAIL_PROGNAME);
305 } while (0);
307 /* -- >8 -- 8< -- */
309 #ifdef HAVE_SETLOCALE
310 setlocale(LC_ALL, "");
311 mb_cur_max = MB_CUR_MAX;
312 # ifdef HAVE_NL_LANGINFO
313 if (ok_vlook(ttycharset) == NULL && (cp = nl_langinfo(CODESET)) != NULL)
314 ok_vset(ttycharset, cp);
315 # endif
317 # ifdef HAVE_C90AMEND1
318 if (mb_cur_max > 1) {
319 wchar_t wc;
320 if (mbtowc(&wc, "\303\266", 2) == 2 && wc == 0xF6 &&
321 mbtowc(&wc, "\342\202\254", 3) == 3 && wc == 0x20AC)
322 options |= OPT_UNICODE;
323 /* Reset possibly messed up state; luckily this also gives us an
324 * indication wether the encoding has locking shift state sequences */
325 /* TODO temporary - use option bits! */
326 if (mbtowc(&wc, NULL, mb_cur_max))
327 options |= OPT_ENC_MBSTATE;
329 # endif
330 #else
331 mb_cur_max = 1;
332 #endif
334 #ifdef HAVE_ICONV
335 iconvd = (iconv_t)-1;
336 #endif
337 NYD_LEAVE;
340 static size_t
341 _grow_cpp(char const ***cpp, size_t newsize, size_t oldcnt)
343 /* Before spreserve(): use our string pool instead of LibC heap */
344 char const **newcpp;
345 NYD_ENTER;
347 newcpp = salloc(sizeof(char*) * newsize);
349 if (oldcnt > 0)
350 memcpy(newcpp, *cpp, oldcnt * sizeof(char*));
351 *cpp = newcpp;
352 NYD_LEAVE;
353 return newsize;
356 static void
357 _setup_vars(void)
359 /* Before spreserve(): use our string pool instead of LibC heap */
360 /* XXX further check paths? */
361 char const *cp;
362 uid_t uid;
363 struct passwd *pwuid, *pw;
364 NYD_ENTER;
366 /* Verify and fixate user identification */
367 if (myname != NULL)
368 cp = myname;
369 else if ((cp = env_vlook("LOGNAME", TRU1)) == NULL)
370 cp = env_vlook("USER", TRU1);
372 group_id = getgid();
373 user_id = uid = getuid();
374 if ((pwuid = getpwuid(uid)) == NULL)
375 n_panic(_("Cannot associate a name with uid %u"), user_id);
377 if (cp == NULL || *cp == '\0')
378 myname = pwuid->pw_name;
379 else if ((pw = getpwnam(cp)) == NULL) {
380 n_alert(_("\"%s\" is not a user of this system"), cp);
381 exit(EXIT_NOUSER);
382 } else {
383 myname = pw->pw_name;
384 if (pw->pw_uid != uid)
385 options |= OPT_u_FLAG;
387 myname = savestr(myname);
388 /* XXX myfullname = pw->pw_gecos[OPTIONAL!] -> GUT THAT; TODO pw_shell */
390 /* */
391 if ((cp = env_vlook("HOME", TRU1)) == NULL)
392 cp = "."; /* XXX User and Login objects; Login: pw->pw_dir */
393 homedir = savestr(cp);
395 tempdir = ((cp = env_vlook("TMPDIR", TRU1)) != NULL)
396 ? savestr(cp) : TMPDIR_FALLBACK;
397 NYD_LEAVE;
400 static void
401 _setscreensize(int is_sighdl) /* TODO global policy; int wraps; minvals! */
403 struct termios tbuf;
404 #ifdef TIOCGWINSZ
405 struct winsize ws;
406 #elif defined TIOCGSIZE
407 struct ttysize ts;
408 #endif
409 NYD_ENTER;
411 scrnheight = realscreenheight = scrnwidth = 0;
413 /* (Also) POSIX: LINES and COLUMNS always override. Adjust this
414 * a little bit to be able to honour resizes during our lifetime and
415 * only honour it upon first run; abuse *is_sighdl* as an indicator */
416 if (!is_sighdl) {
417 char *cp;
418 long i;
420 if ((cp = env_vlook("LINES", FAL0)) != NULL &&
421 (i = strtol(cp, NULL, 10)) > 0 && i < INT_MAX)
422 scrnheight = realscreenheight = (int)i;
423 if ((cp = env_vlook("COLUMNS", FAL0)) != NULL &&
424 (i = strtol(cp, NULL, 10)) > 0 && i < INT_MAX)
425 scrnwidth = (int)i;
427 if (scrnwidth != 0 && scrnheight != 0)
428 goto jleave;
431 #ifdef TIOCGWINSZ
432 if (ioctl(STDOUT_FILENO, TIOCGWINSZ, &ws) == -1)
433 ws.ws_col = ws.ws_row = 0;
434 #elif defined TIOCGSIZE
435 if (ioctl(STDOUT_FILENO, TIOCGSIZE, &ws) == -1)
436 ts.ts_lines = ts.ts_cols = 0;
437 #endif
439 if (scrnheight == 0) {
440 speed_t ospeed = ((tcgetattr(STDOUT_FILENO, &tbuf) == -1)
441 ? B9600 : cfgetospeed(&tbuf));
443 if (ospeed < B1200)
444 scrnheight = 9;
445 else if (ospeed == B1200)
446 scrnheight = 14;
447 #ifdef TIOCGWINSZ
448 else if (ws.ws_row != 0)
449 scrnheight = ws.ws_row;
450 #elif defined TIOCGSIZE
451 else if (ts.ts_lines != 0)
452 scrnheight = ts.ts_lines;
453 #endif
454 else
455 scrnheight = 24;
457 #if defined TIOCGWINSZ || defined TIOCGSIZE
458 if (0 ==
459 # ifdef TIOCGWINSZ
460 (realscreenheight = ws.ws_row)
461 # else
462 (realscreenheight = ts.ts_lines)
463 # endif
465 realscreenheight = 24;
466 #endif
469 if (scrnwidth == 0 && 0 ==
470 #ifdef TIOCGWINSZ
471 (scrnwidth = ws.ws_col)
472 #elif defined TIOCGSIZE
473 (scrnwidth = ts.ts_cols)
474 #endif
476 scrnwidth = 80;
478 jleave:
479 #ifdef SIGWINCH
480 if (is_sighdl && (options & OPT_INTERACTIVE))
481 n_tty_signal(SIGWINCH);
482 #endif
483 NYD_LEAVE;
486 static sigjmp_buf __hdrjmp; /* XXX */
488 static int
489 _rcv_mode(char const *folder, char const *Larg)
491 int i;
492 sighandler_type prevint;
493 NYD_ENTER;
495 if (folder == NULL)
496 folder = "%";
498 if (options & OPT_QUICKRUN_MASK)
499 i = FEDIT_RDONLY;
500 else
501 i = FEDIT_NONE;
502 i = setfile(folder, i);
503 if (i < 0) {
504 exit_status = EXIT_ERR; /* error already reported */
505 goto jquit;
507 if (options & OPT_QUICKRUN_MASK) {
508 exit_status = i;
509 if (i == EXIT_OK && (!(options & OPT_EXISTONLY) ||
510 (options & OPT_HEADERLIST)))
511 print_header_summary(Larg);
512 goto jquit;
514 check_folder_hook(FAL0);
516 if (i > 0 && !ok_blook(emptystart)) {
517 exit_status = EXIT_ERR;
518 goto jleave;
521 if (sigsetjmp(__hdrjmp, 1) == 0) {
522 if ((prevint = safe_signal(SIGINT, SIG_IGN)) != SIG_IGN)
523 safe_signal(SIGINT, _hdrstop);
524 if (!(options & OPT_N_FLAG)) {
525 if (!ok_blook(quiet))
526 printf(_("%s version %s. Type ? for help.\n"),
527 (ok_blook(bsdcompat) ? "Mail" : uagent), ok_vlook(version));
528 announce(1);
529 fflush(stdout);
531 safe_signal(SIGINT, prevint);
534 /* Enter the command loop */
535 if (options & OPT_INTERACTIVE)
536 n_tty_init();
537 n_commands();
538 if (options & OPT_INTERACTIVE)
539 n_tty_destroy();
541 if (mb.mb_type == MB_FILE || mb.mb_type == MB_MAILDIR) {
542 safe_signal(SIGHUP, SIG_IGN);
543 safe_signal(SIGINT, SIG_IGN);
544 safe_signal(SIGQUIT, SIG_IGN);
546 jquit:
547 save_mbox_for_possible_quitstuff();
548 quit();
549 jleave:
550 NYD_LEAVE;
551 return exit_status;
554 static void
555 _hdrstop(int signo)
557 NYD_X; /* Signal handler */
558 UNUSED(signo);
560 fflush(stdout);
561 n_err_sighdl(_("\nInterrupt\n"));
562 siglongjmp(__hdrjmp, 1);
566 main(int argc, char *argv[]){
567 static char const optstr[] = "A:a:Bb:c:dEeFfHhiL:NnO:q:Rr:S:s:tu:VvX:::~#.",
568 usagestr[] = N_(
569 "Synopsis:\n"
570 " %s -h | --help\n"
571 " %s [-BdEFintv~] [-: spec] [-A account]\n"
572 "\t [-a attachment] [-b bcc-address] [-c cc-address]\n"
573 "\t [-q file] [-r from-address] [-S var[=value]..]\n"
574 "\t [-s subject] [-X cmd] [-.] to-address.. [-- mta-option..]\n"
575 " %s [-BdEeHiNnRv~#] [-: spec] [-A account]\n"
576 "\t [-L spec-list] [-r from-address] [-S var[=value]..]\n"
577 "\t [-X cmd] -f [file] [-- mta-option..]\n"
578 " %s [-BdEeHiNnRv~#] [-: spec] [-A account]\n"
579 "\t [-L spec-list] [-r from-address] [-S var[=value]..]\n"
580 "\t [-u user] [-X cmd] [-- mta-option..]\n"
582 #define _USAGE_ARGS , progname, progname, progname, progname
584 struct a_arg *a_head, *a_curr;
585 struct name *to, *cc, *bcc;
586 struct attachment *attach;
587 char *cp, *subject, *qf, *Aarg, *Larg;
588 char const *okey, **oargs, **Xargs, *folder, *emsg;
589 size_t oargs_size, oargs_cnt, Xargs_size, Xargs_cnt, smopts_size;
590 enum{
591 a_RF_NONE = 0,
592 a_RF_SET = 1<<0,
593 a_RF_SYSTEM = 1<<1,
594 a_RF_USER = 1<<2,
595 a_RF_ALL = a_RF_SYSTEM | a_RF_USER
596 } resfiles;
597 int i;
598 NYD_ENTER;
600 a_head = NULL;
601 UNINIT(a_curr, NULL);
602 to = cc = bcc = NULL;
603 attach = NULL;
604 cp = subject = qf =
605 Aarg = Larg = NULL;
606 oargs = Xargs = NULL;
607 folder = emsg = NULL;
608 oargs_size = oargs_cnt = Xargs_size = Xargs_cnt = smopts_size = 0;
609 resfiles = a_RF_ALL;
612 * Start our lengthy setup, finalize by setting PS_STARTED
615 progname = argv[0];
616 _startup();
618 /* Command line parsing
619 * Variable settings need to be done twice, since the user surely wants the
620 * setting to take effect immediately, but also doesn't want it to be
621 * overwritten from within resource files */
622 while ((i = _getopt(argc, argv, optstr)) >= 0) {
623 switch (i) {
624 case 'A':
625 /* Execute an account command later on */
626 Aarg = _oarg;
627 break;
628 case 'a':
629 options |= OPT_SENDMODE;
630 { struct a_arg *nap = salloc(sizeof(struct a_arg));
631 if (a_head == NULL)
632 a_head = nap;
633 else
634 a_curr->aa_next = nap;
635 nap->aa_next = NULL;
636 nap->aa_file = _oarg;
637 a_curr = nap;
639 break;
640 case 'B':
641 /* Make 0/1 line buffered */
642 setvbuf(stdin, NULL, _IOLBF, 0);
643 setvbuf(stdout, NULL, _IOLBF, 0);
644 break;
645 case 'b':
646 /* Get Blind Carbon Copy Recipient list */
647 options |= OPT_SENDMODE;
648 bcc = cat(bcc, lextract(_oarg, GBCC | GFULL));
649 break;
650 case 'c':
651 /* Get Carbon Copy Recipient list */
652 options |= OPT_SENDMODE;
653 cc = cat(cc, lextract(_oarg, GCC | GFULL));
654 break;
655 case 'd':
656 ok_bset(debug, TRU1);
657 okey = "debug";
658 goto joarg;
659 case 'E':
660 ok_bset(skipemptybody, TRU1);
661 okey = "skipemptybody";
662 goto joarg;
663 case 'e':
664 options |= OPT_EXISTONLY;
665 break;
666 case 'F':
667 options |= OPT_F_FLAG | OPT_SENDMODE;
668 break;
669 case 'f':
670 /* User is specifying file to "edit" with Mail, as opposed to reading
671 * system mailbox. If no argument is given, we read his mbox file.
672 * Check for remaining arguments later */
673 folder = "&";
674 break;
675 case 'H':
676 options |= OPT_HEADERSONLY;
677 break;
678 case 'h':
679 n_err(V_(usagestr) _USAGE_ARGS);
680 goto j_leave;
681 case 'i':
682 /* Ignore interrupts */
683 ok_bset(ignore, TRU1);
684 okey = "ignore";
685 goto joarg;
686 case 'L':
687 Larg = _oarg;
688 options |= OPT_HEADERLIST;
689 if (*Larg == '"' || *Larg == '\'') { /* TODO list.c:listspec_check() */
690 size_t j = strlen(++Larg);
691 if (j > 0)
692 Larg[j - 1] = '\0';
694 break;
695 case 'N':
696 /* Avoid initial header printing */
697 ok_bset(header, FAL0);
698 okey = "noheader";
699 goto joarg;
700 case 'n':
701 /* Don't source "unspecified system start-up file" */
702 if(resfiles & a_RF_SET){
703 emsg = N_("-n cannot be used in conjunction with -:");
704 goto jusage;
706 resfiles = a_RF_USER;
707 break;
708 case 'O':
709 /* Additional options to pass-through to MTA TODO v15-compat legacy */
710 if (smopts_cnt == smopts_size)
711 smopts_size = _grow_cpp(&smopts, smopts_size + 8, smopts_cnt);
712 smopts[smopts_cnt++] = _oarg;
713 break;
714 case 'q':
715 /* Quote file TODO drop? -Q with real quote?? what ? */
716 options |= OPT_SENDMODE;
717 /* Allow for now, we have to special check validity of -q- later on! */
718 qf = (_oarg[0] == '-' && _oarg[1] == '\0') ? (char*)-1 : _oarg;
719 break;
720 case 'R':
721 /* Open folders read-only */
722 options |= OPT_R_FLAG;
723 break;
724 case 'r':
725 /* Set From address. */
726 options |= OPT_r_FLAG;
727 if (_oarg[0] != '\0') {
728 struct name *fa = nalloc(_oarg, GSKIN | GFULL | GFULLEXTRA);
730 if (is_addr_invalid(fa, EACM_STRICT | EACM_NOLOG)) {
731 emsg = N_("Invalid address argument with -r");
732 goto jusage;
734 option_r_arg = fa;
735 /* TODO -r options is set in smopts, but may
736 * TODO be overwritten by setting from= in
737 * TODO an interactive session!
738 * TODO Maybe disable setting of from?
739 * TODO Warn user? Update manual!! */
740 okey = savecat("from=", fa->n_fullname);
741 goto joarg;
743 break;
744 case 'S':
745 /* Set variable (twice) */
746 { char *a[2];
747 okey = a[0] = _oarg;
748 a[1] = NULL;
749 c_set(a);
751 joarg:
752 if (oargs_cnt == oargs_size)
753 oargs_size = _grow_cpp(&oargs, oargs_size + 8, oargs_cnt);
754 oargs[oargs_cnt++] = okey;
755 break;
756 case 's':
757 /* Subject: */
758 subject = _oarg;
759 options |= OPT_SENDMODE;
760 break;
761 case 't':
762 /* Read defined set of headers from mail to be sent */
763 options |= OPT_SENDMODE | OPT_t_FLAG;
764 break;
765 case 'u':
766 /* Set user name to pretend to be; don't set OPT_u_FLAG yet, this is
767 * done as necessary in _setup_vars() above */
768 myname = _oarg;
769 break;
770 case 'V':
771 puts(ok_vlook(version));
772 exit(EXIT_OK);
773 /* NOTREACHED */
774 case 'v':
775 /* Be verbose */
776 ok_bset(verbose, TRU1);
777 okey = "verbose";
778 goto joarg;
779 case 'X':
780 /* Add to list of commands to exec before entering normal operation */
781 if (Xargs_cnt == Xargs_size)
782 Xargs_size = _grow_cpp(&Xargs, Xargs_size + 8, Xargs_cnt);
783 Xargs[Xargs_cnt++] = _oarg;
784 break;
785 case ':':
786 /* Control which resource files shall be loaded */
787 if(!(resfiles & (a_RF_SET | a_RF_SYSTEM))){
788 emsg = N_("-n cannot be used in conjunction with -:");
789 goto jusage;
791 resfiles = a_RF_SET;
792 while((i = *_oarg++) != '\0')
793 switch(i){
794 case 'S': case 's': resfiles |= a_RF_SYSTEM; break;
795 case 'U': case 'u': resfiles |= a_RF_USER; break;
796 case ':': case '/': resfiles &= ~a_RF_ALL; break;
797 default:
798 emsg = N_("Invalid argument of -:");
799 goto jusage;
801 break;
802 case '~':
803 /* Enable tilde escapes even in non-interactive mode */
804 options |= OPT_TILDE_FLAG;
805 break;
806 case '#':
807 /* Work in batch mode, even if non-interactive */
808 if (oargs_cnt + 5 >= oargs_size)
809 oargs_size = _grow_cpp(&oargs, oargs_size + 8, oargs_cnt);
810 options |= OPT_TILDE_FLAG | OPT_BATCH_FLAG;
811 folder = "/dev/null";
812 ok_bset(emptystart, TRU1);
813 ok_bset(header, FAL0);
814 ok_bset(quiet, TRU1);
815 ok_bset(sendwait, TRU1);
816 ok_vset(MBOX, folder);
817 oargs[oargs_cnt + 0] = "emptystart";
818 oargs[oargs_cnt + 1] = "noheader";
819 oargs[oargs_cnt + 2] = "quiet";
820 oargs[oargs_cnt + 3] = "sendwait";
821 oargs[oargs_cnt + 4] = "MBOX=/dev/null";
822 oargs_cnt += 5;
823 break;
824 case '.':
825 options |= OPT_SENDMODE;
826 goto jgetopt_done;
827 case '?':
828 jusage:
829 if (emsg != NULL)
830 n_err("%s\n", V_(emsg));
831 n_err(V_(usagestr) _USAGE_ARGS);
832 #undef _USAGE_ARGS
833 exit_status = EXIT_USE;
834 goto j_leave;
837 jgetopt_done:
840 /* The normal arguments may be followed by MTA arguments after a "--";
841 * however, -f may take off an argument, too, and before that.
842 * Since MTA arguments after "--" require *expandargv*, delay parsing off
843 * those options until after the resource files are loaded... */
844 if ((cp = argv[i = _oind]) == NULL)
846 else if (cp[0] == '-' && cp[1] == '-' && cp[2] == '\0')
847 ++i;
848 /* OPT_BATCH_FLAG sets to /dev/null, but -f can still be used and sets & */
849 else if (folder != NULL && folder[1] == '\0') {
850 folder = cp;
851 if ((cp = argv[++i]) != NULL) {
852 if (cp[0] != '-' || cp[1] != '-' || cp[2] != '\0') {
853 emsg = N_("More than one file given with -f");
854 goto jusage;
856 ++i;
858 } else {
859 options |= OPT_SENDMODE;
860 for (;;) {
861 to = cat(to, lextract(cp, GTO | GFULL));
862 if ((cp = argv[++i]) == NULL)
863 break;
864 if (cp[0] == '-' && cp[1] == '-' && cp[2] == '\0') {
865 ++i;
866 break;
870 _oind = i;
872 /* ...BUT, since we use salloc() for the MTA smopts storage we need to
873 * allocate the necessary space for them before we call spreserve()! */
874 while (argv[i] != NULL)
875 ++i;
876 if (smopts_cnt + i > smopts_size)
877 DBG(smopts_size =) _grow_cpp(&smopts, smopts_cnt + i + 1, smopts_cnt);
879 /* Check for inconsistent arguments */
880 if (options & OPT_SENDMODE) {
881 /* XXX This is only because BATCH_FLAG sets *folder*=/dev/null
882 * XXX in order to function. Ideally that would not be needed */
883 if (folder != NULL && !(options & OPT_BATCH_FLAG)) {
884 emsg = N_("Cannot give -f and people to send to.");
885 goto jusage;
887 if (myname != NULL) {
888 emsg = N_("The -u option cannot be used in send mode");
889 goto jusage;
891 if (!(options & OPT_t_FLAG) && to == NULL) {
892 emsg = N_("Send options without primary recipient specified.");
893 goto jusage;
895 if ((options & OPT_t_FLAG) && qf != NULL) {
896 emsg = N_("-t and -q are mutual exclusive.");
897 goto jusage;
899 if (options & (OPT_EXISTONLY | OPT_HEADERSONLY | OPT_HEADERLIST)) {
900 emsg = N_("The -e, -H and -L options cannot be used in send mode.");
901 goto jusage;
903 if (options & OPT_R_FLAG) {
904 emsg = N_("The -R option is meaningless in send mode.");
905 goto jusage;
907 } else {
908 if (folder != NULL && myname != NULL) {
909 emsg = N_("The options -f and -u are mutually exclusive");
910 goto jusage;
912 if ((options & (OPT_EXISTONLY | OPT_HEADERSONLY)) ==
913 (OPT_EXISTONLY | OPT_HEADERSONLY)) {
914 emsg = N_("The options -e and -H are mutual exclusive");
915 goto jusage;
917 if ((options & (OPT_HEADERSONLY | OPT_HEADERLIST)) == /* TODO OBSOLETE */
918 (OPT_HEADERSONLY | OPT_HEADERLIST))
919 OBSOLETE(_("please use \"-e -L xy\" instead of \"-H -L xy\""));
923 * Likely to go, perform more setup
926 _setup_vars();
928 if (options & OPT_INTERACTIVE) {
929 /* Now we can finally check wether -q- was given */
930 if (qf == (char*)-1) {
931 emsg = N_("In interactive mode -q cannot use standard input \"-\"\n");
932 goto jusage;
935 _setscreensize(0);
936 #ifdef SIGWINCH
937 # ifndef TTY_WANTS_SIGWINCH
938 if (safe_signal(SIGWINCH, SIG_IGN) != SIG_IGN)
939 # endif
940 safe_signal(SIGWINCH, _setscreensize);
941 #endif
942 } else
943 scrnheight = realscreenheight = 24, scrnwidth = 80;
945 /* Snapshot our string pools. Memory is auto-reclaimed from now on */
946 spreserve();
948 /* load() any resource files */
949 if(resfiles & a_RF_ALL){
950 /* *expand() returns a savestr(), but load only uses the file name for
951 * fopen(), so it's safe to do this */
952 if((resfiles & a_RF_SYSTEM) && !env_blook("NAIL_NO_SYSTEM_RC", TRU1))
953 n_load(SYSCONFDIR "/" SYSCONFRC);
954 if(resfiles & a_RF_USER){
955 if((cp = env_vlook("MAILRC", TRU1)) == NULL)
956 cp = UNCONST(MAILRC);
957 n_load(file_expand(cp));
959 if(env_vlook("NAIL_EXTRA_RC", TRU1) == NULL &&
960 (cp = ok_vlook(NAIL_EXTRA_RC)) != NULL)
961 n_load(file_expand(cp));
964 /* Ensure the -S and other command line options take precedence over
965 * anything that may have been placed in resource files.
966 * Our "ternary binary" option *verbose* needs special treament */
967 if ((options & (OPT_VERB | OPT_VERBVERB)) == OPT_VERB)
968 options &= ~OPT_VERB;
969 /* ..and be silent when unsetting an undefined variable */
970 pstate |= PS_ROBOT;
971 for (i = 0; UICMP(z, i, <, oargs_cnt); ++i) {
972 char const *a[2];
973 a[0] = oargs[i];
974 a[1] = NULL;
975 c_set(a);
977 pstate &= ~PS_ROBOT;
979 /* Additional options to pass-through to MTA, and allowed to do so? */
980 if ((cp = ok_vlook(expandargv)) != NULL) {
981 bool_t isfail = !asccasecmp(cp, "fail"),
982 isrestrict = (!isfail && !asccasecmp(cp, "restrict"));
984 if ((options & OPT_D_V) && !isfail && !isrestrict && *cp != '\0')
985 n_err(_("Unknown *expandargv* value: \"%s\"\n"), cp);
987 if ((cp = argv[i = _oind]) != NULL) {
988 if (isfail ||
989 (isrestrict && !(options & (OPT_INTERACTIVE |OPT_TILDE_FLAG)))) {
990 n_err(_("*expandargv* doesn't allow MTA arguments; consider "
991 "using *sendmail-arguments*\n"));
992 exit_status = EXIT_USE | EXIT_SEND_ERROR;
993 goto jleave;
995 do {
996 assert(smopts_cnt + 1 <= smopts_size);
997 smopts[smopts_cnt++] = cp;
998 } while ((cp = argv[++i]) != NULL);
1002 /* We had to wait until the resource files are loaded and any command line
1003 * setting has been restored, but get the termcap up and going before we
1004 * switch account or running commands */
1005 #ifdef n_HAVE_TCAP
1006 if((options & (OPT_INTERACTIVE | OPT_QUICKRUN_MASK)) == OPT_INTERACTIVE)
1007 n_termcap_init();
1008 #endif
1010 /* Now we can set the account */
1011 if (Aarg != NULL) {
1012 char const *a[2];
1013 a[0] = Aarg;
1014 a[1] = NULL;
1015 c_account(a);
1018 /* "load()" commands given on command line */
1019 if (Xargs_cnt > 0){
1020 Xargs[Xargs_cnt] = NULL;
1021 n_load_Xargs(Xargs);
1025 * We're finally completely setup and ready to go
1027 pstate |= PS_STARTED;
1029 if (options & OPT_DEBUG)
1030 n_err(_("user = %s, homedir = %s\n"), myname, homedir);
1032 if (!(options & OPT_SENDMODE)) {
1033 exit_status = _rcv_mode(folder, Larg);
1034 goto jleave;
1037 /* Now that full mailx(1)-style file expansion is possible handle the
1038 * attachments which we had delayed due to this.
1039 * This may use savestr(), but since we won't enter the command loop we
1040 * don't need to care about that */
1041 for (cp = NULL; a_head != NULL;) {
1042 struct attachment *nahp, *nap;
1044 if ((nahp = add_attachment(attach, a_head->aa_file, &nap)) != NULL) {
1045 attach = nahp;
1046 /* Did we split a charset set name for fixation purposes? */
1047 if (cp != NULL) {
1048 nap->a_conv = AC_FIX_INCS;
1049 nap->a_input_charset = cp;
1050 cp = NULL;
1052 a_head = a_head->aa_next;
1053 continue;
1055 i = errno;
1057 /* It may not have worked because of an appended character set name, so
1058 * try to split name and charset and retry once */
1059 if (cp == NULL && (cp = strrchr(a_head->aa_file, '=')) != NULL) {
1060 char *ncp, *nfp = savestrbuf(a_head->aa_file,
1061 PTR2SIZE(cp - a_head->aa_file));
1063 for (ncp = ++cp; *ncp != '\0'; ++ncp)
1064 if (!alnumchar(*ncp) && !punctchar(*ncp))
1065 break;
1066 if (*ncp == '\0') {
1067 a_head->aa_file = nfp;
1068 continue;
1072 n_perr(a_head->aa_file, i);
1073 exit_status = EXIT_ERR;
1074 goto jleave;
1077 if (options & OPT_INTERACTIVE)
1078 n_tty_init();
1079 mail(to, cc, bcc, subject, attach, qf, ((options & OPT_F_FLAG) != 0));
1080 if (options & OPT_INTERACTIVE)
1081 n_tty_destroy();
1083 jleave:
1084 #ifdef n_HAVE_TCAP
1085 if((options & (OPT_INTERACTIVE | OPT_QUICKRUN_MASK)) == OPT_INTERACTIVE)
1086 n_termcap_destroy();
1087 #endif
1088 #ifdef HAVE_DEBUG
1089 sreset(FAL0);
1090 #endif
1091 j_leave:
1092 #ifdef HAVE_DEBUG
1093 n_memcheck();
1094 #endif
1095 NYD_LEAVE;
1096 return exit_status;
1099 FL int
1100 c_exit(void *v){/* TODO program state machine */
1101 NYD_ENTER;
1102 UNUSED(v);
1104 if(pstate & PS_STARTED){
1105 if(!(pstate & PS_SOURCING)){
1106 #ifdef n_HAVE_TCAP
1107 if((options & (OPT_INTERACTIVE | OPT_QUICKRUN_MASK)) ==
1108 OPT_INTERACTIVE)
1109 n_termcap_destroy();
1110 #endif
1111 exit(EXIT_OK);
1114 pstate |= PS_EXIT;
1115 NYD_LEAVE;
1116 return 0;
1119 /* Source the others in that case! */
1120 #ifdef HAVE_AMALGAMATION
1121 # include "config.h"
1122 #endif
1124 /* s-it-mode */