2016-07-11 14:11:52 +00:00
|
|
|
#include <sys/stat.h>
|
2016-07-18 15:06:41 +00:00
|
|
|
#include <sys/types.h>
|
|
|
|
|
2016-07-11 14:11:52 +00:00
|
|
|
#include <ctype.h>
|
|
|
|
#include <errno.h>
|
2016-07-18 15:06:41 +00:00
|
|
|
#include <fcntl.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <unistd.h>
|
2016-07-11 14:11:52 +00:00
|
|
|
|
|
|
|
#include "blaze822.h"
|
|
|
|
|
2016-07-28 11:08:04 +00:00
|
|
|
static char *hflag;
|
|
|
|
static int Aflag;
|
|
|
|
static int Dflag;
|
2016-08-17 13:45:09 +00:00
|
|
|
static int Hflag;
|
2016-07-28 11:08:04 +00:00
|
|
|
static int Mflag;
|
|
|
|
static int dflag;
|
2016-07-11 14:11:52 +00:00
|
|
|
|
2016-08-17 13:45:09 +00:00
|
|
|
static char *curfile;
|
2016-08-08 12:23:20 +00:00
|
|
|
static int status;
|
|
|
|
|
2016-07-14 13:40:57 +00:00
|
|
|
static void
|
|
|
|
printhdr(char *hdr)
|
|
|
|
{
|
|
|
|
int uc = 1;
|
|
|
|
|
2016-08-17 13:45:09 +00:00
|
|
|
if (Hflag)
|
|
|
|
printf("%s\t", curfile);
|
|
|
|
|
2016-07-14 13:40:57 +00:00
|
|
|
while (*hdr && *hdr != ':') {
|
|
|
|
putc(uc ? toupper(*hdr) : *hdr, stdout);
|
|
|
|
uc = (*hdr == '-');
|
|
|
|
hdr++;
|
|
|
|
}
|
|
|
|
fputs(hdr, stdout);
|
|
|
|
fputc('\n', stdout);
|
2016-08-08 12:23:20 +00:00
|
|
|
|
|
|
|
status = 0;
|
2016-07-14 13:40:57 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2016-07-28 11:08:04 +00:00
|
|
|
headerall(struct message *msg)
|
|
|
|
{
|
|
|
|
char *h = 0;
|
|
|
|
while ((h = blaze822_next_header(msg, h))) {
|
|
|
|
if (dflag) {
|
|
|
|
char d[4096];
|
|
|
|
blaze822_decode_rfc2047(d, h, sizeof d, "UTF-8");
|
|
|
|
printhdr(d);
|
|
|
|
} else {
|
|
|
|
printhdr(h);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
blaze822_free(msg);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
print_addresses(char *s)
|
|
|
|
{
|
|
|
|
char *disp, *addr;
|
2017-01-21 16:47:14 +00:00
|
|
|
char sdec[4096];
|
|
|
|
|
|
|
|
if (dflag) {
|
|
|
|
blaze822_decode_rfc2047(sdec, s, sizeof sdec, "UTF-8");
|
|
|
|
sdec[sizeof sdec - 1] = 0;
|
|
|
|
s = sdec;
|
|
|
|
}
|
|
|
|
|
2016-07-28 11:08:04 +00:00
|
|
|
while ((s = blaze822_addr(s, &disp, &addr))) {
|
2016-08-17 13:45:09 +00:00
|
|
|
if (Hflag && (disp || addr))
|
|
|
|
printf("%s\t", curfile);
|
2017-01-21 16:47:14 +00:00
|
|
|
|
|
|
|
if (disp && addr)
|
|
|
|
printf("%s <%s>\n", disp, addr);
|
|
|
|
else if (addr)
|
2016-07-28 11:08:04 +00:00
|
|
|
printf("%s\n", addr);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
print_date(char *s)
|
|
|
|
{
|
|
|
|
time_t t = blaze822_date(s);
|
|
|
|
if (t == -1)
|
|
|
|
return;
|
|
|
|
printf("%ld\n", t);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
print_decode_header(char *s)
|
|
|
|
{
|
|
|
|
char d[4096];
|
|
|
|
blaze822_decode_rfc2047(d, s, sizeof d, "UTF-8");
|
|
|
|
printf("%s\n", d);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
print_header(char *v)
|
|
|
|
{
|
2016-08-08 12:23:20 +00:00
|
|
|
status = 0;
|
|
|
|
|
2016-08-17 13:45:09 +00:00
|
|
|
if (Hflag && !Aflag)
|
|
|
|
printf("%s\t", curfile);
|
|
|
|
|
2016-07-28 11:08:04 +00:00
|
|
|
if (Aflag)
|
|
|
|
print_addresses(v);
|
|
|
|
else if (Dflag)
|
|
|
|
print_date(v);
|
|
|
|
else if (dflag)
|
|
|
|
print_decode_header(v);
|
|
|
|
else
|
|
|
|
printf("%s\n", v);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
headermany(struct message *msg)
|
|
|
|
{
|
|
|
|
char *hdr = 0;
|
|
|
|
while ((hdr = blaze822_next_header(msg, hdr))) {
|
|
|
|
char *h = hflag;
|
|
|
|
while (*h) {
|
|
|
|
char *n = strchr(h, ':');
|
|
|
|
if (n)
|
|
|
|
*n = 0;
|
|
|
|
|
|
|
|
size_t l = strlen(h);
|
|
|
|
if (strncmp(hdr, h, l) == 0 && hdr[l] == ':') {
|
|
|
|
hdr += l + 1;
|
|
|
|
while (*hdr == ' ' || *hdr == '\t')
|
|
|
|
hdr++;
|
|
|
|
print_header(hdr);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (n) {
|
|
|
|
*n = ':';
|
|
|
|
h = n + 1;
|
|
|
|
} else {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
blaze822_free(msg);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
header(char *file)
|
2016-07-14 13:40:57 +00:00
|
|
|
{
|
|
|
|
struct message *msg;
|
|
|
|
|
2016-07-28 11:08:04 +00:00
|
|
|
while (*file == ' ' || *file == '\t')
|
|
|
|
file++;
|
|
|
|
|
2016-08-17 13:45:09 +00:00
|
|
|
curfile = file;
|
|
|
|
|
2016-07-14 13:40:57 +00:00
|
|
|
msg = blaze822(file);
|
|
|
|
if (!msg)
|
|
|
|
return;
|
|
|
|
|
2016-07-28 11:08:04 +00:00
|
|
|
if (!hflag)
|
|
|
|
return headerall(msg);
|
|
|
|
if (Mflag)
|
|
|
|
return headermany(msg);
|
|
|
|
|
|
|
|
char *h = hflag;
|
|
|
|
while (*h) {
|
|
|
|
char *n = strchr(h, ':');
|
|
|
|
if (n)
|
|
|
|
*n = 0;
|
|
|
|
char *v = blaze822_chdr(msg, h);
|
|
|
|
if (v)
|
|
|
|
print_header(v);
|
|
|
|
if (n) {
|
|
|
|
*n = ':';
|
|
|
|
h = n + 1;
|
|
|
|
} else {
|
|
|
|
break;
|
|
|
|
}
|
2016-07-15 14:51:43 +00:00
|
|
|
}
|
2016-07-28 11:08:04 +00:00
|
|
|
|
|
|
|
blaze822_free(msg);
|
2016-07-14 13:40:57 +00:00
|
|
|
}
|
|
|
|
|
2016-07-11 14:11:52 +00:00
|
|
|
int
|
|
|
|
main(int argc, char *argv[])
|
|
|
|
{
|
2016-07-28 11:08:04 +00:00
|
|
|
int c;
|
2016-08-17 13:45:09 +00:00
|
|
|
while ((c = getopt(argc, argv, "h:ADHMd")) != -1)
|
2016-07-28 11:08:04 +00:00
|
|
|
switch(c) {
|
|
|
|
case 'h': hflag = optarg; break;
|
|
|
|
case 'A': Aflag = 1; break;
|
|
|
|
case 'D': Dflag = 1; break;
|
2016-08-17 13:45:09 +00:00
|
|
|
case 'H': Hflag = 1; break;
|
2016-07-28 11:08:04 +00:00
|
|
|
case 'M': Mflag = 1; break;
|
|
|
|
case 'd': dflag = 1; break;
|
|
|
|
default:
|
|
|
|
fprintf(stderr,
|
2016-08-17 13:45:09 +00:00
|
|
|
"Usage: mhdr [-h header] [-d] [-H] [-M] [-A|-D] [msgs...]\n");
|
2016-08-08 12:23:20 +00:00
|
|
|
exit(2);
|
2016-07-28 11:08:04 +00:00
|
|
|
}
|
|
|
|
|
2016-08-08 12:23:20 +00:00
|
|
|
status = 1;
|
|
|
|
|
2016-07-28 11:08:04 +00:00
|
|
|
if (argc == optind && isatty(0))
|
|
|
|
blaze822_loop1(".", header);
|
2016-07-22 22:29:38 +00:00
|
|
|
else
|
2016-07-28 11:08:04 +00:00
|
|
|
blaze822_loop(argc-optind, argv+optind, header);
|
2016-07-11 14:11:52 +00:00
|
|
|
|
2016-08-08 12:23:20 +00:00
|
|
|
return status;
|
2016-07-11 14:11:52 +00:00
|
|
|
}
|