mimetest.c
6.76 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
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
/* GNU mailutils - a suite of utilities for electronic mail
Copyright (C) 1999, 2000, 2001 Free Software Foundation, Inc.
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2, or (at your option)
any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */
#ifdef HAVE_CONFIG_H
# include <config.h>
#endif
#include <sys/types.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
#include <limits.h>
#include <mailutils/mailbox.h>
#include <mailutils/header.h>
#include <mailutils/filter.h>
#include <mailutils/registrar.h>
void message_display_parts(message_t msg, char *indent);
char from[256];
char subject[256];
int
main(int argc, char **argv)
{
mailbox_t mbox = NULL;
int ret;
size_t i;
size_t count = 0;
char *mailbox_name = NULL;
/* have an argument */
if (argc > 1)
mailbox_name = argv[1];
/* Registration. */
{
list_t bookie;
registrar_get_list (&bookie);
list_append (bookie, mbox_record);
list_append (bookie, path_record);
list_append (bookie, pop_record);
list_append (bookie, imap_record);
}
if ( ( ret = mailbox_create_default (&mbox, mailbox_name) ) != 0) {
fprintf (stderr, "could not create - %s\n", strerror(ret));
exit (2);
}
/* Debuging Trace. */
if ( 0 ) {
mu_debug_t debug;
mailbox_get_debug (mbox, &debug);
mu_debug_set_level (debug, MU_DEBUG_TRACE|MU_DEBUG_PROT);
}
/* Open the mailbox for reading only. */
if ( ( ret = mailbox_open (mbox, MU_STREAM_RDWR) ) != 0) {
fprintf (stderr, "could not open - %s\n", strerror(ret));
exit (2);
}
/* Iterator through the entire message set. */
mailbox_messages_count (mbox, &count);
for(i = 1; i <= count; ++i) {
message_t msg;
header_t hdr;
size_t nparts;
size_t msize;
if (( ret = mailbox_get_message (mbox, i, &msg) ) != 0) {
fprintf (stderr, "mailbox_get_message - %s\n", strerror(ret));
exit(2);
}
if (( ret = message_size (msg, &msize) ) != 0) {
fprintf (stderr, "message_size - %s\n", strerror(ret));
exit(2);
}
if (( ret = message_get_header (msg, &hdr) ) != 0) {
fprintf (stderr, "message_get_header - %s\n", strerror(ret));
exit(2);
}
header_get_value (hdr, MU_HEADER_FROM, from, sizeof (from), NULL);
header_get_value (hdr, MU_HEADER_SUBJECT, subject, sizeof (subject), NULL);
printf("From: %s\tSubject: %s\n", from, subject);
if ( ( ret = message_get_num_parts(msg, &nparts) ) != 0 ) {
fprintf (stderr, "message_get_num_parts - %s\n", strerror(ret));
exit(2);
}
printf("-- Number of parts in message - %d\n",nparts);
printf("-- Total message size - %d\n",msize);
message_display_parts(msg, "\t");
}
mailbox_close(mbox);
mailbox_destroy(&mbox);
return 0;
}
char buf[2048];
void
message_display_parts(message_t msg, char *indent)
{
int ret, j;
size_t msize, nparts, nsubparts;
message_t part;
header_t hdr;
char type[256];
char encoding[256];
stream_t str;
body_t body;
int offset, ismulti;
size_t nbytes;
/* How many part those the message has? */
if ( ( ret = message_get_num_parts(msg, &nparts) ) != 0 ) {
fprintf (stderr, "message_get_num_parts - %s\n", strerror(ret));
exit(2);
}
/* Iterate through all the parts.
Treat type "message/rfc822" differently, since it is a message of is own
that can have other subparts(recursive). */
for( j = 1; j <= nparts; j++) {
if (( ret = message_get_part(msg, j, &part ) ) != 0 ) {
fprintf (stderr, "mime_get_part - %s\n", strerror(ret));
exit(2);
}
if (( ret = message_size (part, &msize) ) != 0) {
fprintf (stderr, "message_size - %s\n", strerror(ret));
exit(2);
}
if (( ret = message_get_header (part, &hdr) ) != 0) {
fprintf (stderr, "message_get_header - %s\n", strerror(ret));
exit(2);
}
header_get_value (hdr, MU_HEADER_CONTENT_TYPE, type, sizeof (type), NULL);
printf("%sType of part %d = %s\n", indent, j, type);
printf("%sMessage part size - %d\n",indent, msize);
encoding[0] = '\0';
header_get_value (hdr, MU_HEADER_CONTENT_TRANSFER_ENCODING, encoding, sizeof (encoding), NULL);
ismulti = 0;
if ( (type[0] && strncasecmp( type, "message/rfc822", strlen(type)) == 0 ) ||
( message_is_multipart (part, &ismulti) == 0 && ismulti ) ) {
char tmp[10];
if ( !ismulti ) {
ret = message_unencapsulate(part, &part, NULL);
if (ret != 0)
fprintf (stderr, "message_unencapsulate - %s\n", strerror(ret));
break;
}
if (( ret = message_get_header (part, &hdr) ) != 0) {
fprintf (stderr, "message_get_header - %s\n", strerror(ret));
exit(2);
}
header_get_value (hdr, MU_HEADER_FROM, from, sizeof (from), NULL);
header_get_value (hdr, MU_HEADER_SUBJECT, subject, sizeof (subject), NULL);
printf("%sEncapsulated message : %s\t%s\n", indent, from, subject);
printf("%s-------------------------------------------------------------------\n", indent);
if ( ( ret = message_get_num_parts(part, &nsubparts) ) != 0 ) {
fprintf (stderr, "mime_get_num_parts - %s\n", strerror(ret));
exit(2);
}
strcpy(tmp, indent);
strcat(tmp,"\t");
message_display_parts(part, tmp);
message_destroy (&part, NULL);
}
else if ( type[0] == '\0' || (strncasecmp( type, "text/plain", strlen("text/plain")) == 0) || (strncasecmp( type, "text/html", strlen("text/html")) == 0)) {
printf("%sText Message\n",indent);
printf("%s-------------------------------------------------------------------\n", indent);
message_get_body(part, &body);
body_get_stream(body, &str);
filter_create(&str, str, encoding, 0, 0);
offset = 0;
while( stream_readline( str, buf, sizeof(buf), offset, &nbytes ) == 0 && nbytes ) {
printf("%s%s", indent, buf);
offset += nbytes;
}
stream_destroy(&str, NULL);
}
else {
#if 1
/* Save the attachements. */
char *fname;
message_attachment_filename( part, &fname);
if ( fname == NULL ) {
char buffer[PATH_MAX+1];
fname = tempnam(getcwd(buffer, PATH_MAX), "msg-" );
}
printf("%sAttachment - saving [%s]\n",indent, fname);
printf("%s-------------------------------------------------------------------\n", indent);
/* FIXME: Somethings is not quite correct with this function.
Please fix. */
message_save_attachment(part, fname, NULL);
free(fname);
#endif
}
printf("\n%s End -------------------------------------------------------------------\n", indent);
}
}