Home | History | Annotate | Line # | Download | only in mail
head.c revision 1.1
      1  1.1  cgd /*
      2  1.1  cgd  * Copyright (c) 1980 Regents of the University of California.
      3  1.1  cgd  * All rights reserved.
      4  1.1  cgd  *
      5  1.1  cgd  * Redistribution and use in source and binary forms, with or without
      6  1.1  cgd  * modification, are permitted provided that the following conditions
      7  1.1  cgd  * are met:
      8  1.1  cgd  * 1. Redistributions of source code must retain the above copyright
      9  1.1  cgd  *    notice, this list of conditions and the following disclaimer.
     10  1.1  cgd  * 2. Redistributions in binary form must reproduce the above copyright
     11  1.1  cgd  *    notice, this list of conditions and the following disclaimer in the
     12  1.1  cgd  *    documentation and/or other materials provided with the distribution.
     13  1.1  cgd  * 3. All advertising materials mentioning features or use of this software
     14  1.1  cgd  *    must display the following acknowledgement:
     15  1.1  cgd  *	This product includes software developed by the University of
     16  1.1  cgd  *	California, Berkeley and its contributors.
     17  1.1  cgd  * 4. Neither the name of the University nor the names of its contributors
     18  1.1  cgd  *    may be used to endorse or promote products derived from this software
     19  1.1  cgd  *    without specific prior written permission.
     20  1.1  cgd  *
     21  1.1  cgd  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
     22  1.1  cgd  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     23  1.1  cgd  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     24  1.1  cgd  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
     25  1.1  cgd  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     26  1.1  cgd  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
     27  1.1  cgd  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     28  1.1  cgd  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     29  1.1  cgd  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     30  1.1  cgd  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     31  1.1  cgd  * SUCH DAMAGE.
     32  1.1  cgd  */
     33  1.1  cgd 
     34  1.1  cgd #ifndef lint
     35  1.1  cgd static char sccsid[] = "@(#)head.c	5.7 (Berkeley) 6/1/90";
     36  1.1  cgd #endif /* not lint */
     37  1.1  cgd 
     38  1.1  cgd #include "rcv.h"
     39  1.1  cgd 
     40  1.1  cgd /*
     41  1.1  cgd  * Mail -- a mail program
     42  1.1  cgd  *
     43  1.1  cgd  * Routines for processing and detecting headlines.
     44  1.1  cgd  */
     45  1.1  cgd 
     46  1.1  cgd /*
     47  1.1  cgd  * See if the passed line buffer is a mail header.
     48  1.1  cgd  * Return true if yes.  Note the extreme pains to
     49  1.1  cgd  * accomodate all funny formats.
     50  1.1  cgd  */
     51  1.1  cgd ishead(linebuf)
     52  1.1  cgd 	char linebuf[];
     53  1.1  cgd {
     54  1.1  cgd 	register char *cp;
     55  1.1  cgd 	struct headline hl;
     56  1.1  cgd 	char parbuf[BUFSIZ];
     57  1.1  cgd 
     58  1.1  cgd 	cp = linebuf;
     59  1.1  cgd 	if (*cp++ != 'F' || *cp++ != 'r' || *cp++ != 'o' || *cp++ != 'm' ||
     60  1.1  cgd 	    *cp++ != ' ')
     61  1.1  cgd 		return (0);
     62  1.1  cgd 	parse(linebuf, &hl, parbuf);
     63  1.1  cgd 	if (hl.l_from == NOSTR || hl.l_date == NOSTR) {
     64  1.1  cgd 		fail(linebuf, "No from or date field");
     65  1.1  cgd 		return (0);
     66  1.1  cgd 	}
     67  1.1  cgd 	if (!isdate(hl.l_date)) {
     68  1.1  cgd 		fail(linebuf, "Date field not legal date");
     69  1.1  cgd 		return (0);
     70  1.1  cgd 	}
     71  1.1  cgd 	/*
     72  1.1  cgd 	 * I guess we got it!
     73  1.1  cgd 	 */
     74  1.1  cgd 	return (1);
     75  1.1  cgd }
     76  1.1  cgd 
     77  1.1  cgd /*ARGSUSED*/
     78  1.1  cgd fail(linebuf, reason)
     79  1.1  cgd 	char linebuf[], reason[];
     80  1.1  cgd {
     81  1.1  cgd 
     82  1.1  cgd 	/*
     83  1.1  cgd 	if (value("debug") == NOSTR)
     84  1.1  cgd 		return;
     85  1.1  cgd 	fprintf(stderr, "\"%s\"\nnot a header because %s\n", linebuf, reason);
     86  1.1  cgd 	*/
     87  1.1  cgd }
     88  1.1  cgd 
     89  1.1  cgd /*
     90  1.1  cgd  * Split a headline into its useful components.
     91  1.1  cgd  * Copy the line into dynamic string space, then set
     92  1.1  cgd  * pointers into the copied line in the passed headline
     93  1.1  cgd  * structure.  Actually, it scans.
     94  1.1  cgd  */
     95  1.1  cgd parse(line, hl, pbuf)
     96  1.1  cgd 	char line[], pbuf[];
     97  1.1  cgd 	register struct headline *hl;
     98  1.1  cgd {
     99  1.1  cgd 	register char *cp;
    100  1.1  cgd 	char *sp;
    101  1.1  cgd 	char word[LINESIZE];
    102  1.1  cgd 
    103  1.1  cgd 	hl->l_from = NOSTR;
    104  1.1  cgd 	hl->l_tty = NOSTR;
    105  1.1  cgd 	hl->l_date = NOSTR;
    106  1.1  cgd 	cp = line;
    107  1.1  cgd 	sp = pbuf;
    108  1.1  cgd 	/*
    109  1.1  cgd 	 * Skip over "From" first.
    110  1.1  cgd 	 */
    111  1.1  cgd 	cp = nextword(cp, word);
    112  1.1  cgd 	cp = nextword(cp, word);
    113  1.1  cgd 	if (*word)
    114  1.1  cgd 		hl->l_from = copyin(word, &sp);
    115  1.1  cgd 	if (cp != NOSTR && cp[0] == 't' && cp[1] == 't' && cp[2] == 'y') {
    116  1.1  cgd 		cp = nextword(cp, word);
    117  1.1  cgd 		hl->l_tty = copyin(word, &sp);
    118  1.1  cgd 	}
    119  1.1  cgd 	if (cp != NOSTR)
    120  1.1  cgd 		hl->l_date = copyin(cp, &sp);
    121  1.1  cgd }
    122  1.1  cgd 
    123  1.1  cgd /*
    124  1.1  cgd  * Copy the string on the left into the string on the right
    125  1.1  cgd  * and bump the right (reference) string pointer by the length.
    126  1.1  cgd  * Thus, dynamically allocate space in the right string, copying
    127  1.1  cgd  * the left string into it.
    128  1.1  cgd  */
    129  1.1  cgd char *
    130  1.1  cgd copyin(src, space)
    131  1.1  cgd 	register char *src;
    132  1.1  cgd 	char **space;
    133  1.1  cgd {
    134  1.1  cgd 	register char *cp;
    135  1.1  cgd 	char *top;
    136  1.1  cgd 
    137  1.1  cgd 	top = cp = *space;
    138  1.1  cgd 	while (*cp++ = *src++)
    139  1.1  cgd 		;
    140  1.1  cgd 	*space = cp;
    141  1.1  cgd 	return (top);
    142  1.1  cgd }
    143  1.1  cgd 
    144  1.1  cgd /*
    145  1.1  cgd  * Test to see if the passed string is a ctime(3) generated
    146  1.1  cgd  * date string as documented in the manual.  The template
    147  1.1  cgd  * below is used as the criterion of correctness.
    148  1.1  cgd  * Also, we check for a possible trailing time zone using
    149  1.1  cgd  * the tmztype template.
    150  1.1  cgd  */
    151  1.1  cgd 
    152  1.1  cgd /*
    153  1.1  cgd  * 'A'	An upper case char
    154  1.1  cgd  * 'a'	A lower case char
    155  1.1  cgd  * ' '	A space
    156  1.1  cgd  * '0'	A digit
    157  1.1  cgd  * 'O'	An optional digit or space
    158  1.1  cgd  * ':'	A colon
    159  1.1  cgd  * 'N'	A new line
    160  1.1  cgd  */
    161  1.1  cgd char ctype[] = "Aaa Aaa O0 00:00:00 0000";
    162  1.1  cgd char tmztype[] = "Aaa Aaa O0 00:00:00 AAA 0000";
    163  1.1  cgd 
    164  1.1  cgd isdate(date)
    165  1.1  cgd 	char date[];
    166  1.1  cgd {
    167  1.1  cgd 
    168  1.1  cgd 	return cmatch(date, ctype) || cmatch(date, tmztype);
    169  1.1  cgd }
    170  1.1  cgd 
    171  1.1  cgd /*
    172  1.1  cgd  * Match the given string (cp) against the given template (tp).
    173  1.1  cgd  * Return 1 if they match, 0 if they don't
    174  1.1  cgd  */
    175  1.1  cgd cmatch(cp, tp)
    176  1.1  cgd 	register char *cp, *tp;
    177  1.1  cgd {
    178  1.1  cgd 
    179  1.1  cgd 	while (*cp && *tp)
    180  1.1  cgd 		switch (*tp++) {
    181  1.1  cgd 		case 'a':
    182  1.1  cgd 			if (!islower(*cp++))
    183  1.1  cgd 				return 0;
    184  1.1  cgd 			break;
    185  1.1  cgd 		case 'A':
    186  1.1  cgd 			if (!isupper(*cp++))
    187  1.1  cgd 				return 0;
    188  1.1  cgd 			break;
    189  1.1  cgd 		case ' ':
    190  1.1  cgd 			if (*cp++ != ' ')
    191  1.1  cgd 				return 0;
    192  1.1  cgd 			break;
    193  1.1  cgd 		case '0':
    194  1.1  cgd 			if (!isdigit(*cp++))
    195  1.1  cgd 				return 0;
    196  1.1  cgd 			break;
    197  1.1  cgd 		case 'O':
    198  1.1  cgd 			if (*cp != ' ' && !isdigit(*cp))
    199  1.1  cgd 				return 0;
    200  1.1  cgd 			cp++;
    201  1.1  cgd 			break;
    202  1.1  cgd 		case ':':
    203  1.1  cgd 			if (*cp++ != ':')
    204  1.1  cgd 				return 0;
    205  1.1  cgd 			break;
    206  1.1  cgd 		case 'N':
    207  1.1  cgd 			if (*cp++ != '\n')
    208  1.1  cgd 				return 0;
    209  1.1  cgd 			break;
    210  1.1  cgd 		}
    211  1.1  cgd 	if (*cp || *tp)
    212  1.1  cgd 		return 0;
    213  1.1  cgd 	return (1);
    214  1.1  cgd }
    215  1.1  cgd 
    216  1.1  cgd /*
    217  1.1  cgd  * Collect a liberal (space, tab delimited) word into the word buffer
    218  1.1  cgd  * passed.  Also, return a pointer to the next word following that,
    219  1.1  cgd  * or NOSTR if none follow.
    220  1.1  cgd  */
    221  1.1  cgd char *
    222  1.1  cgd nextword(wp, wbuf)
    223  1.1  cgd 	register char *wp, *wbuf;
    224  1.1  cgd {
    225  1.1  cgd 	register c;
    226  1.1  cgd 
    227  1.1  cgd 	if (wp == NOSTR) {
    228  1.1  cgd 		*wbuf = 0;
    229  1.1  cgd 		return (NOSTR);
    230  1.1  cgd 	}
    231  1.1  cgd 	while ((c = *wp++) && c != ' ' && c != '\t') {
    232  1.1  cgd 		*wbuf++ = c;
    233  1.1  cgd 		if (c == '"') {
    234  1.1  cgd  			while ((c = *wp++) && c != '"')
    235  1.1  cgd  				*wbuf++ = c;
    236  1.1  cgd  			if (c == '"')
    237  1.1  cgd  				*wbuf++ = c;
    238  1.1  cgd 			else
    239  1.1  cgd 				wp--;
    240  1.1  cgd  		}
    241  1.1  cgd 	}
    242  1.1  cgd 	*wbuf = '\0';
    243  1.1  cgd 	for (; c == ' ' || c == '\t'; c = *wp++)
    244  1.1  cgd 		;
    245  1.1  cgd 	if (c == 0)
    246  1.1  cgd 		return (NOSTR);
    247  1.1  cgd 	return (wp - 1);
    248  1.1  cgd }
    249