1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293
|
static char rcsid[] ="@(#)$Id: summarize.c,v 5.8 1993/02/08 18:38:12 syd Exp $";
/*******************************************************************************
* The Elm Mail System - $Revision: 5.8 $ $State: Exp $
*
* Copyright (c) 1988-1992 USENET Community Trust
* Copyright (c) 1986,1987 Dave Taylor
*******************************************************************************
* Bug reports, patches, comments, suggestions should be sent to:
*
* Philip Brown filter@bolthole.com
*
*******************************************************************************
* $Log: summarize.c,v $
* Revision 5.8 1993/02/08 18:38:12 syd
* Fix to copy_file to ignore unescaped from if content_length not yet reached.
* Fixes to NLS messages match number of newlines between default messages
* and NLS messages. Also an extra ) was removed.
* From: Jan Djarv <Jan.Djarv@sa.erisoft.se>
*
* Revision 5.7 1993/01/27 19:40:01 syd
* I implemented a change to filter's default verbose message format
* including %x %X style date and time along with username
* From: mark@drd.com (Mark Lawrence)
*
* Revision 5.6 1992/12/11 01:45:04 syd
* remove sys/types.h include, it is now included by defs.h
* and this routine includes defs.h or indirectly includes defs.h
* From: Syd
*
* Revision 5.5 1992/12/07 05:14:19 syd
* add sys/types.h for time_t
* From: Syd
*
* Revision 5.4 1992/11/15 01:40:43 syd
* Add regexp processing to filter.
* Add execc operator
* From: Jan Djarv <Jan.Djarv@sa.erisoft.se>
*
* Revision 5.3 1992/11/07 20:48:55 syd
* fix applied rule count message
*
* Revision 5.2 1992/10/24 14:20:24 syd
* remove the 25 (MAXRULES) limitation.
* Basically it mallocs rules in hunks of RULESINC (25) as it goes along.
* From: Jan Djarv <Jan.Djarv@sa.erisoft.se>
*
* Revision 5.1 1992/10/03 22:18:09 syd
* Initial checkin as of 2.4 Release at PL0
*
*
******************************************************************************/
/** This routine is called from the filter program (or can be called
directly with the correct arguments) and summarizes the users filterlog
file. To be honest, there are two sorts of summaries that are
available - either the '.filterlog' file can be output (filter -S)
or a summary by rule and times acted upon can be output (filter -s).
Either way, this program will delete the two associated files each
time ($HOME/.filterlog and $HOME/.filtersum) *if* the -c option is
used to the program (e.g. clear_logs is set to TRUE).
**/
#include <stdio.h>
#include "defs.h"
#include "filter.h"
#include "s_filter.h"
extern char *date_n_user();
void show_summary()
{
/* Summarize usage of the program... */
FILE *fd; /* for output to temp file! */
char buffer[SLEN]; /* input buffer space */
int erroneous_rules = 0,
default_rules = 0,
messages_filtered = 0, /* how many have we touched? */
rule,
*applied;
if ((fd = fopen(filtersum, "r")) == NULL) {
if (outfptr != NULL)
fprintf(outfptr,catgets(elm_msg_cat,
FilterSet,FilterCantOpenFiltersum,
"filter (%s): Can't open filtersum file %s!\n"),
date_n_user(), filtersum);
if (outfptr != NULL) fclose(outfptr);
exit(1);
}
applied = (int *)malloc(sizeof(int)*total_rules);
if (applied == NULL){
if (outfptr != NULL)
fprintf(outfptr,catgets(elm_msg_cat,
FilterSet,FilterOutOfMemory,
"filter (%s): Out of memory [malloc failed]\n"),
username);
if (outfptr != NULL) fclose(outfptr);
exit(1);
}
for (rule=0;rule < total_rules; rule++)
applied[rule] = 0; /* initialize it all! */
/** Next we need to read it all in, incrementing by which rule
was used. The format is simple - each line represents a
single application of a rule, or '-1' if the default action
was taken. Simple stuff, eh? But oftentimes the best.
**/
while (fgets(buffer, SLEN, fd) != NULL) {
if ((rule = atoi(buffer)) > total_rules || rule < -1) {
if (outfptr != NULL)
fprintf(outfptr,catgets(elm_msg_cat,
FilterSet,FilterWarningInvalidForShort,
"filter (%s): Warning - rule #%d is invalid data for short summary!!\n"),
date_n_user(), rule);
erroneous_rules++;
}
else if (rule == -1)
default_rules++;
else
applied[rule]++;
messages_filtered++;
}
fclose(fd);
/** now let's summarize the data... **/
if (outfptr == NULL) return; /* no reason to go further */
fprintf(outfptr,"%s",catgets(elm_msg_cat,FilterSet,FilterSumTitle,
"\n\t\t\tA Summary of Filter Activity\n"));
fprintf(outfptr,
"\t\t\t----------------------------\n\n");
fprintf(outfptr,
messages_filtered>1 ?
catgets(elm_msg_cat,
FilterSet,FilterTotalMsgsFlrdPlural,
"A total of %d messages were filtered:\n\n") :
catgets(elm_msg_cat,
FilterSet,FilterTotalMessagesFiltered,
"A total of %d message was filtered:\n\n"),
messages_filtered);
if (erroneous_rules)
{
fprintf(outfptr,
erroneous_rules>1 ?
catgets(elm_msg_cat,
FilterSet,FilterErroneousRulesPlural,
"[Warning: %d erroneous rules were logged and ignored!]") :
catgets(elm_msg_cat,
FilterSet,FilterErroneousRules,
"[Warning: %d erroneous rule was logged and ignored!]"),
erroneous_rules);
}
if (default_rules) {
fprintf(outfptr,"%s",catgets(elm_msg_cat,FilterSet,FilterDefaultRuleMesg,
"The default rule of putting mail into your mailbox"));
fprintf(outfptr,
default_rules>1 ?
catgets(elm_msg_cat,FilterSet,FilterAppliedTimesPlural,
"\n\tapplied %d times (%d%%)\n\n") :
catgets(elm_msg_cat,FilterSet,FilterAppliedTimes,
"\n\tapplied %d time (%d%%)\n\n"),
default_rules,
(default_rules*100+(messages_filtered>>1))/
messages_filtered);
}
/** and now for each rule we used... **/
for (rule = 0; rule < total_rules; rule++) {
if (applied[rule]) {
fprintf(outfptr,catgets(elm_msg_cat,FilterSet,FilterRuleNum,
"Rule #%d: "), rule+1);
switch (rules[rule].action) {
case BOUNCE: fprintf(outfptr,
"%s",
catgets(elm_msg_cat,
FilterSet,FilterBouncedMesg,
"(bounce mail)"));
break;
case LEAVE: fprintf(outfptr,
"%s",
catgets(elm_msg_cat,
FilterSet,FilterLeaveMesg,
"(leave mail in mailbox)"));
break;
case DELETE_MSG: fprintf(outfptr,
"%s",
catgets(elm_msg_cat,
FilterSet,FilterDeleteMesg,
"(delete message)"));
break;
case SAVE : fprintf(outfptr,catgets(elm_msg_cat,
FilterSet,
FilterSaveMesg,
"(save in \"%s\")"),
rules[rule].argument2);
break;
case SAVECC: fprintf(outfptr,catgets(elm_msg_cat,
FilterSet,
FilterSaveCcMesg,
"(left in mailbox and saved in \"%s\")"),
rules[rule].argument2);
break;
case FORWARD: fprintf(outfptr,catgets(elm_msg_cat,
FilterSet,
FilterForwardMesg,
"(forwarded to \"%s\")"),
rules[rule].argument2);
break;
case RESEND: fprintf(outfptr,catgets(elm_msg_cat,
FilterSet,
FilterResentMesg,
"(resent to \"%s\")"),
rules[rule].argument2);
break;
case FORWARDC: fprintf(outfptr,catgets(elm_msg_cat,
FilterSet,
FilterForwardCMesg,
"(left in mailbox and forwarded to \"%s\")"),
rules[rule].argument2);
break;
case EXEC : fprintf(outfptr,catgets(elm_msg_cat,
FilterSet,
FilterExecMesg,
"(given to command \"%s\")"),
rules[rule].argument2);
break;
case EXECC : fprintf(outfptr,catgets(elm_msg_cat,
FilterSet,
FilterExecCMesg,
"(left in mailbox and given to command \"%s\")"),
rules[rule].argument2);
break;
}
fprintf(outfptr,
applied[rule]>1 ?
catgets(elm_msg_cat,FilterSet,FilterAppliedTimesPlural,
"\n\tapplied %d times (%d%%)\n\n") :
catgets(elm_msg_cat,FilterSet,FilterAppliedTimes,
"\n\tapplied %d time (%d%%)\n\n"),
applied[rule],
(applied[rule]*100+(messages_filtered>>1))/
messages_filtered);
}
}
if (long_summary) {
/* next, after a ^L, include the actual log file... */
if ((fd = fopen(filterlog, "r")) == NULL) {
fprintf(outfptr,catgets(elm_msg_cat,
FilterSet,FilterCantOpenFilterlog,
"filter (%s): Can't open filterlog file %s!\n"),
date_n_user(), filterlog);
}
else {
fprintf(outfptr,catgets(elm_msg_cat,FilterSet,FilterExplicitLog,
"\n\n\n%c\n\nExplicit log of each action;\n\n"),
(char) 12);
while (fgets(buffer, SLEN, fd) != NULL)
fprintf(outfptr, "%s", buffer);
fprintf(outfptr, "\n-----\n");
fclose(fd);
}
}
/* now remove the log files, please! */
if (clear_logs) {
unlink(filterlog);
unlink(filtersum);
}
return;
}
|