]>
git.cameronkatri.com Git - apple_cmds.git/blob - mail_cmds/mail/main.c
2 * Copyright (c) 1980, 1993
3 * The Regents of the University of California. All rights reserved.
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
8 * 1. Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above copyright
11 * notice, this list of conditions and the following disclaimer in the
12 * documentation and/or other materials provided with the distribution.
13 * 3. All advertising materials mentioning features or use of this software
14 * must display the following acknowledgement:
15 * This product includes software developed by the University of
16 * California, Berkeley and its contributors.
17 * 4. Neither the name of the University nor the names of its contributors
18 * may be used to endorse or promote products derived from this software
19 * without specific prior written permission.
21 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
22 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
23 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
24 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
25 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
26 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
27 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
28 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
29 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
30 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
34 #include <sys/cdefs.h>
36 __unused
static char copyright
[] =
37 "@(#) Copyright (c) 1980, 1993\n\
38 The Regents of the University of California. All rights reserved.\n";
43 static char sccsid
[] = "@(#)main.c 8.2 (Berkeley) 4/20/95";
45 __unused
static const char rcsid
[] =
46 "$FreeBSD: src/usr.bin/mail/main.c,v 1.14 2004/02/29 20:44:44 mikeh Exp $";
49 #include <sys/cdefs.h>
50 #include <sys/ioctl.h>
58 * Mail -- a mail program
60 * Startup -- interface with user.
65 extern const char *version
;
73 struct name
*to
, *cc
, *bcc
, *smopts
;
74 char *subject
, *replyto
;
80 * Set up a reasonable environment.
81 * Figure out whether we are being run interactively,
82 * start the SIGCHLD catcher, and so forth.
84 (void)signal(SIGCHLD
, sigchild
);
86 assign("interactive", "");
89 /* Define defaults for internal variables, based on Unix 2003 standard */
90 /* noallnet allnet off */
91 /* noappend append off */
92 assign("asksub",""); /* asksub on */
93 /* noaskbcc askbcc off */
94 /* noaskcc askcc off */
95 /* noautoprint autoprint off */
99 /* nodebug debug off */
101 /* noflipr flipr off */
102 /* nofolder folder off */
103 assign("header", ""); /* headers on */
104 /* nohold hold off */
105 /* noignore ignore off */
106 /* noignoreeof ignoreeof off */
107 /* nokeep keep off */
108 /* nokeepsave keepsave off */
109 /* nometoo metoo off */
110 /* noonehop onehop off */
111 /* nooutfolder outfolder off */
112 /* nopage page off */
113 assign("prompt", "? ");
114 /* noquiet quiet off */
115 /* norecord record off */
116 assign("save", ""); /* save on */
117 /* nosendwait sendwait off */
118 /* noshowto showto off */
119 /* nosign sign off */
120 /* noSign Sign off */
123 * Now, determine how we are being used.
124 * We successively pick off - flags.
125 * If there is anything left, it is the base of the list
126 * of users to mail to. Argp will be set to point to the
127 * first of these users.
135 while ((i
= getopt(argc
, argv
, "FEHINT:b:c:edfins:u:v")) != -1) {
139 * Next argument is temp file to write which
140 * articles have been read/deleted for netnews.
143 if ((i
= open(Tflag
, O_CREAT
| O_TRUNC
| O_WRONLY
,
150 * Next argument is person to pretend to be.
157 * User wants to ignore interrupts.
158 * Set the variable "ignore"
160 assign("ignore", "");
163 debug
= 1; /* 1 -> set from command line; disables env var [no]debug */
167 * User wants to check mail and exit.
169 assign("checkmode", "");
173 * User wants a header summary only.
175 assign("headersummary", "");
179 * User wants to record messages to files
180 * named after first recipient username.
182 assign("recordrecip", "");
186 * Give a subject field for sending from
193 * User is specifying file to "edit" with Mail,
194 * as opposed to reading system mailbox.
195 * If no argument is given after -f, we read his
198 * getopt() can't handle optional arguments, so here
199 * is an ugly hack to get around it.
201 if ((argv
[optind
] != NULL
) && (argv
[optind
][0] != '-'))
208 * User doesn't want to source /usr/lib/Mail.rc
214 * Avoid initial header printing.
220 * Send mailer verbose flag
222 assign("verbose", "");
228 assign("interactive", "");
232 * Get Carbon Copy Recipient list
234 cc
= cat(cc
, nalloc(optarg
, GCC
));
238 * Get Blind Carbon Copy Recipient list
240 bcc
= cat(bcc
, nalloc(optarg
, GBCC
));
244 * Don't send empty files.
246 assign("dontsendempty", "");
250 Usage: %s [-EiInv] [-s subject] [-c cc-addr] [-b bcc-addr] [-F] to-addr ...\n\
251 %*s [- sendmail-options ...]\n\
252 %s [-EHiInNv] [-F] -f [name]\n\
253 %s [-EHiInNv] [-F] [-u user]\n\
255 %s -H\n",__progname
, (int)strlen(__progname
), "",
256 __progname
, __progname
, __progname
, __progname
);
260 for (i
= optind
; (argv
[i
] != NULL
) && (*argv
[i
] != '-'); i
++)
261 to
= cat(to
, nalloc(argv
[i
], GTO
));
262 for (; argv
[i
] != NULL
; i
++)
263 smopts
= cat(smopts
, nalloc(argv
[i
], 0));
265 * Check for inconsistent arguments.
267 if (to
== NULL
&& (subject
!= NULL
|| cc
!= NULL
|| bcc
!= NULL
))
268 errx(1, "You must specify direct recipients with -s, -c, or -b.");
269 if (ef
!= NULL
&& to
!= NULL
)
270 errx(1, "Cannot give -f and people to send to.");
279 if ((path_rc
= malloc(sizeof(_PATH_MASTER_RC
))) == NULL
)
280 err(1, "malloc(path_rc) failed");
282 strcpy(path_rc
, _PATH_MASTER_RC
);
283 while ((s
= strsep(&path_rc
, ":")) != NULL
)
288 * Expand returns a savestr, but load only uses the file name
289 * for fopen, so it's safe to do this.
291 if ((rc
= getenv("MAILRC")) == NULL
)
295 replyto
= value("REPLYTO");
297 mail(to
, cc
, bcc
, smopts
, subject
, replyto
);
304 if(value("checkmode") != NULL
) {
307 if (setfile(ef
) <= 0)
308 /* Either an error has occured, or no mail */
316 * Ok, we are reading mail.
317 * Decide whether we are editing a mailbox or reading
318 * the system mailbox, and open up the right stuff.
323 exit(1); /* error already reported */
324 if (setjmp(hdrjmp
) == 0) {
325 if ((prevint
= signal(SIGINT
, SIG_IGN
)) != SIG_IGN
)
326 (void)signal(SIGINT
, hdrstop
);
327 if (value("quiet") == NULL
) {
328 printf("Mail version %s. Type ? for help.\n",
332 (void)fflush(stdout
);
333 (void)signal(SIGINT
, prevint
);
336 /* If we were in header summary mode, it's time to exit. */
337 if (value("headersummary") != NULL
)
341 (void)signal(SIGHUP
, SIG_IGN
);
342 (void)signal(SIGINT
, SIG_IGN
);
343 (void)signal(SIGQUIT
, SIG_IGN
);
349 * Interrupt printing of the headers.
357 (void)fflush(stdout
);
358 fprintf(stderr
, "\nInterrupt\n");
363 * Compute what the screen size for printing headers should be.
364 * We use the following algorithm for the height:
365 * If baud rate < 1200, use 9
366 * If baud rate = 1200, use 14
367 * If baud rate > 1200, use 24 or ws_row
368 * Width is either 80 or ws_col;
377 if (ioctl(1, TIOCGWINSZ
, (char *)&ws
) < 0)
378 ws
.ws_col
= ws
.ws_row
= 0;
379 if (tcgetattr(1, &tbuf
) < 0)
382 speed
= cfgetospeed(&tbuf
);
385 else if (speed
== B1200
)
387 else if (ws
.ws_row
!= 0)
388 screenheight
= ws
.ws_row
;
391 if ((realscreenheight
= ws
.ws_row
) == 0)
392 realscreenheight
= 24;
393 if ((screenwidth
= ws
.ws_col
) == 0)