mbox-dates.c
2.96 KB
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
#include <sys/types.h>
#include <sys/stat.h>
#include <errno.h>
#include <fcntl.h>
#include <limits.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <time.h>
#include <unistd.h>
#include <mailutils/address.h>
#include <mailutils/debug.h>
#include <mailutils/errno.h>
#include <mailutils/header.h>
#include <mailutils/mailbox.h>
#include <mailutils/message.h>
#include <mailutils/parse822.h>
#include <mailutils/registrar.h>
#include <mailutils/stream.h>
static const char *
UserAgent (header_t hdr)
{
static char agent[128];
size_t sz;
if (header_get_value (hdr, "User-Agent", agent, sizeof (agent), &sz) == 0
&& sz != 0)
return agent;
if (header_get_value (hdr, "X-Mailer", agent, sizeof (agent), &sz) == 0
&& sz != 0)
return agent;
/* Some MUAs, like Pine, put their name in the Message-Id, so print it as
a last ditch attempt at getting an idea who produced the date. */
if (header_get_value (hdr, "Message-Id", agent, sizeof (agent), &sz) == 0
&& sz != 0)
return agent;
return "unknown";
}
int
main (int argc, char **argv)
{
mailbox_t mbox;
size_t i;
size_t count = 0;
char *mboxname = argv[1];
int status;
int debug = 0;
if (strcmp ("-d", mboxname) == 0)
{
mboxname = argv[2];
debug = 1;
}
if (mboxname == NULL)
{
printf ("Usage: mbox-dates [-d] <mbox>\n");
exit (1);
}
/* Register desired mailbox formats. */
{
list_t bookie;
registrar_get_list (&bookie);
list_append (bookie, path_record);
list_append (bookie, pop_record);
list_append (bookie, imap_record);
}
if ((status = mailbox_create_default (&mbox, mboxname)) != 0)
{
fprintf (stderr, "could not create <%s>: %s\n",
mboxname, mu_errstring (status));
exit (1);
}
if (debug)
{
mu_debug_t debug;
mailbox_get_debug (mbox, &debug);
mu_debug_set_level (debug, MU_DEBUG_TRACE | MU_DEBUG_PROT);
}
if ((status = mailbox_open (mbox, MU_STREAM_READ)) != 0)
{
fprintf (stderr, "could not open mbox: %s\n", mu_errstring (status));
exit (1);
}
mailbox_messages_count (mbox, &count);
for (i = 1; i <= count; ++i)
{
message_t msg;
header_t hdr;
char date[128];
size_t len = 0;
if ((status = mailbox_get_message (mbox, i, &msg)) != 0 ||
(status = message_get_header (msg, &hdr)) != 0)
{
printf ("%s, msg %d: %s\n", mboxname, i, mu_errstring (status));
continue;
}
if ((status =
header_get_value (hdr, MU_HEADER_DATE, date, sizeof (date),
&len)) != 0)
{
printf ("%s, msg %d: NO DATE (mua? %s)\n",
mboxname, i, UserAgent (hdr));
continue;
}
else
{
const char *s = date;
if (parse822_date_time (&s, s + strlen (s), NULL, NULL))
{
printf ("%s, msg %d: BAD DATE <%s> (mua? %s)\n",
mboxname, i, date, UserAgent (hdr));
continue;
}
}
}
mailbox_close (mbox);
mailbox_destroy (&mbox);
return status;
}