summary refs log tree commit diff
path: root/hdr.c
blob: 63485b42e4b2cb54dcfd24d2d1c64a77f4174489 (plain) (blame)
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
#include <stdio.h>
#include <stdlib.h>
#include <stdint.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <unistd.h>
#include <ctype.h>
#include <string.h>
#include <errno.h>
#include <time.h>
#include <wchar.h>

#include "blaze822.h"

void
header(char *hdr, size_t l, char *file)
{
	struct message *msg;

	msg = blaze822(file);
	if (!msg)
		return;

	char *v = blaze822_hdr_(msg, hdr, l);
	if (v)
		printf("%s\n", v);
}

int
main(int argc, char *argv[])
{
	char *line = 0;
	size_t linelen = 0;
	int read;

	int i = 0;

	size_t l = strlen(argv[1])+2;
        char *hdr = malloc(l);
	hdr[0] = 0;
	char *s = hdr+1;
	char *t = argv[1];
	while (*t)
		*s++ = tolower(*t++);
	*s = ':';

	if (argc == 2 || (argc == 3 && strcmp(argv[1], "-") == 0)) {
		while ((read = getdelim(&line, &linelen, '\n', stdin)) != -1) {
			if (line[read-1] == '\n') line[read-1] = 0;
			header(hdr, l, line);
			i++;
		}
	} else {
		for (i = 2; i < argc; i++) {
			header(hdr, l, argv[i]);
		}
		i--;
	}

	printf("%d mails scanned\n", i);
	
	return 0;
}