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 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308
|
/*
** FILE: mbox2hypermail.c
** AUTHOR: Kent Landfield
**
** ABSTRACT: read mailbox and print out messages individually and
*** ship to hypermail to update a database.
**
** This software is Copyright (c) 1989 by Kent Landfield.
**
** Permission is hereby granted to copy, distribute or otherwise
** use any part of this package as long as you do not try to make
** money from it or pretend that you wrote it. This copyright
** notice must be maintained in any copy made.
**
*/
#include <stdio.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <unistd.h>
#include <ctype.h>
#include <string.h>
#include <stdlib.h>
#include "lists.h"
#include "../config.h"
#undef isspace
#define USAGE "usage: %s -D YYYY [ -tvd ] [ mailbox ]\n"
#define MAX_MONTH_LEN 20
char *progname; /* name of executable */
char lastline[BUFSIZ]; /* read-behind buffer */
char s[BUFSIZ]; /* read buffer */
char *year;
char *month;
char *configfile;
int debug;
int verbose;
int test;
FILE *errfp; /* standard error file pointer */
FILE *logfp; /* standard output file pointer */
FILE *mailbox;
extern char *optarg;
extern int optind;
#ifdef lint
extern int getopt(int, char * const *, const char *);
extern int strcasecmp(const char *, const char *);
extern char *strdup(const char *);
#endif
static FILE *safe_tmpfile(void)
{
int fd;
char *tfile;
tfile = strdup("hn-inXXXXXX");
if ((fd = mkstemp(tfile)) < 0)
return(NULL);
unlink(tfile);
if (fchmod(fd, S_IRUSR | S_IWUSR) != 0)
return(NULL);
return(fdopen(fd, "w+b"));
}
static FILE *efopen(char *file, char *mode)
{
FILE *fp;
if ((fp = fopen(file, mode)) == NULL) {
(void)fprintf(errfp, "Can't open file %s\n", file);
exit(10);
}
return (fp);
}
static char *readline(int size, FILE *file)
{
/*
** If not first time through, save the previous line read into lastline.
*/
if (s[0] != '\0')
(void)strcpy(lastline, s);
if (fgets(s, size, file) == NULL)
return (NULL);
return (s);
}
static int blankline(char *line)
{
register char *cp;
for (cp = line; *cp; cp++) {
if (!isspace(*cp))
return (0);
}
return (1);
}
static void process_messages(char *flname)
{
char msgfile[BUFSIZ];
char cmdstr[BUFSIZ];
char from[BUFSIZ];
int cntr;
int first;
FILE *msgfp;
if (verbose)
fprintf(stderr, "Processing mailbox %s\n", flname);
/*
** Standard input or a mailbox file ?
*/
if (flname != NULL)
mailbox = efopen(flname, "r");
else
mailbox = stdin;
first = 1;
cntr = 0;
lastline[0] = '\0';
/*
** Create message file
*/
if ((msgfp = safe_tmpfile()) == NULL) {
fprintf(stderr,"%s: Can't open tempfile\n",progname);
exit(10);
}
if (month != NULL) { /* AUDIT biege: external input -> cmd exec + bof */
if (configfile != NULL) {
#ifdef HAVE_SNPRINTF
snprintf(cmdstr, sizeof(cmdstr),
#else
sprintf(cmdstr,
#endif
"/bin/cat %s | %s -u -i -c %s -d %s/%s/%s",
msgfile, HYPERMAIL, configfile, ARCHIVE, year, month);
}
else {
#ifdef HAVE_SNPRINTF
snprintf(cmdstr, sizeof(cmdstr),
#else
sprintf(cmdstr,
#endif
"/bin/cat %s | %s -u -i -d %s/%s/%s -l \"%s\" -b %s",
msgfile, HYPERMAIL, ARCHIVE, year, month, LABEL,
ABOUT_LINK);
}
}
else {
if (configfile != NULL) {
#ifdef HAVE_SNPRINTF
snprintf(cmdstr, sizeof(cmdstr),
#else
sprintf(cmdstr,
#endif
"/bin/cat %s | %s -u -i -c %s -d %s/%s",
msgfile, HYPERMAIL, configfile, ARCHIVE, year);
}
else {
#ifdef HAVE_SNPRINTF
snprintf(cmdstr, sizeof(cmdstr),
#else
sprintf(cmdstr,
#endif
"/bin/cat %s | %s -u -i -d %s/%s -l \"%s\" -b %s",
msgfile, HYPERMAIL, ARCHIVE, year, LABEL, ABOUT_LINK);
}
}
if (debug) {
fprintf(stderr, "cmdstr == [%s]\n", cmdstr);
exit(0);
}
while (readline(sizeof(s), mailbox) != NULL) {
if (strncmp(s, "From ", 5) == 0) {
strcpy(from, s);
if (first == 1) { /* First From in file ? */
first = 0;
}
else if (blankline(lastline)) {
/*
** If From and last line is a blank line we have
** found the message separator. Time to go to work.
*/
fflush(msgfp);
fclose(msgfp);
if (verbose)
fputs(from, errfp);
if (!test)
system(cmdstr);
++cntr;
msgfp = efopen(msgfile, "w");
}
}
(void)fputs(s, msgfp);
}
fclose(mailbox);
fflush(msgfp);
fclose(msgfp);
if (verbose)
fputs(from, errfp);
if (!test)
system(cmdstr);
if (!first)
++cntr;
if (verbose)
fprintf(stderr, "%d messages processed\n", cntr);
}
/*
** Ye Olde Main
*/
int main(int argc, char **argv)
{
int c;
progname = argv[0];
debug = verbose = 0;
logfp = stdout;
errfp = stderr;
configfile = CONFIGFILE;
if (argc > 1) {
while ((c = getopt(argc, argv, "c:dtvY:M:")) != EOF) {
switch (c) {
case 'c':
configfile = strdup(optarg);
break;
case 'M':
month = optarg;
if (strlen(month) > MAX_MONTH_LEN) {
(void)fprintf(errfp, "%s: Invalid month format, %d character month maximum.\n", progname, MAX_MONTH_LEN);
return (1);
}
break;
case 'Y':
year = optarg;
/* check and make sure it is a year.*/
if (strlen(year) > 4) {
(void)fprintf(errfp, "%s: Invalid year format, 4 digit year maximum.\n", progname);
return (1);
}
break;
case 'd':
debug++;
break;
case 'v':
verbose++;
break;
case 't':
test++;
verbose++;
break;
default:
(void)fprintf(errfp, USAGE, progname);
return (1);
}
}
}
if (year == NULL) {
(void)fprintf(errfp, "%s: must specify the 4 digit year\n", progname);
(void)fprintf(errfp, USAGE, progname);
return (1);
}
if (strcasecmp(configfile, "NONE") == 0)
configfile = NULL;
/* if no month just put it in the year directory */
if ((optind >= argc) || (argc == 1)) { /* file from stdin */
process_messages(NULL);
}
else {
for (; optind < argc; optind++) /* process files to print */
process_messages(argv[optind]);
}
return (0); /* terminate this process */
}
|