Drop undocumented *broken-mbox* variable..
[s-mailx.git] / main.c
blob85a5506bd59bd3b65af5460371068ea72bef69d5
1 /*
2 * S-nail - a mail user agent derived from Berkeley Mail.
4 * Copyright (c) 2000-2004 Gunnar Ritter, Freiburg i. Br., Germany.
5 * Copyright (c) 2012 Steffen "Daode" Nurpmeso.
6 */
7 /*
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
13 * are met:
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
37 * SUCH DAMAGE.
40 /* TODO longjmp() globbering as in cmd1.c and cmd3.c (see there)
41 * TODO Problem: Popen doesn't encapsulate all cases of open failures,
42 * TODO may leave child running if fdopen() fails! */
45 * Most strcpy/sprintf functions have been changed to strncpy/snprintf to
46 * correct several buffer overruns (at least one ot them was exploitable).
47 * Sat Jun 20 04:58:09 CEST 1998 Alvaro Martinez Echevarria <alvaro@lander.es>
48 * ---
49 * Note: We set egid to realgid ... and only if we need the egid we will
50 * switch back temporary. Nevertheless, I do not like seg faults.
51 * Werner Fink, <werner@suse.de>
55 #include "config.h"
56 #ifdef HAVE_NL_LANGINFO
57 # include <langinfo.h>
58 #endif
59 #define _MAIL_GLOBS_
60 #include "rcv.h"
61 #include "extern.h"
62 #include <sys/stat.h>
63 #include <sys/ioctl.h>
64 #include <termios.h>
65 #include <unistd.h>
66 #include <fcntl.h>
67 #ifdef HAVE_SETLOCALE
68 # include <locale.h>
69 #endif
72 * Mail -- a mail program
74 * Startup -- interface with user.
77 static sigjmp_buf hdrjmp;
79 char *progname;
80 sighandler_type dflpipe = SIG_DFL;
82 static void hdrstop(int signo);
83 static void setscreensize(int dummy);
85 int
86 main(int argc, char *argv[])
88 const char optstr[] = "A:a:Bb:c:DdEeFfHIiNnO:q:Rr:S:s:T:tu:Vv~",
89 usagestr[] =
90 "Usage:\t%s [-BDdEFintv~] [-A acc] [-a attachment]\n"
91 "\t\t[-b bcc-addr] [-c cc-addr] [-O mtaopt [-O mtaopt-arg]]\n"
92 "\t\t[-q file] [-r from-addr] [-S var[=value]]\n"
93 "\t\t[-s subject] to-addr...\n"
94 "\t%s [-BDdEeHIiNnRv~] [-A acct]\n"
95 "\t\t[-S var[=value]] [-T name] -f [file]\n"
96 "\t%s [-BDdEeiNnRv~] [-A acc] [-S var[=value]] [-u user]\n";
98 int scnt, i, existonly = 0, headersonly = 0, sendflag = 0;
99 struct name *to, *cc, *bcc, *smopts;
100 struct attachment *attach;
101 char *subject, *cp, *ef, *qf = NULL, *fromaddr = NULL, *Aflag = NULL;
102 char nosrc = 0;
103 int Eflag = 0, Fflag = 0, Nflag = 0, tflag = 0;
104 sighandler_type prevint;
106 (void)&Nflag;
108 * Absolutely the first thing we do is save our egid
109 * and set it to the rgid, so that we can safely run
110 * setgid. We use the sgid (saved set-gid) to allow ourselves
111 * to revert to the egid if we want (temporarily) to become
112 * priveliged.
114 effectivegid = getegid();
115 realgid = getgid();
116 if (setgid(realgid) < 0) {
117 perror("setgid");
118 exit(1);
121 starting = 1;
122 progname = strrchr(argv[0], '/');
123 if (progname != NULL)
124 progname++;
125 else
126 progname = argv[0];
128 * Set up a reasonable environment.
129 * Figure out whether we are being run interactively,
130 * start the SIGCHLD catcher, and so forth.
132 safe_signal(SIGCHLD, sigchild);
133 is_a_tty[0] = isatty(0);
134 is_a_tty[1] = isatty(1);
135 if (is_a_tty[0]) {
136 assign("interactive", "");
137 if (is_a_tty[1])
138 safe_signal(SIGPIPE, dflpipe = SIG_IGN);
140 assign("header", "");
141 assign("save", "");
142 #ifdef HAVE_SETLOCALE
143 setlocale(LC_ALL, "");
144 mb_cur_max = MB_CUR_MAX;
145 # if defined HAVE_NL_LANGINFO && defined CODESET
146 if (value("ttycharset") == NULL && (cp = nl_langinfo(CODESET)) != NULL)
147 assign("ttycharset", cp);
148 # endif
149 # if defined HAVE_MBTOWC && defined HAVE_WCTYPE_H
150 if (mb_cur_max > 1) {
151 wchar_t wc;
152 if (mbtowc(&wc, "\303\266", 2) == 2 && wc == 0xF6 &&
153 mbtowc(&wc, "\342\202\254", 3) == 3 &&
154 wc == 0x20AC)
155 utf8 = 1;
157 # endif
158 #else
159 mb_cur_max = 1;
160 #endif
161 #ifdef HAVE_CATGETS
162 # ifdef NL_CAT_LOCALE
163 i = NL_CAT_LOCALE;
164 # else
165 i = 0;
166 # endif
167 catd = catopen(CATNAME, i);
168 #endif
169 #ifdef HAVE_ICONV
170 iconvd = (iconv_t) -1;
171 #endif
172 image = -1;
174 * Now, determine how we are being used.
175 * We successively pick off - flags.
176 * If there is anything left, it is the base of the list
177 * of users to mail to. Argp will be set to point to the
178 * first of these users.
180 ef = NULL;
181 to = NULL;
182 cc = NULL;
183 bcc = NULL;
184 attach = NULL;
185 smopts = NULL;
186 subject = NULL;
187 scnt = 0;
188 while ((i = getopt(argc, argv, optstr)) != EOF) {
189 switch (i) {
190 case 'A':
191 /* Execute an account command later on */
192 Aflag = optarg;
193 break;
194 case 'a':
195 /* Get attachment filenames */
196 attach = add_attachment(attach, optarg, 0);
197 if (attach == NULL) {
198 perror(optarg);
199 exit(1);
201 sendflag++;
202 break;
203 case 'B':
204 /* Make 0/1 line buffered */
205 setvbuf(stdin, NULL, _IOLBF, 0);
206 setvbuf(stdout, NULL, _IOLBF, 0);
207 break;
208 case 'b':
209 /* Get Blind Carbon Copy Recipient list */
210 bcc = cat(bcc, checkaddrs(lextract(optarg,GBCC|GFULL)));
211 sendflag++;
212 break;
213 case 'c':
214 /* Get Carbon Copy Recipient list */
215 cc = cat(cc, checkaddrs(lextract(optarg, GCC|GFULL)));
216 sendflag++;
217 break;
218 case 'D':
219 assign("disconnected", "");
220 break;
221 case 'd':
222 debug++;
223 break;
224 case 'E':
225 Eflag = 1;
226 break;
227 case 'e':
228 existonly++;
229 break;
230 case 'F':
231 Fflag = 1;
232 sendflag++;
233 break;
234 case 'f':
236 * User is specifying file to "edit" with Mail,
237 * as opposed to reading system mailbox.
238 * If no argument is given, we read his mbox file.
239 * Check for remaining arguments later.
241 ef = "&";
242 break;
243 case 'H':
244 headersonly = 1;
245 break;
246 jIflag: case 'I':
247 /* Show Newsgroups: field in header summary */
248 Iflag = 1;
249 break;
251 case 'i':
252 /* Ignore interrupts */
253 assign("ignore", "");
254 break;
255 case 'N':
256 /* Avoid initial header printing */
257 Nflag = 1;
258 unset_internal("header");
259 break;
260 case 'n':
261 /* Don't source "unspecified system start-up file" */
262 ++nosrc;
263 break;
264 case 'O':
265 /* Additional options to pass-through to MTA */
266 smopts = cat(smopts, nalloc(optarg, 0));
267 sendflag++;
268 break;
269 case 'q':
270 /* Quote file TODO drop? -Q with real quote?? what ? */
271 if (*optarg != '-')
272 qf = optarg;
273 sendflag++;
274 break;
275 case 'R':
276 /* Open folders read-only */
277 Rflag = 1;
278 break;
279 case 'r':
280 /* Set From address. */
281 i = count(smopts);
282 fromaddr = optarg;
283 smopts = cat(smopts, nalloc("-r", 0));
284 smopts = cat(smopts, lextract(optarg, GFULL));
285 if (count(smopts) != i + 2) {
286 fprintf(stderr, tr(271,
287 "More than one address "
288 "given with -r\n"));
289 goto usage;
291 tildeflag = -1;
292 sendflag++;
293 break;
294 case 'S':
295 /* Set variable (do so later, after RC loading..) */
296 argv[scnt++] = optarg;
297 break;
298 case 's':
299 /* Subject: */
300 subject = optarg;
301 sendflag++;
302 break;
303 case 'T':
305 * Next argument is temp file to write which
306 * articles have been read/deleted for netnews.
308 Tflag = optarg;
309 if ((i = creat(Tflag, 0600)) < 0) {
310 perror(Tflag);
311 exit(1);
313 close(i);
314 goto jIflag;
315 case 't':
316 /* Read defined set of headers from mail to be send */
317 sendflag = 1;
318 tflag = 1;
319 break;
320 case 'u':
321 /* Set user name to pretend to be */
322 uflag = myname = optarg;
323 break;
324 case 'V':
325 puts(version);
326 exit(0);
327 /*NOTREACHED*/
328 case 'v':
329 /* Be verbose */
330 assign("verbose", "");
331 break;
332 case '~':
333 /* Enable tilde escapes even in non-interactive mode */
334 if (tildeflag == 0)
335 tildeflag = 1;
336 break;
337 case '?':
338 usage: fprintf(stderr, tr(135, usagestr),
339 progname, progname, progname);
340 exit(2);
344 if (ef != NULL) {
345 if (optind < argc) {
346 if (optind + 1 < argc) {
347 fprintf(stderr, tr(205,
348 "More than one file given with -f\n"));
349 goto usage;
351 ef = argv[optind];
353 } else {
354 for (i = optind; argv[i]; i++)
355 to = cat(to, checkaddrs(lextract(argv[i], GTO|GFULL)));
358 /* Check for inconsistent arguments */
359 if (ef != NULL && to != NULL) {
360 fprintf(stderr, tr(137,
361 "Cannot give -f and people to send to.\n"));
362 goto usage;
364 if (sendflag && !tflag && to == NULL) {
365 fprintf(stderr, tr(138,
366 "Send options without primary recipient specified.\n"));
367 goto usage;
369 if (Rflag && to != NULL) {
370 fprintf(stderr, "The -R option is meaningless in send mode.\n");
371 goto usage;
373 if (Iflag && ef == NULL) {
374 fprintf(stderr, tr(204, "Need -f with -I.\n"));
375 goto usage;
378 tinit();
379 setscreensize(0);
380 #ifdef SIGWINCH
381 if (value("interactive"))
382 if (safe_signal(SIGWINCH, SIG_IGN) != SIG_IGN)
383 safe_signal(SIGWINCH, setscreensize);
384 #endif
385 input = stdin;
386 rcvmode = !to && !tflag;
387 spreserve();
389 if (! nosrc)
390 load(SYSCONFRC);
392 * Expand returns a savestr, but load only uses the file name
393 * for fopen, so it's safe to do this.
395 if ((cp = getenv("MAILRC")) != NULL)
396 load(expand(cp));
397 else if ((cp = getenv("NAILRC")) != NULL)
398 load(expand(cp));
399 else
400 load(expand("~/.mailrc"));
401 if (getenv("NAIL_EXTRA_RC") == NULL &&
402 (cp = value("NAIL_EXTRA_RC")) != NULL)
403 load(expand(cp));
406 * Now we can set the account.
408 if (Aflag) {
409 char *a[2];
410 a[0] = Aflag;
411 a[1] = NULL;
412 account(a);
415 * Override 'skipemptybody' if '-E' flag was given.
417 if (Eflag)
418 assign("skipemptybody", "");
420 * -S arguments override rc files.
422 for (i = 0; i < scnt; ++i) {
423 char *a[2];
424 a[0] = argv[i];
425 a[1] = NULL;
426 set(a);
429 starting = 0;
432 * From address from command line overrides rc files.
434 if (fromaddr)
435 assign("from", fromaddr);
436 if (!rcvmode) {
437 mail(to, cc, bcc, smopts, subject, attach, qf, Fflag, tflag,
438 Eflag);
440 * why wait?
442 exit(senderr ? 1 : 0);
445 * Ok, we are reading mail.
446 * Decide whether we are editing a mailbox or reading
447 * the system mailbox, and open up the right stuff.
449 if (ef == NULL)
450 ef = "%";
451 else if (*ef == '@') {
453 * This must be treated specially to make invocation like
454 * -A imap -f @mailbox work.
456 if ((cp = value("folder")) != NULL &&
457 which_protocol(cp) == PROTO_IMAP)
458 strncpy(mailname, cp, PATHSIZE)[PATHSIZE-1] = '\0';
460 i = setfile(ef, 0);
461 if (i < 0)
462 exit(1); /* error already reported */
463 if (existonly)
464 exit(i);
465 if (headersonly) {
466 if (mb.mb_type == MB_IMAP)
467 imap_getheaders(1, msgCount);
468 for (i = 1; i <= msgCount; i++)
469 printhead(i, stdout, 0);
470 exit(exit_status);
472 callhook(mailname, 0);
473 if (i > 0 && value("emptystart") == NULL)
474 exit(1);
475 if (sigsetjmp(hdrjmp, 1) == 0) {
476 if ((prevint = safe_signal(SIGINT, SIG_IGN)) != SIG_IGN)
477 safe_signal(SIGINT, hdrstop);
478 if (Nflag == 0) {
479 if (value("quiet") == NULL)
480 printf(tr(140,
481 "%s version %s. Type ? for help.\n"),
482 value("bsdcompat") ? "Mail" : uagent,
483 version);
484 announce(1);
485 fflush(stdout);
487 safe_signal(SIGINT, prevint);
489 commands();
490 if (mb.mb_type == MB_FILE || mb.mb_type == MB_MAILDIR) {
491 safe_signal(SIGHUP, SIG_IGN);
492 safe_signal(SIGINT, SIG_IGN);
493 safe_signal(SIGQUIT, SIG_IGN);
495 strncpy(mboxname, expand("&"), sizeof mboxname)[sizeof mboxname-1]='\0';
496 quit();
497 return exit_status;
501 * Interrupt printing of the headers.
503 /*ARGSUSED*/
504 static void
505 hdrstop(int signo)
507 (void)signo;
509 fflush(stdout);
510 fprintf(stderr, tr(141, "\nInterrupt\n"));
511 siglongjmp(hdrjmp, 1);
515 * Compute what the screen size for printing headers should be.
516 * We use the following algorithm for the height:
517 * If baud rate < 1200, use 9
518 * If baud rate = 1200, use 14
519 * If baud rate > 1200, use 24 or ws_row
520 * Width is either 80 or ws_col;
522 /*ARGSUSED*/
523 static void
524 setscreensize(int dummy)
526 struct termios tbuf;
527 #ifdef TIOCGWINSZ
528 struct winsize ws;
529 #endif
530 speed_t ospeed;
531 (void)dummy;
533 #ifdef TIOCGWINSZ
534 if (ioctl(1, TIOCGWINSZ, &ws) < 0)
535 ws.ws_col = ws.ws_row = 0;
536 #endif
537 if (tcgetattr(1, &tbuf) < 0)
538 ospeed = B9600;
539 else
540 ospeed = cfgetospeed(&tbuf);
541 if (ospeed < B1200)
542 scrnheight = 9;
543 else if (ospeed == B1200)
544 scrnheight = 14;
545 #ifdef TIOCGWINSZ
546 else if (ws.ws_row != 0)
547 scrnheight = ws.ws_row;
548 #endif
549 else
550 scrnheight = 24;
551 #ifdef TIOCGWINSZ
552 if ((realscreenheight = ws.ws_row) == 0)
553 realscreenheight = 24;
554 #endif
555 #ifdef TIOCGWINSZ
556 if ((scrnwidth = ws.ws_col) == 0)
557 #endif
558 scrnwidth = 80;