1 /* 2 * Copyright (c) 1980, 1988, 1993 3 * The Regents of the University of California. All rights reserved. 4 * 5 * Redistribution and use in source and binary forms, with or without 6 * modification, are permitted provided that the following conditions 7 * are met: 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. 20 * 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 31 * SUCH DAMAGE. 32 */ 33 34 #ifndef lint 35 static const char copyright[] = 36 "@(#) Copyright (c) 1980, 1988, 1993\n\ 37 The Regents of the University of California. All rights reserved.\n"; 38 #endif /* not lint */ 39 40 #ifndef lint 41 #if 0 42 static char sccsid[] = "@(#)from.c 8.1 (Berkeley) 6/6/93"; 43 #endif 44 static const char rcsid[] = 45 "$FreeBSD$"; 46 #endif /* not lint */ 47 48 #include <sys/types.h> 49 #include <ctype.h> 50 #include <err.h> 51 #include <pwd.h> 52 #include <stdio.h> 53 #include <stdlib.h> 54 #include <paths.h> 55 #include <string.h> 56 #include <unistd.h> 57 58 int match __P((char *, char *)); 59 static void usage __P((void)); 60 61 int 62 main(argc, argv) 63 int argc; 64 char **argv; 65 { 66 struct passwd *pwd; 67 int ch, count, newline; 68 char *file, *sender, *p; 69 #if MAXPATHLEN > BUFSIZ 70 char buf[MAXPATHLEN]; 71 #else 72 char buf[BUFSIZ]; 73 #endif 74 75 file = sender = NULL; 76 count = -1; 77 while ((ch = getopt(argc, argv, "cf:s:")) != -1) 78 switch (ch) { 79 case 'c': 80 count = 0; 81 break; 82 case 'f': 83 file = optarg; 84 break; 85 case 's': 86 sender = optarg; 87 for (p = sender; *p; ++p) 88 if (isupper(*p)) 89 *p = tolower(*p); 90 break; 91 case '?': 92 default: 93 usage(); 94 } 95 argv += optind; 96 97 if (!file) { 98 if (*argv) { 99 (void)snprintf(buf, sizeof(buf), "%s/%s", _PATH_MAILDIR, *argv); 100 file = buf; 101 } else { 102 if (!(file = getenv("MAIL"))) { 103 if (!(pwd = getpwuid(getuid()))) 104 errx(1, "no password file entry for you"); 105 file = pwd->pw_name; 106 (void)snprintf(buf, sizeof(buf), 107 "%s/%s", _PATH_MAILDIR, file); 108 file = buf; 109 } 110 } 111 } 112 113 /* read from stdin */ 114 if (strcmp(file, "-") == 0) { 115 } 116 else if (!freopen(file, "r", stdin)) { 117 errx(1, "can't read %s", file); 118 } 119 for (newline = 1; fgets(buf, sizeof(buf), stdin);) { 120 if (*buf == '\n') { 121 newline = 1; 122 continue; 123 } 124 if (newline && !strncmp(buf, "From ", 5) && 125 (!sender || match(buf + 5, sender))) { 126 if (count != -1) 127 count++; 128 else 129 printf("%s", buf); 130 } 131 newline = 0; 132 } 133 if (count != -1) 134 printf("There %s %d message%s in your incoming mailbox.\n", 135 count == 1 ? "is" : "are", count, count == 1 ? "" : "s"); 136 exit(0); 137 } 138 139 static void 140 usage() 141 { 142 fprintf(stderr, "usage: from [-c] [-f file] [-s sender] [user]\n"); 143 exit(1); 144 } 145 146 int 147 match(line, sender) 148 register char *line, *sender; 149 { 150 register char ch, pch, first, *p, *t; 151 152 for (first = *sender++;;) { 153 if (isspace(ch = *line)) 154 return(0); 155 ++line; 156 if (isupper(ch)) 157 ch = tolower(ch); 158 if (ch != first) 159 continue; 160 for (p = sender, t = line;;) { 161 if (!(pch = *p++)) 162 return(1); 163 if (isupper(ch = *t++)) 164 ch = tolower(ch); 165 if (ch != pch) 166 break; 167 } 168 } 169 /* NOTREACHED */ 170 } 171