2 * Sylpheed -- a GTK+ based, lightweight, and fast e-mail client
3 * Copyright (C) 1999-2002 Hiroyuki Yamamoto
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
17 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
34 #include "procheader.h"
42 #include "prefs_common.h"
50 static GHashTable *procmime_get_mime_type_table (void);
52 MimeInfo *procmime_mimeinfo_new(void)
56 mimeinfo = g_new0(MimeInfo, 1);
57 mimeinfo->mime_type = MIME_UNKNOWN;
58 mimeinfo->encoding_type = ENC_UNKNOWN;
63 void procmime_mimeinfo_free(MimeInfo *mimeinfo)
65 if (!mimeinfo) return;
67 g_free(mimeinfo->encoding);
68 g_free(mimeinfo->content_type);
69 g_free(mimeinfo->charset);
70 g_free(mimeinfo->name);
71 g_free(mimeinfo->boundary);
72 g_free(mimeinfo->content_disposition);
73 g_free(mimeinfo->filename);
75 g_free(mimeinfo->plaintextfile);
76 g_free(mimeinfo->sigstatus);
77 g_free(mimeinfo->sigstatus_full);
80 procmime_mimeinfo_free(mimeinfo->sub);
85 void procmime_mimeinfo_free_all(MimeInfo *mimeinfo)
87 while (mimeinfo != NULL) {
90 g_free(mimeinfo->encoding);
91 g_free(mimeinfo->content_type);
92 g_free(mimeinfo->charset);
93 g_free(mimeinfo->name);
94 g_free(mimeinfo->boundary);
95 g_free(mimeinfo->content_disposition);
96 g_free(mimeinfo->filename);
98 g_free(mimeinfo->plaintextfile);
99 g_free(mimeinfo->sigstatus);
100 g_free(mimeinfo->sigstatus_full);
103 procmime_mimeinfo_free_all(mimeinfo->sub);
104 procmime_mimeinfo_free_all(mimeinfo->children);
106 procmime_mimeinfo_free_all(mimeinfo->plaintext);
109 next = mimeinfo->next;
115 MimeInfo *procmime_mimeinfo_insert(MimeInfo *parent, MimeInfo *mimeinfo)
117 MimeInfo *child = parent->children;
120 parent->children = mimeinfo;
122 while (child->next != NULL)
125 child->next = mimeinfo;
128 mimeinfo->parent = parent;
129 mimeinfo->level = parent->level + 1;
134 void procmime_mimeinfo_replace(MimeInfo *old, MimeInfo *new)
136 MimeInfo *parent = old->parent;
139 g_return_if_fail(parent != NULL);
140 g_return_if_fail(new->next == NULL);
142 for (child = parent->children; child && child != old;
146 g_warning("oops: parent can't find it's own child");
149 procmime_mimeinfo_free_all(old);
151 if (child == parent->children) {
152 new->next = parent->children->next;
153 parent->children = new;
155 new->next = child->next;
160 MimeInfo *procmime_mimeinfo_next(MimeInfo *mimeinfo)
162 if (!mimeinfo) return NULL;
164 if (mimeinfo->children)
165 return mimeinfo->children;
167 return mimeinfo->sub;
169 return mimeinfo->next;
171 if (mimeinfo->main) {
172 mimeinfo = mimeinfo->main;
174 return mimeinfo->next;
177 for (mimeinfo = mimeinfo->parent; mimeinfo != NULL;
178 mimeinfo = mimeinfo->parent) {
180 return mimeinfo->next;
181 if (mimeinfo->main) {
182 mimeinfo = mimeinfo->main;
184 return mimeinfo->next;
191 MimeInfo *procmime_scan_message(MsgInfo *msginfo)
196 g_return_val_if_fail(msginfo != NULL, NULL);
198 if ((fp = procmsg_open_message(msginfo)) == NULL) return NULL;
199 mimeinfo = procmime_scan_mime_header(fp);
202 if (mimeinfo->mime_type != MIME_MULTIPART) {
203 if (fseek(fp, mimeinfo->fpos, SEEK_SET) < 0)
206 if (mimeinfo->mime_type != MIME_TEXT)
207 procmime_scan_multipart_message(mimeinfo, fp);
211 if (prefs_common.auto_check_signatures)
212 rfc2015_check_signature(mimeinfo, fp);
219 void procmime_scan_multipart_message(MimeInfo *mimeinfo, FILE *fp)
223 gint boundary_len = 0;
225 glong fpos, prev_fpos;
228 g_return_if_fail(mimeinfo != NULL);
229 g_return_if_fail(mimeinfo->mime_type != MIME_TEXT);
231 if (mimeinfo->mime_type == MIME_MULTIPART) {
232 g_return_if_fail(mimeinfo->boundary != NULL);
233 g_return_if_fail(mimeinfo->sub == NULL);
235 g_return_if_fail(fp != NULL);
237 boundary = mimeinfo->boundary;
240 boundary_len = strlen(boundary);
242 /* look for first boundary */
243 while ((p = fgets(buf, sizeof(buf), fp)) != NULL)
244 if (IS_BOUNDARY(buf, boundary, boundary_len)) break;
248 if ((fpos = ftell(fp)) < 0) {
253 for (npart = 0;; npart++) {
255 gboolean eom = FALSE;
258 debug_print("prev_fpos: %ld\n", fpos);
260 partinfo = procmime_scan_mime_header(fp);
261 if (!partinfo) break;
262 procmime_mimeinfo_insert(mimeinfo, partinfo);
264 if (partinfo->mime_type == MIME_MULTIPART) {
265 if (partinfo->level < 8)
266 procmime_scan_multipart_message(partinfo, fp);
267 } else if (partinfo->mime_type == MIME_MESSAGE_RFC822) {
270 partinfo->sub = sub = procmime_scan_mime_header(fp);
273 sub->level = partinfo->level + 1;
274 sub->parent = partinfo;
275 sub->main = partinfo;
277 if (sub->level < 8) {
278 if (sub->mime_type == MIME_MULTIPART) {
279 procmime_scan_multipart_message
281 } else if (sub->mime_type == MIME_MESSAGE_RFC822) {
282 fseek(fp, sub->fpos, SEEK_SET);
283 procmime_scan_multipart_message
289 /* look for next boundary */
291 while ((p = fgets(buf, sizeof(buf), fp)) != NULL) {
292 if (IS_BOUNDARY(buf, boundary, boundary_len)) {
293 if (buf[2 + boundary_len] == '-' &&
294 buf[2 + boundary_len + 1] == '-')
300 /* broken MIME, or single part MIME message */
305 debug_print("fpos: %ld\n", fpos);
307 partinfo->size = fpos - prev_fpos - strlen(buf);
308 debug_print("partinfo->size: %d\n", partinfo->size);
309 if (partinfo->sub && !partinfo->sub->sub &&
310 !partinfo->sub->children) {
311 partinfo->sub->size = fpos - partinfo->sub->fpos - strlen(buf);
312 debug_print("partinfo->sub->size: %d\n",
313 partinfo->sub->size);
315 debug_print("boundary: %s\n", buf);
321 void procmime_scan_encoding(MimeInfo *mimeinfo, const gchar *encoding)
325 Xstrdup_a(buf, encoding, return);
327 g_free(mimeinfo->encoding);
329 mimeinfo->encoding = g_strdup(g_strstrip(buf));
330 if (!strcasecmp(buf, "7bit"))
331 mimeinfo->encoding_type = ENC_7BIT;
332 else if (!strcasecmp(buf, "8bit"))
333 mimeinfo->encoding_type = ENC_8BIT;
334 else if (!strcasecmp(buf, "quoted-printable"))
335 mimeinfo->encoding_type = ENC_QUOTED_PRINTABLE;
336 else if (!strcasecmp(buf, "base64"))
337 mimeinfo->encoding_type = ENC_BASE64;
338 else if (!strcasecmp(buf, "x-uuencode"))
339 mimeinfo->encoding_type = ENC_X_UUENCODE;
341 mimeinfo->encoding_type = ENC_UNKNOWN;
345 void procmime_scan_content_type(MimeInfo *mimeinfo, const gchar *content_type)
347 gchar *delim, *p, *cnttype;
350 if (conv_get_current_charset() == C_EUC_JP &&
351 strchr(content_type, '\033')) {
353 len = strlen(content_type) * 2 + 1;
354 Xalloca(buf, len, return);
355 conv_jistoeuc(buf, len, content_type);
357 Xstrdup_a(buf, content_type, return);
359 g_free(mimeinfo->content_type);
360 g_free(mimeinfo->charset);
361 /* g_free(mimeinfo->name); */
362 mimeinfo->content_type = NULL;
363 mimeinfo->charset = NULL;
364 /* mimeinfo->name = NULL; */
366 if ((delim = strchr(buf, ';'))) *delim = '\0';
367 mimeinfo->content_type = cnttype = g_strdup(g_strstrip(buf));
369 mimeinfo->mime_type = procmime_scan_mime_type(cnttype);
378 if ((delim = strchr(p, ';'))) *delim = '\0';
380 if (!(eq = strchr(p, '='))) break;
389 extract_quote(value, '"');
391 eliminate_parenthesis(value, '(', ')');
396 if (!strcasecmp(attr, "charset"))
397 mimeinfo->charset = g_strdup(value);
398 else if (!strcasecmp(attr, "name")) {
402 len = strlen(value) + 1;
403 Xalloca(tmp, len, return);
404 conv_unmime_header(tmp, len, value, NULL);
405 g_free(mimeinfo->name);
406 /*pgp signatures should NOT have a name */
407 if (mimeinfo->content_type
408 && strcasecmp(mimeinfo->content_type, "application/pgp-signature"))
409 mimeinfo->name = g_strdup(tmp);
410 } else if (!strcasecmp(attr, "boundary"))
411 mimeinfo->boundary = g_strdup(value);
418 if (mimeinfo->mime_type == MIME_MULTIPART && !mimeinfo->boundary)
419 mimeinfo->mime_type = MIME_TEXT;
422 void procmime_scan_content_disposition(MimeInfo *mimeinfo,
423 const gchar *content_disposition)
425 gchar *delim, *p, *dispos;
428 if (conv_get_current_charset() == C_EUC_JP &&
429 strchr(content_disposition, '\033')) {
431 len = strlen(content_disposition) * 2 + 1;
432 Xalloca(buf, len, return);
433 conv_jistoeuc(buf, len, content_disposition);
435 Xstrdup_a(buf, content_disposition, return);
437 if ((delim = strchr(buf, ';'))) *delim = '\0';
438 mimeinfo->content_disposition = dispos = g_strdup(g_strstrip(buf));
447 if ((delim = strchr(p, ';'))) *delim = '\0';
449 if (!(eq = strchr(p, '='))) break;
458 extract_quote(value, '"');
460 eliminate_parenthesis(value, '(', ')');
465 if (!strcasecmp(attr, "filename")) {
469 len = strlen(value) + 1;
470 Xalloca(tmp, len, return);
471 conv_unmime_header(tmp, len, value, NULL);
472 g_free(mimeinfo->filename);
473 /*pgp signatures should NOT have a name */
474 if (mimeinfo->content_type
475 && strcasecmp(mimeinfo->content_type, "application/pgp-signature"))
476 mimeinfo->filename = g_strdup(tmp);
486 void procmime_scan_content_description(MimeInfo *mimeinfo,
487 const gchar *content_description)
494 if (conv_get_current_charset() == C_EUC_JP &&
495 strchr(content_description, '\033')) {
497 len = strlen(content_description) * 2 + 1;
498 Xalloca(buf, len, return);
499 conv_jistoeuc(buf, len, content_description);
501 Xstrdup_a(buf, content_description, return);
503 blen = strlen(buf) + 1;
504 Xalloca(tmp, blen, return);
505 conv_unmime_header(tmp, blen, buf, NULL);
506 g_free(mimeinfo->name);
507 mimeinfo->name = NULL;
508 /*pgp signatures should NOT have a name */
509 if (mimeinfo->content_type
510 && strcasecmp(mimeinfo->content_type, "application/pgp-signature"))
511 mimeinfo->name = g_strdup(tmp);
514 void procmime_scan_subject(MimeInfo *mimeinfo,
515 const gchar *subject)
522 if (conv_get_current_charset() == C_EUC_JP &&
523 strchr(subject, '\033')) {
525 len = strlen(subject) * 2 + 1;
526 Xalloca(buf, len, return);
527 conv_jistoeuc(buf, len, subject);
529 Xstrdup_a(buf, subject, return);
531 blen = strlen(buf) + 1;
532 Xalloca(tmp, blen, return);
533 conv_unmime_header(tmp, blen, buf, NULL);
534 g_free(mimeinfo->name);
535 mimeinfo->name = g_strdup(tmp);
540 H_CONTENT_TRANSFER_ENCODING = 0,
542 H_CONTENT_DISPOSITION = 2,
543 H_CONTENT_DESCRIPTION = 3,
547 MimeInfo *procmime_scan_mime_header(FILE *fp)
549 static HeaderEntry hentry[] = {{"Content-Transfer-Encoding:",
551 {"Content-Type:", NULL, TRUE},
552 {"Content-Disposition:",
554 {"Content-description:",
558 {NULL, NULL, FALSE}};
564 g_return_val_if_fail(fp != NULL, NULL);
566 mimeinfo = procmime_mimeinfo_new();
567 mimeinfo->mime_type = MIME_TEXT;
568 mimeinfo->encoding_type = ENC_7BIT;
569 mimeinfo->fpos = ftell(fp);
571 while ((hnum = procheader_get_one_field(buf, sizeof(buf), fp, hentry))
575 if (H_CONTENT_TRANSFER_ENCODING == hnum) {
576 procmime_scan_encoding
577 (mimeinfo, buf + strlen(hp->name));
578 } else if (H_CONTENT_TYPE == hnum) {
579 procmime_scan_content_type
580 (mimeinfo, buf + strlen(hp->name));
581 } else if (H_CONTENT_DISPOSITION == hnum) {
582 procmime_scan_content_disposition
583 (mimeinfo, buf + strlen(hp->name));
584 } else if (H_CONTENT_DESCRIPTION == hnum) {
585 procmime_scan_content_description
586 (mimeinfo, buf + strlen(hp->name));
587 } else if (H_SUBJECT == hnum) {
588 procmime_scan_subject
589 (mimeinfo, buf + strlen(hp->name));
593 if (mimeinfo->mime_type == MIME_APPLICATION_OCTET_STREAM &&
596 type = procmime_get_mime_type(mimeinfo->name);
598 mimeinfo->mime_type = procmime_scan_mime_type(type);
601 if (!mimeinfo->content_type)
602 mimeinfo->content_type = g_strdup("text/plain");
607 FILE *procmime_decode_content(FILE *outfp, FILE *infp, MimeInfo *mimeinfo)
610 gchar *boundary = NULL;
611 gint boundary_len = 0;
612 gboolean tmp_file = FALSE;
614 g_return_val_if_fail(infp != NULL, NULL);
615 g_return_val_if_fail(mimeinfo != NULL, NULL);
618 outfp = my_tmpfile();
626 if (mimeinfo->parent && mimeinfo->parent->boundary) {
627 boundary = mimeinfo->parent->boundary;
628 boundary_len = strlen(boundary);
631 if (mimeinfo->encoding_type == ENC_QUOTED_PRINTABLE) {
632 while (fgets(buf, sizeof(buf), infp) != NULL &&
634 !IS_BOUNDARY(buf, boundary, boundary_len))) {
636 len = unmime_quoted_printable_line(buf);
637 fwrite(buf, len, 1, outfp);
639 } else if (mimeinfo->encoding_type == ENC_BASE64) {
640 gchar outbuf[BUFFSIZE];
642 Base64Decoder *decoder;
644 decoder = base64_decoder_new();
645 while (fgets(buf, sizeof(buf), infp) != NULL &&
647 !IS_BOUNDARY(buf, boundary, boundary_len))) {
648 len = base64_decoder_decode(decoder, buf, outbuf);
650 g_warning("Bad BASE64 content\n");
653 fwrite(outbuf, sizeof(gchar), len, outfp);
655 base64_decoder_free(decoder);
656 } else if (mimeinfo->encoding_type == ENC_X_UUENCODE) {
657 gchar outbuf[BUFFSIZE];
659 gboolean flag = FALSE;
661 while (fgets(buf, sizeof(buf), infp) != NULL &&
663 !IS_BOUNDARY(buf, boundary, boundary_len))) {
664 if(!flag && strncmp(buf,"begin ", 6)) continue;
667 len = fromuutobits(outbuf, buf);
670 g_warning("Bad UUENCODE content(%d)\n", len);
673 fwrite(outbuf, sizeof(gchar), len, outfp);
678 while (fgets(buf, sizeof(buf), infp) != NULL &&
680 !IS_BOUNDARY(buf, boundary, boundary_len))) {
685 if (tmp_file) rewind(outfp);
689 gint procmime_get_part(const gchar *outfile, const gchar *infile,
695 g_return_val_if_fail(outfile != NULL, -1);
696 g_return_val_if_fail(infile != NULL, -1);
697 g_return_val_if_fail(mimeinfo != NULL, -1);
699 if ((infp = fopen(infile, "rb")) == NULL) {
700 FILE_OP_ERROR(infile, "fopen");
703 if (fseek(infp, mimeinfo->fpos, SEEK_SET) < 0) {
704 FILE_OP_ERROR(infile, "fseek");
708 if ((outfp = fopen(outfile, "wb")) == NULL) {
709 FILE_OP_ERROR(outfile, "fopen");
714 while (fgets(buf, sizeof(buf), infp) != NULL)
715 if (buf[0] == '\r' || buf[0] == '\n') break;
717 procmime_decode_content(outfp, infp, mimeinfo);
720 if (fclose(outfp) == EOF) {
721 FILE_OP_ERROR(outfile, "fclose");
729 struct ContentRenderer {
734 static GList * renderer_list = NULL;
736 static struct ContentRenderer *
737 content_renderer_new(char * content_type, char * renderer)
739 struct ContentRenderer * cr;
741 cr = g_new(struct ContentRenderer, 1);
745 cr->content_type = g_strdup(content_type);
746 cr->renderer = g_strdup(renderer);
751 static void content_renderer_free(struct ContentRenderer * cr)
753 g_free(cr->content_type);
754 g_free(cr->renderer);
758 void renderer_read_config(void)
764 g_list_foreach(renderer_list, (GFunc) content_renderer_free, NULL);
765 renderer_list = NULL;
767 rcpath = g_strconcat(get_rc_dir(), G_DIR_SEPARATOR_S, RENDERER_RC, NULL);
768 f = fopen(rcpath, "rb");
774 while (fgets(buf, BUFFSIZE, f)) {
776 struct ContentRenderer * cr;
779 p = strchr(buf, ' ');
784 cr = content_renderer_new(buf, p + 1);
788 renderer_list = g_list_append(renderer_list, cr);
794 void renderer_write_config(void)
800 rcpath = g_strconcat(get_rc_dir(), G_DIR_SEPARATOR_S, RENDERER_RC, NULL);
802 if ((pfile = prefs_write_open(rcpath)) == NULL) {
803 g_warning(_("failed to write configuration to file\n"));
810 for(cur = renderer_list ; cur != NULL ; cur = cur->next) {
811 struct ContentRenderer * renderer;
812 renderer = cur->data;
813 fprintf(pfile->fp, "%s %s\n", renderer->content_type,
817 if (prefs_write_close(pfile) < 0) {
818 g_warning(_("failed to write configuration to file\n"));
823 FILE *procmime_get_text_content(MimeInfo *mimeinfo, FILE *infp)
827 gboolean conv_fail = FALSE;
830 struct ContentRenderer * renderer;
833 g_return_val_if_fail(mimeinfo != NULL, NULL);
834 g_return_val_if_fail(infp != NULL, NULL);
835 g_return_val_if_fail(mimeinfo->mime_type == MIME_TEXT ||
836 mimeinfo->mime_type == MIME_TEXT_HTML ||
837 mimeinfo->mime_type == MIME_TEXT_ENRICHED, NULL);
839 if (fseek(infp, mimeinfo->fpos, SEEK_SET) < 0) {
844 while (fgets(buf, sizeof(buf), infp) != NULL)
845 if (buf[0] == '\r' || buf[0] == '\n') break;
847 tmpfp = procmime_decode_content(NULL, infp, mimeinfo);
851 if ((outfp = my_tmpfile()) == NULL) {
857 src_codeset = prefs_common.force_charset
858 ? prefs_common.force_charset : mimeinfo->charset;
862 for(cur = renderer_list ; cur != NULL ; cur = cur->next) {
863 struct ContentRenderer * cr;
865 if (g_strcasecmp(cr->content_type,
866 mimeinfo->content_type) == 0) {
872 if (renderer != NULL) {
878 dup2(fileno(outfp), 1);
880 p = popen(renderer->renderer, "w");
885 fread(buf, sizeof(char), sizeof(buf),
887 fwrite(buf, sizeof(char), count, p);
892 } else if (mimeinfo->mime_type == MIME_TEXT) {
893 while (fgets(buf, sizeof(buf), tmpfp) != NULL) {
894 str = conv_codeset_strdup(buf, src_codeset, NULL);
903 } else if (mimeinfo->mime_type == MIME_TEXT_HTML) {
907 conv = conv_code_converter_new(src_codeset);
908 parser = html_parser_new(tmpfp, conv);
909 while ((str = html_parse(parser)) != NULL) {
912 html_parser_destroy(parser);
913 conv_code_converter_destroy(conv);
914 } else if (mimeinfo->mime_type == MIME_TEXT_ENRICHED) {
918 conv = conv_code_converter_new(src_codeset);
919 parser = ertf_parser_new(tmpfp, conv);
920 while ((str = ertf_parse(parser)) != NULL) {
923 ertf_parser_destroy(parser);
924 conv_code_converter_destroy(conv);
928 g_warning(_("procmime_get_text_content(): Code conversion failed.\n"));
936 /* search the first text part of (multipart) MIME message,
937 decode, convert it and output to outfp. */
938 FILE *procmime_get_first_text_content(MsgInfo *msginfo)
940 FILE *infp, *outfp = NULL;
941 MimeInfo *mimeinfo, *partinfo;
943 g_return_val_if_fail(msginfo != NULL, NULL);
945 mimeinfo = procmime_scan_message(msginfo);
946 if (!mimeinfo) return NULL;
948 if ((infp = procmsg_open_message(msginfo)) == NULL) {
949 procmime_mimeinfo_free_all(mimeinfo);
954 while (partinfo && partinfo->mime_type != MIME_TEXT)
955 partinfo = procmime_mimeinfo_next(partinfo);
958 while (partinfo && partinfo->mime_type != MIME_TEXT_HTML &&
959 partinfo->mime_type != MIME_TEXT_ENRICHED)
960 partinfo = procmime_mimeinfo_next(partinfo);
965 outfp = procmime_get_text_content(partinfo, infp);
968 procmime_mimeinfo_free_all(mimeinfo);
973 gboolean procmime_find_string_part(MimeInfo *mimeinfo, const gchar *filename,
974 const gchar *str, gboolean case_sens)
979 gchar *(* StrFindFunc) (const gchar *haystack, const gchar *needle);
981 g_return_val_if_fail(mimeinfo != NULL, FALSE);
982 g_return_val_if_fail(mimeinfo->mime_type == MIME_TEXT ||
983 mimeinfo->mime_type == MIME_TEXT_HTML ||
984 mimeinfo->mime_type == MIME_TEXT_ENRICHED, FALSE);
985 g_return_val_if_fail(str != NULL, FALSE);
987 if ((infp = fopen(filename, "rb")) == NULL) {
988 FILE_OP_ERROR(filename, "fopen");
992 outfp = procmime_get_text_content(mimeinfo, infp);
999 StrFindFunc = strstr;
1001 StrFindFunc = strcasestr;
1003 while (fgets(buf, sizeof(buf), outfp) != NULL) {
1004 if (StrFindFunc(buf, str) != NULL) {
1015 gboolean procmime_find_string(MsgInfo *msginfo, const gchar *str,
1021 gboolean found = FALSE;
1023 g_return_val_if_fail(msginfo != NULL, FALSE);
1024 g_return_val_if_fail(str != NULL, FALSE);
1026 filename = procmsg_get_message_file(msginfo);
1027 if (!filename) return FALSE;
1028 mimeinfo = procmime_scan_message(msginfo);
1030 for (partinfo = mimeinfo; partinfo != NULL;
1031 partinfo = procmime_mimeinfo_next(partinfo)) {
1032 if (partinfo->mime_type == MIME_TEXT ||
1033 partinfo->mime_type == MIME_TEXT_HTML ||
1034 partinfo->mime_type == MIME_TEXT_ENRICHED) {
1035 if (procmime_find_string_part
1036 (partinfo, filename, str, case_sens) == TRUE) {
1043 procmime_mimeinfo_free_all(mimeinfo);
1049 gchar *procmime_get_tmp_file_name(MimeInfo *mimeinfo)
1051 static guint32 id = 0;
1056 g_return_val_if_fail(mimeinfo != NULL, NULL);
1058 g_snprintf(f_prefix, sizeof(f_prefix), "%08x.", id++);
1060 if (MIME_TEXT_HTML == mimeinfo->mime_type)
1061 base = "mimetmp.html";
1063 base = mimeinfo->filename ? mimeinfo->filename
1064 : mimeinfo->name ? mimeinfo->name : "mimetmp";
1065 base = g_basename(base);
1066 if (*base == '\0') base = "mimetmp";
1067 Xstrdup_a(base, base, return NULL);
1068 subst_for_filename(base);
1071 filename = g_strconcat(get_mime_tmp_dir(), G_DIR_SEPARATOR_S,
1072 f_prefix, base, NULL);
1077 ContentType procmime_scan_mime_type(const gchar *mime_type)
1081 if (!strncasecmp(mime_type, "text/html", 9))
1082 type = MIME_TEXT_HTML;
1083 else if (!strncasecmp(mime_type, "text/enriched", 13))
1084 type = MIME_TEXT_ENRICHED;
1085 else if (!strncasecmp(mime_type, "text/", 5))
1087 else if (!strncasecmp(mime_type, "message/rfc822", 14))
1088 type = MIME_MESSAGE_RFC822;
1089 else if (!strncasecmp(mime_type, "message/", 8))
1091 else if (!strncasecmp(mime_type, "application/octet-stream", 24))
1092 type = MIME_APPLICATION_OCTET_STREAM;
1093 else if (!strncasecmp(mime_type, "application/", 12))
1094 type = MIME_APPLICATION;
1095 else if (!strncasecmp(mime_type, "multipart/", 10))
1096 type = MIME_MULTIPART;
1097 else if (!strncasecmp(mime_type, "image/", 6))
1099 else if (!strncasecmp(mime_type, "audio/", 6))
1101 else if (!strcasecmp(mime_type, "text"))
1104 type = MIME_UNKNOWN;
1109 static GList *mime_type_list = NULL;
1111 gchar *procmime_get_mime_type(const gchar *filename)
1113 static GHashTable *mime_type_table = NULL;
1114 MimeType *mime_type;
1118 if (!mime_type_table) {
1119 mime_type_table = procmime_get_mime_type_table();
1120 if (!mime_type_table) return NULL;
1123 filename = g_basename(filename);
1124 p = strrchr(filename, '.');
1125 if (!p) return NULL;
1127 Xstrdup_a(ext, p + 1, return NULL);
1129 mime_type = g_hash_table_lookup(mime_type_table, ext);
1133 str = g_strconcat(mime_type->type, "/", mime_type->sub_type,
1141 static guint procmime_str_hash(gconstpointer gptr)
1143 guint hash_result = 0;
1146 for (str = gptr; str && *str; str++) {
1147 if (isupper(*str)) hash_result += (*str + ' ');
1148 else hash_result += *str;
1154 static gint procmime_str_equal(gconstpointer gptr1, gconstpointer gptr2)
1156 const char *str1 = gptr1;
1157 const char *str2 = gptr2;
1159 return !strcasecmp(str1, str2);
1162 static GHashTable *procmime_get_mime_type_table(void)
1164 GHashTable *table = NULL;
1166 MimeType *mime_type;
1169 if (!mime_type_list) {
1170 mime_type_list = procmime_get_mime_type_list();
1171 if (!mime_type_list) return NULL;
1174 table = g_hash_table_new(procmime_str_hash, procmime_str_equal);
1176 for (cur = mime_type_list; cur != NULL; cur = cur->next) {
1180 mime_type = (MimeType *)cur->data;
1182 if (!mime_type->extension) continue;
1184 exts = g_strsplit(mime_type->extension, " ", 16);
1185 for (i = 0; exts[i] != NULL; i++) {
1186 /* make the key case insensitive */
1188 /* use previously dup'd key on overwriting */
1189 if (g_hash_table_lookup(table, exts[i]))
1192 key = g_strdup(exts[i]);
1193 g_hash_table_insert(table, key, mime_type);
1201 GList *procmime_get_mime_type_list(void)
1205 gchar buf[BUFFSIZE];
1207 MimeType *mime_type;
1210 return mime_type_list;
1212 if ((fp = fopen("/etc/mime.types", "rb")) == NULL) {
1213 if ((fp = fopen(SYSCONFDIR "/mime.types", "rb")) == NULL) {
1214 FILE_OP_ERROR(SYSCONFDIR "/mime.types", "fopen");
1219 while (fgets(buf, sizeof(buf), fp) != NULL) {
1220 p = strchr(buf, '#');
1225 while (*p && !isspace(*p)) p++;
1230 delim = strchr(buf, '/');
1231 if (delim == NULL) continue;
1234 mime_type = g_new(MimeType, 1);
1235 mime_type->type = g_strdup(buf);
1236 mime_type->sub_type = g_strdup(delim + 1);
1238 while (*p && isspace(*p)) p++;
1240 mime_type->extension = g_strdup(p);
1242 mime_type->extension = NULL;
1244 list = g_list_append(list, mime_type);
1250 g_warning("Can't read mime.types\n");
1255 EncodingType procmime_get_encoding_for_charset(const gchar *charset)
1259 else if (!strncasecmp(charset, "ISO-2022-", 9) ||
1260 !strcasecmp(charset, "US-ASCII"))
1264 /* return ENC_BASE64; */
1265 /* return ENC_QUOTED_PRINTABLE; */
1268 EncodingType procmime_get_encoding_for_file(const gchar *file)
1274 if ((fp = fopen(file, "rb")) == NULL) {
1275 FILE_OP_ERROR(file, "fopen");
1279 while ((len = fread(buf, sizeof(gchar), sizeof(buf), fp)) > 0) {
1283 for (p = buf, i = 0; i < len; p++, i++) {
1295 struct EncodingTable
1298 EncodingType enc_type;
1301 struct EncodingTable encoding_table[] = {
1304 {"binary", ENC_BINARY},
1305 {"quoted-printable", ENC_QUOTED_PRINTABLE},
1306 {"base64", ENC_BASE64},
1307 {"x-uuencode", ENC_UNKNOWN},
1308 {NULL, ENC_UNKNOWN},
1311 const gchar *procmime_get_encoding_str(EncodingType encoding)
1313 struct EncodingTable *enc_table;
1315 for (enc_table = encoding_table; enc_table->str != NULL; enc_table++) {
1316 if (enc_table->enc_type == encoding)
1317 return enc_table->str;