1 /*@ S-nail - a mail user agent derived from Berkeley Mail.
2 *@ Startup -- interface with user.
4 * Copyright (c) 2000-2004 Gunnar Ritter, Freiburg i. Br., Germany.
5 * Copyright (c) 2012 - 2014 Steffen "Daode" Nurpmeso <sdaoden@users.sf.net>.
8 * Copyright (c) 1980, 1993
9 * The Regents of the University of California. All rights reserved.
11 * Redistribution and use in source and binary forms, with or without
12 * modification, are permitted provided that the following conditions
14 * 1. Redistributions of source code must retain the above copyright
15 * notice, this list of conditions and the following disclaimer.
16 * 2. Redistributions in binary form must reproduce the above copyright
17 * notice, this list of conditions and the following disclaimer in the
18 * documentation and/or other materials provided with the distribution.
19 * 3. All advertising materials mentioning features or use of this software
20 * must display the following acknowledgement:
21 * This product includes software developed by the University of
22 * California, Berkeley and its contributors.
23 * 4. Neither the name of the University nor the names of its contributors
24 * may be used to endorse or promote products derived from this software
25 * without specific prior written permission.
27 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
28 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
29 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
30 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
31 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
32 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
33 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
34 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
35 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
36 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
41 * Most strcpy/sprintf functions have been changed to strncpy/snprintf to
42 * correct several buffer overruns (at least one ot them was exploitable).
43 * Sat Jun 20 04:58:09 CEST 1998 Alvaro Martinez Echevarria <alvaro@lander.es>
45 * Note: We set egid to realgid ... and only if we need the egid we will
46 * switch back temporary. Nevertheless, I do not like seg faults.
47 * Werner Fink, <werner@suse.de>
50 #ifndef HAVE_AMALGAMATION
55 #include <sys/ioctl.h>
60 #ifdef HAVE_NL_LANGINFO
61 # include <langinfo.h>
70 struct a_arg
*aa_next
;
74 /* (extern, but not with amalgamation, so define here) */
75 VL
char const weekday_names
[7 + 1][4] = {
76 "Sun", "Mon", "Tue", "Wed", "Thu", "Fri", "Sat", ""
78 VL
char const month_names
[12 + 1][4] = {
79 "Jan", "Feb", "Mar", "Apr", "May", "Jun",
80 "Jul", "Aug", "Sep", "Oct", "Nov", "Dec", ""
82 VL
char const uagent
[] = UAGENT
;
83 VL
char const version
[] = VERSION
;
84 /*VL char const features[]; The "feature string" comes from config.h */
85 VL uc_it
const class_char
[] = {
86 /* 000 nul 001 soh 002 stx 003 etx 004 eot 005 enq 006 ack 007 bel */
87 C_CNTRL
, C_CNTRL
, C_CNTRL
, C_CNTRL
, C_CNTRL
, C_CNTRL
, C_CNTRL
, C_CNTRL
,
88 /* 010 bs 011 ht 012 nl 013 vt 014 np 015 cr 016 so 017 si */
89 C_CNTRL
, C_BLANK
, C_WHITE
, C_SPACE
, C_SPACE
, C_SPACE
, C_CNTRL
, C_CNTRL
,
90 /* 020 dle 021 dc1 022 dc2 023 dc3 024 dc4 025 nak 026 syn 027 etb */
91 C_CNTRL
, C_CNTRL
, C_CNTRL
, C_CNTRL
, C_CNTRL
, C_CNTRL
, C_CNTRL
, C_CNTRL
,
92 /* 030 can 031 em 032 sub 033 esc 034 fs 035 gs 036 rs 037 us */
93 C_CNTRL
, C_CNTRL
, C_CNTRL
, C_CNTRL
, C_CNTRL
, C_CNTRL
, C_CNTRL
, C_CNTRL
,
94 /* 040 sp 041 ! 042 " 043 # 044 $ 045 % 046 & 047 ' */
95 C_BLANK
, C_PUNCT
, C_PUNCT
, C_PUNCT
, C_PUNCT
, C_PUNCT
, C_PUNCT
, C_PUNCT
,
96 /* 050 ( 051 ) 052 * 053 + 054 , 055 - 056 . 057 / */
97 C_PUNCT
, C_PUNCT
, C_PUNCT
, C_PUNCT
, C_PUNCT
, C_PUNCT
, C_PUNCT
, C_PUNCT
,
98 /* 060 0 061 1 062 2 063 3 064 4 065 5 066 6 067 7 */
99 C_OCTAL
, C_OCTAL
, C_OCTAL
, C_OCTAL
, C_OCTAL
, C_OCTAL
, C_OCTAL
, C_OCTAL
,
100 /* 070 8 071 9 072 : 073 ; 074 < 075 = 076 > 077 ? */
101 C_DIGIT
, C_DIGIT
, C_PUNCT
, C_PUNCT
, C_PUNCT
, C_PUNCT
, C_PUNCT
, C_PUNCT
,
102 /* 100 @ 101 A 102 B 103 C 104 D 105 E 106 F 107 G */
103 C_PUNCT
, C_UPPER
, C_UPPER
, C_UPPER
, C_UPPER
, C_UPPER
, C_UPPER
, C_UPPER
,
104 /* 110 H 111 I 112 J 113 K 114 L 115 M 116 N 117 O */
105 C_UPPER
, C_UPPER
, C_UPPER
, C_UPPER
, C_UPPER
, C_UPPER
, C_UPPER
, C_UPPER
,
106 /* 120 P 121 Q 122 R 123 S 124 T 125 U 126 V 127 W */
107 C_UPPER
, C_UPPER
, C_UPPER
, C_UPPER
, C_UPPER
, C_UPPER
, C_UPPER
, C_UPPER
,
108 /* 130 X 131 Y 132 Z 133 [ 134 \ 135 ] 136 ^ 137 _ */
109 C_UPPER
, C_UPPER
, C_UPPER
, C_PUNCT
, C_PUNCT
, C_PUNCT
, C_PUNCT
, C_PUNCT
,
110 /* 140 ` 141 a 142 b 143 c 144 d 145 e 146 f 147 g */
111 C_PUNCT
, C_LOWER
, C_LOWER
, C_LOWER
, C_LOWER
, C_LOWER
, C_LOWER
, C_LOWER
,
112 /* 150 h 151 i 152 j 153 k 154 l 155 m 156 n 157 o */
113 C_LOWER
, C_LOWER
, C_LOWER
, C_LOWER
, C_LOWER
, C_LOWER
, C_LOWER
, C_LOWER
,
114 /* 160 p 161 q 162 r 163 s 164 t 165 u 166 v 167 w */
115 C_LOWER
, C_LOWER
, C_LOWER
, C_LOWER
, C_LOWER
, C_LOWER
, C_LOWER
, C_LOWER
,
116 /* 170 x 171 y 172 z 173 { 174 | 175 } 176 ~ 177 del */
117 C_LOWER
, C_LOWER
, C_LOWER
, C_PUNCT
, C_PUNCT
, C_PUNCT
, C_PUNCT
, C_CNTRL
120 /* getopt(3) fallback implementation */
122 # define _oarg optarg
123 # define _oind optind
124 /*# define _oerr opterr*/
125 # define _oopt optopt
128 static int _oind
, /*_oerr,*/ _oopt
;
131 /* getopt(3) fallback implementation */
133 # define _getopt getopt
135 static int _getopt(int argc
, char *const argv
[], const char *optstring
);
138 /* Perform basic startup initialization */
139 static void _startup(void);
142 static size_t _grow_cpp(char const ***cpp
, size_t newsize
, size_t oldcnt
);
144 /* Initialize *tempdir*, *myname*, *homedir* */
145 static void _setup_vars(void);
147 /* We're in an interactive session - compute what the screen size for printing
148 * headers etc. should be; notify tty upon resize if *is_sighdl* is not 0.
149 * We use the following algorithm for the height:
150 * If baud rate < 1200, use 9
151 * If baud rate = 1200, use 14
152 * If baud rate > 1200, use 24 or ws_row
153 * Width is either 80 or ws_col */
154 static void _setscreensize(int is_sighdl
);
156 /* Ok, we are reading mail. Decide whether we are editing a mailbox or reading
157 * the system mailbox, and open up the right stuff */
158 static int _rcv_mode(char const *folder
);
160 /* Interrupt printing of the headers */
161 static void _hdrstop(int signo
);
165 _getopt(int argc
, char * const argv
[], char const *optstring
)
167 static char const *lastp
;
171 if ((colon
= (optstring
[0] == ':')))
177 if (_oind
>= argc
|| argv
[_oind
] == 0 || argv
[_oind
][0] != '-' ||
178 argv
[_oind
][1] == '\0')
180 if (argv
[_oind
][1] == '-' && argv
[_oind
][2] == '\0') {
184 curp
= &argv
[_oind
][1];
188 while (optstring
[0] != '\0') {
189 if (optstring
[0] == ':' || optstring
[0] != _oopt
) {
193 if (optstring
[1] == ':') {
194 if (curp
[1] != '\0') {
195 _oarg
= UNCONST(&curp
[1]);
198 if ((_oind
+= 2) > argc
) {
199 if (!colon
/*&& _oerr*/) {
201 tr(79, "%s: option requires an argument -- %c\n"),
202 argv
[0], (char)_oopt
);
204 rv
= (colon
? ':' : '?');
207 _oarg
= argv
[_oind
- 1];
220 if (!colon
/*&& opterr*/)
221 fprintf(stderr
, tr(78, "%s: illegal option -- %c\n"), argv
[0], _oopt
);
231 #endif /* !HAVE_GETOPT */
238 /* Absolutely the first thing we do is save our egid
239 * and set it to the rgid, so that we can safely run
240 * setgid. We use the sgid (saved set-gid) to allow ourselves
241 * to revert to the egid if we want (temporarily) to become
242 * privileged XXX (s-nail-)*dotlock(-program)* */
243 effectivegid
= getegid();
245 if (setgid(realgid
) < 0) {
253 _oind
= /*_oerr =*/ 1;
256 if ((cp
= strrchr(progname
, '/')) != NULL
)
259 /* Set up a reasonable environment.
260 * Figure out whether we are being run interactively,
261 * start the SIGCHLD catcher, and so forth */
262 safe_signal(SIGCHLD
, sigchild
);
264 if (isatty(STDIN_FILENO
)) /* TODO should be isatty(0) && isatty(2)?? */
265 options
|= OPT_TTYIN
| OPT_INTERACTIVE
;
266 if (isatty(STDOUT_FILENO
))
267 options
|= OPT_TTYOUT
;
268 if (IS_TTY_SESSION())
269 safe_signal(SIGPIPE
, dflpipe
= SIG_IGN
);
271 /* Define defaults for internal variables, based on POSIX 2008/Cor 1-2013 */
274 ok_bset(asksub
, TRU1
);
283 /* ok_vset(escape, ESCAPE *"~"*); TODO non-compliant */
286 ok_bset(header
, TRU1
);
293 /* noonehop -- Note: we ignore this one */
296 ok_vset(prompt
, "\\& "); /* POSIX "? " unless *bsdcompat*, then "& " */
304 /* ok_vset(toplines, "5"); XXX somewhat hmm */
306 #ifdef HAVE_SETLOCALE
307 setlocale(LC_ALL
, "");
308 mb_cur_max
= MB_CUR_MAX
;
309 # ifdef HAVE_NL_LANGINFO
310 if (ok_vlook(ttycharset
) == NULL
&& (cp
= nl_langinfo(CODESET
)) != NULL
)
311 ok_vset(ttycharset
, cp
);
314 # ifdef HAVE_C90AMEND1
315 if (mb_cur_max
> 1) {
317 if (mbtowc(&wc
, "\303\266", 2) == 2 && wc
== 0xF6 &&
318 mbtowc(&wc
, "\342\202\254", 3) == 3 && wc
== 0x20AC)
320 /* Reset state - it may have been messed up; luckily this also
321 * gives us an indication wether the encoding has locking shift
323 /* TODO temporary - use option bits! */
324 enc_has_state
= mbtowc(&wc
, NULL
, mb_cur_max
);
332 # ifdef NL_CAT_LOCALE
333 catd
= catopen(CATNAME
, NL_CAT_LOCALE
);
335 catd
= catopen(CATNAME
, 0);
340 iconvd
= (iconv_t
)-1;
345 _grow_cpp(char const ***cpp
, size_t newsize
, size_t oldcnt
)
347 /* Before spreserve(): use our string pool instead of LibC heap */
348 char const **newcpp
= salloc(sizeof(char*) * newsize
);
351 memcpy(newcpp
, *cpp
, oldcnt
* sizeof(char*));
359 /* Before spreserve(): use our string pool instead of LibC heap */
360 /* XXX further check paths? */
363 struct passwd
*pwuid
, *pw
;
365 tempdir
= ((cp
= getenv("TMPDIR")) != NULL
) ? savestr(cp
) : TMPDIR_FALLBACK
;
367 cp
= (myname
== NULL
) ? getenv("USER") : myname
;
369 if ((pwuid
= getpwuid(uid
)) == NULL
)
370 panic(tr(201, "Cannot associate a name with uid %lu"), (ul_it
)uid
);
372 myname
= pwuid
->pw_name
;
373 else if ((pw
= getpwnam(cp
)) == NULL
)
374 panic(tr(236, "`%s' is not a user of this system"), cp
);
376 myname
= pw
->pw_name
;
377 if (pw
->pw_uid
!= uid
)
378 options
|= OPT_u_FLAG
;
380 myname
= savestr(myname
);
381 /* XXX myfullname = pw->pw_gecos[OPTIONAL!] -> GUT THAT; TODO pw_shell */
383 if ((cp
= getenv("HOME")) == NULL
)
384 cp
= "."; /* XXX User and Login objects; Login: pw->pw_dir */
385 homedir
= savestr(cp
);
389 _setscreensize(int is_sighdl
)
394 #elif defined TIOCGSIZE
398 scrnheight
= realscreenheight
= scrnwidth
= 0;
400 /* (Also) POSIX: LINES and COLUMNS always override. Adjust this
401 * a little bit to be able to honour resizes during our lifetime and
402 * only honour it upon first run; abuse *is_sighdl* as an indicator */
407 if ((cp
= getenv("LINES")) != NULL
&& (i
= strtol(cp
, NULL
, 10)) > 0)
408 scrnheight
= realscreenheight
= (int)i
;
409 if ((cp
= getenv("COLUMNS")) != NULL
&& (i
= strtol(cp
, NULL
, 10)) > 0)
412 if (scrnwidth
!= 0 && scrnheight
!= 0)
417 if (ioctl(STDOUT_FILENO
, TIOCGWINSZ
, &ws
) < 0)
418 ws
.ws_col
= ws
.ws_row
= 0;
419 #elif defined TIOCGSIZE
420 if (ioctl(STDOUT_FILENO
, TIOCGSIZE
, &ws
) < 0)
421 ts
.ts_lines
= ts
.ts_cols
= 0;
424 if (scrnheight
== 0) {
425 speed_t ospeed
= ((tcgetattr(STDOUT_FILENO
, &tbuf
) < 0)
426 ? B9600
: cfgetospeed(&tbuf
));
430 else if (ospeed
== B1200
)
433 else if (ws
.ws_row
!= 0)
434 scrnheight
= ws
.ws_row
;
435 #elif defined TIOCGSIZE
436 else if (ts
.ts_lines
!= 0)
437 scrnheight
= ts
.ts_lines
;
442 #if defined TIOCGWINSZ || defined TIOCGSIZE
445 (realscreenheight
= ws
.ws_row
)
447 (realscreenheight
= ts
.ts_lines
)
450 realscreenheight
= 24;
454 if (scrnwidth
== 0 && 0 ==
456 (scrnwidth
= ws
.ws_col
)
457 #elif defined TIOCGSIZE
458 (scrnwidth
= ts
.ts_cols
)
465 if (is_sighdl
&& IS_TTY_SESSION())
466 tty_signal(SIGWINCH
);
470 static sigjmp_buf __hdrjmp
; /* XXX */
473 _rcv_mode(char const *folder
)
477 sighandler_type prevint
;
481 else if (*folder
== '@') {
482 /* This must be treated specially to make invocation like
483 * -A imap -f @mailbox work */
484 if ((cp
= ok_vlook(folder
)) != NULL
&& which_protocol(cp
) == PROTO_IMAP
)
485 (void)n_strlcpy(mailname
, cp
, MAXPATHLEN
);
488 i
= setfile(folder
, 0);
490 exit(1); /* error already reported */
491 if (options
& OPT_EXISTONLY
)
494 if (options
& OPT_HEADERSONLY
) {
495 print_headers(1, msgCount
);
499 callhook(mailname
, 0);
500 if (i
> 0 && !ok_blook(emptystart
))
503 if (sigsetjmp(__hdrjmp
, 1) == 0) {
504 if ((prevint
= safe_signal(SIGINT
, SIG_IGN
)) != SIG_IGN
)
505 safe_signal(SIGINT
, _hdrstop
);
506 if (!(options
& OPT_N_FLAG
)) {
507 if (!ok_blook(quiet
))
508 printf(tr(140, "%s version %s. Type ? for help.\n"),
509 (ok_blook(bsdcompat
) ? "Mail" : uagent
), version
);
513 safe_signal(SIGINT
, prevint
);
516 /* Enter the command loop */
517 if (options
& OPT_INTERACTIVE
)
520 if (options
& OPT_INTERACTIVE
)
523 if (mb
.mb_type
== MB_FILE
|| mb
.mb_type
== MB_MAILDIR
) {
524 safe_signal(SIGHUP
, SIG_IGN
);
525 safe_signal(SIGINT
, SIG_IGN
);
526 safe_signal(SIGQUIT
, SIG_IGN
);
528 save_mbox_for_possible_quitstuff();
539 fprintf(stderr
, tr(141, "\nInterrupt\n"));
540 siglongjmp(__hdrjmp
, 1);
544 main(int argc
, char *argv
[])
546 static char const optstr
[] = "A:a:Bb:c:DdEeFfHiNnO:q:Rr:S:s:tu:Vv~#",
549 " %s [-BDdEFintv~] [-A acc] [-a attachment] "
550 "[-b bcc-addr] [-c cc-addr]\n"
551 "\t [-O mtaopt [-O mtaopt-arg]] [-q file] [-r from-addr] "
553 "\t [-s subject] to-addr...\n"
554 " %s [-BDdEeHiNnRv~#] [-A acct] "
555 "[-S var[=value]] -f [file]\n"
556 " %s [-BDdEeiNnRv~#] [-A acc] [-S var[=value]] [-u user]\n";
558 struct a_arg
*a_head
= NULL
, *a_curr
= /* silence CC */ NULL
;
559 struct name
*to
= NULL
, *cc
= NULL
, *bcc
= NULL
;
560 struct attachment
*attach
= NULL
;
561 char *cp
= NULL
, *subject
= NULL
, *qf
= NULL
, *Aflag
= NULL
;
562 char const *okey
, **oargs
= NULL
, *folder
= NULL
;
563 size_t oargs_size
= 0, oargs_count
= 0, smopts_size
= 0;
567 * Start our lengthy setup
571 var_clear_allow_undefined
= TRU1
;
576 /* Command line parsing */
577 while ((i
= _getopt(argc
, argv
, optstr
)) >= 0) {
580 /* Execute an account command later on */
584 { struct a_arg
*nap
= ac_alloc(sizeof(struct a_arg
));
588 a_curr
->aa_next
= nap
;
590 nap
->aa_file
= _oarg
;
593 options
|= OPT_SENDMODE
;
596 /* Make 0/1 line buffered */
597 setvbuf(stdin
, NULL
, _IOLBF
, 0);
598 setvbuf(stdout
, NULL
, _IOLBF
, 0);
601 /* Get Blind Carbon Copy Recipient list */
602 bcc
= cat(bcc
, checkaddrs(lextract(_oarg
, GBCC
| GFULL
)));
603 options
|= OPT_SENDMODE
;
606 /* Get Carbon Copy Recipient list */
607 cc
= cat(cc
, checkaddrs(lextract(_oarg
, GCC
| GFULL
)));
608 options
|= OPT_SENDMODE
;
612 okey
= "disconnected";
620 ok_bset(debug
, TRU1
);
624 okey
= "skipemptybody";
627 options
|= OPT_EXISTONLY
;
630 options
|= OPT_F_FLAG
| OPT_SENDMODE
;
633 /* User is specifying file to "edit" with Mail, as opposed to reading
634 * system mailbox. If no argument is given, we read his mbox file.
635 * Check for remaining arguments later */
639 options
|= OPT_HEADERSONLY
;
642 /* Ignore interrupts */
646 /* Avoid initial header printing */
650 /* Don't source "unspecified system start-up file" */
651 options
|= OPT_NOSRC
;
654 /* Additional options to pass-through to MTA */
655 if (smopts_count
== (size_t)smopts_size
)
656 smopts_size
= _grow_cpp(&smopts
, smopts_size
+ 8, smopts_count
);
657 smopts
[smopts_count
++] = skin(_oarg
);
660 /* Quote file TODO drop? -Q with real quote?? what ? */
663 options
|= OPT_SENDMODE
;
666 /* Open folders read-only */
667 options
|= OPT_R_FLAG
;
670 /* Set From address. */
671 options
|= OPT_r_FLAG
;
672 if ((option_r_arg
= _oarg
)[0] != '\0') {
673 struct name
*fa
= nalloc(_oarg
, GFULL
);
675 if (is_addr_invalid(fa
, 1) || is_fileorpipe_addr(fa
)) {
676 fprintf(stderr
, tr(271, "Invalid address argument with -r\n"));
679 option_r_arg
= fa
->n_name
;
680 /* TODO -r options is set in smopts, but may
681 * TODO be overwritten by setting from= in
682 * TODO an interactive session!
683 * TODO Maybe disable setting of from?
684 * TODO Warn user? Update manual!! */
685 okey
= savecat("from=", fa
->n_fullname
);
687 /* ..and fa goes even though it is ready :/ */
691 /* Set variable. We need to do this twice, since the
692 * user surely wants the setting to take effect
693 * immediately, but also doesn't want it to be
694 * overwritten from within resource files */
701 if (oargs_count
== oargs_size
)
702 oargs_size
= _grow_cpp(&oargs
, oargs_size
+ 8, oargs_count
);
703 oargs
[oargs_count
++] = okey
;
708 options
|= OPT_SENDMODE
;
711 /* Read defined set of headers from mail to be send */
712 options
|= OPT_SENDMODE
| OPT_t_FLAG
;
715 /* Set user name to pretend to be; don't set OPT_u_FLAG yet, this is
716 * done as necessary in _setup_vars() above */
727 ok_bset(verbose
, TRU1
);
731 /* Enable tilde escapes even in non-interactive mode */
732 options
|= OPT_TILDE_FLAG
;
735 /* Work in batch mode, even if non-interactive */
736 if (oargs_count
+ 6 >= oargs_size
)
737 oargs_size
= _grow_cpp(&oargs
, oargs_size
+ 8, oargs_count
);
738 oargs
[oargs_count
+ 0] = "dot";
739 oargs
[oargs_count
+ 1] = "emptystart";
740 oargs
[oargs_count
+ 2] = "noheader";
741 oargs
[oargs_count
+ 3] = "quiet";
742 oargs
[oargs_count
+ 4] = "sendwait";
743 oargs
[oargs_count
+ 5] = "MBOX=/dev/null";
745 options
|= OPT_TILDE_FLAG
| OPT_BATCH_FLAG
;
749 fprintf(stderr
, tr(135, usagestr
), progname
, progname
, progname
);
754 if (folder
!= NULL
) {
756 if (_oind
+ 1 < argc
) {
757 fprintf(stderr
, tr(205, "More than one file given with -f\n"));
760 folder
= argv
[_oind
];
763 for (i
= _oind
; argv
[i
]; ++i
)
764 to
= cat(to
, checkaddrs(lextract(argv
[i
], GTO
| GFULL
)));
766 options
|= OPT_SENDMODE
;
769 /* Check for inconsistent arguments */
770 if (folder
!= NULL
&& to
!= NULL
) {
771 fprintf(stderr
, tr(137, "Cannot give -f and people to send to.\n"));
774 if ((options
& (OPT_SENDMODE
| OPT_t_FLAG
)) == OPT_SENDMODE
&& to
== NULL
) {
775 fprintf(stderr
, tr(138,
776 "Send options without primary recipient specified.\n"));
779 if ((options
& OPT_R_FLAG
) && to
!= NULL
) {
780 fprintf(stderr
, tr(235, "The -R option is meaningless in send mode.\n"));
785 * Likely to go, perform more setup
790 if (options
& OPT_INTERACTIVE
) {
793 # ifndef TTY_WANTS_SIGWINCH
794 if (safe_signal(SIGWINCH
, SIG_IGN
) != SIG_IGN
)
796 safe_signal(SIGWINCH
, _setscreensize
);
799 scrnheight
= realscreenheight
= 24, scrnwidth
= 80;
801 /* Snapshot our string pools. Memory is auto-reclaimed from now on */
804 if (!(options
& OPT_NOSRC
) && getenv("NAIL_NO_SYSTEM_RC") == NULL
)
806 /* *expand() returns a savestr(), but load only uses the file name for
807 * fopen(), so it's safe to do this */
808 if ((cp
= getenv("MAILRC")) == NULL
&& (cp
= getenv("NAILRC")) == NULL
)
809 cp
= UNCONST(MAILRC
);
810 load(file_expand(cp
));
811 if (getenv("NAIL_EXTRA_RC") == NULL
&&
812 (cp
= ok_vlook(NAIL_EXTRA_RC
)) != NULL
)
813 load(file_expand(cp
));
815 /* Now we can set the account */
823 /* Ensure the -S and other command line options take precedence over
824 * anything that may have been placed in resource files */
825 for (i
= 0; UICMP(z
, i
, <, oargs_count
); ++i
) {
833 * We're finally completely setup and ready to go
837 var_clear_allow_undefined
= FAL0
;
839 if (options
& OPT_DEBUG
)
840 fprintf(stderr
, tr(199, "user = %s, homedir = %s\n"), myname
, homedir
);
842 if (!(options
& OPT_SENDMODE
)) {
843 exit_status
= _rcv_mode(folder
);
847 /* Now that full mailx(1)-style file expansion is possible handle the
848 * attachments which we had delayed due to this.
849 * This may use savestr(), but since we won't enter the command loop we
850 * don't need to care about that */
851 while (a_head
!= NULL
) {
852 attach
= add_attachment(attach
, a_head
->aa_file
, NULL
);
853 if (attach
!= NULL
) {
855 a_head
= a_head
->aa_next
;
858 perror(a_head
->aa_file
);
863 /* xxx exit_status = EXIT_OK; */
864 if (options
& OPT_INTERACTIVE
)
866 mail(to
, cc
, bcc
, subject
, attach
, qf
, ((options
& OPT_F_FLAG
) != 0));
867 if (options
& OPT_INTERACTIVE
)
873 /* vim:set fenc=utf-8:s-it-mode */