1b13b4ce0Sbloom /*
2*e0d5f0acSbostic  * Copyright (c) 1988 Regents of the University of California.
3*e0d5f0acSbostic  * All rights reserved.
4*e0d5f0acSbostic  *
5*e0d5f0acSbostic  * Redistribution and use in source and binary forms are permitted
6*e0d5f0acSbostic  * provided that this notice is preserved and that due credit is given
7*e0d5f0acSbostic  * to the University of California at Berkeley. The name of the University
8*e0d5f0acSbostic  * may not be used to endorse or promote products derived from this
9*e0d5f0acSbostic  * software without specific prior written permission. This software
10*e0d5f0acSbostic  * is provided ``as is'' without express or implied warranty.
11*e0d5f0acSbostic  *
12*e0d5f0acSbostic  *	@(#)mailstats.h	5.2 (Berkeley) 03/13/88
13*e0d5f0acSbostic  *
14*e0d5f0acSbostic  *  Sendmail
15*e0d5f0acSbostic  *  Copyright (c) 1983  Eric P. Allman
16*e0d5f0acSbostic  *  Berkeley, California
17*e0d5f0acSbostic  *
18b13b4ce0Sbloom  */
19b13b4ce0Sbloom 
20b13b4ce0Sbloom /*
21b13b4ce0Sbloom **  Statistics structure.
22b13b4ce0Sbloom */
23b13b4ce0Sbloom 
24b13b4ce0Sbloom struct statistics
25b13b4ce0Sbloom {
26b13b4ce0Sbloom 	time_t	stat_itime;		/* file initialization time */
27b13b4ce0Sbloom 	short	stat_size;		/* size of this structure */
28b13b4ce0Sbloom 	long	stat_nf[MAXMAILERS];	/* # msgs from each mailer */
29b13b4ce0Sbloom 	long	stat_bf[MAXMAILERS];	/* kbytes from each mailer */
30b13b4ce0Sbloom 	long	stat_nt[MAXMAILERS];	/* # msgs to each mailer */
31b13b4ce0Sbloom 	long	stat_bt[MAXMAILERS];	/* kbytes to each mailer */
32b13b4ce0Sbloom };
33