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.
31 #include "procheader.h"
34 #include "prefs_common.h"
39 gint procheader_get_one_field(gchar *buf, gint len, FILE *fp,
44 HeaderEntry *hp = NULL;
47 /* skip non-required headers */
50 if (fgets(buf, len, fp) == NULL)
52 if (buf[0] == '\r' || buf[0] == '\n')
54 } while (buf[0] == ' ' || buf[0] == '\t');
56 for (hp = hentry, hnum = 0; hp->name != NULL;
58 if (!strncasecmp(hp->name, buf,
62 } while (hp->name == NULL);
64 if (fgets(buf, len, fp) == NULL) return -1;
65 if (buf[0] == '\r' || buf[0] == '\n') return -1;
68 /* unfold the specified folded line */
69 if (hp && hp->unfold) {
70 gboolean folded = FALSE;
71 gchar *bufp = buf + strlen(buf);
74 (*(bufp - 1) == '\n' || *(bufp - 1) == '\r');
82 if (nexthead == ' ' || nexthead == '\t')
84 else if (nexthead == EOF)
86 else if (folded == TRUE) {
87 if (nexthead == '\r' || nexthead == '\n') {
92 if ((len - (bufp - buf)) <= 2) break;
94 /* replace return code on the tail end
99 /* concatenate next line */
100 if (fgets(bufp, len - (bufp - buf), fp)
102 bufp += strlen(bufp);
105 (*(bufp - 1) == '\n' || *(bufp - 1) == '\r');
111 ungetc(nexthead, fp);
120 nexthead = fgetc(fp);
121 if (nexthead == ' ' || nexthead == '\t') {
122 size_t buflen = strlen(buf);
124 /* concatenate next line */
125 if ((len - buflen) > 2) {
126 gchar *p = buf + buflen;
131 if (fgets(p, len - buflen, fp) == NULL)
137 ungetc(nexthead, fp);
142 /* remove trailing return code */
148 gchar *procheader_get_unfolded_line(gchar *buf, gint len, FILE *fp)
150 gboolean folded = FALSE;
154 if (fgets(buf, len, fp) == NULL) return NULL;
155 if (buf[0] == '\r' || buf[0] == '\n') return NULL;
156 bufp = buf + strlen(buf);
159 (*(bufp - 1) == '\n' || *(bufp - 1) == '\r');
164 nexthead = fgetc(fp);
167 if (nexthead == ' ' || nexthead == '\t')
169 else if (nexthead == EOF)
171 else if (folded == TRUE) {
172 if (nexthead == '\r' || nexthead == '\n') {
177 if ((len - (bufp - buf)) <= 2) break;
179 /* replace return code on the tail end
185 /* concatenate next line */
186 if (fgets(bufp, len - (bufp - buf), fp)
188 bufp += strlen(bufp);
191 (*(bufp - 1) == '\n' || *(bufp - 1) == '\r');
197 ungetc(nexthead, fp);
202 /* remove trailing return code */
208 GSList *procheader_get_header_list_from_file(const gchar *file)
213 if ((fp = fopen(file, "rb")) == NULL) {
214 FILE_OP_ERROR(file, "fopen");
218 hlist = procheader_get_header_list(fp);
224 GSList *procheader_get_header_list(FILE *fp)
227 GSList *hlist = NULL;
230 g_return_val_if_fail(fp != NULL, NULL);
232 while (procheader_get_unfolded_line(buf, sizeof(buf), fp) != NULL) {
233 if ((header = procheader_parse_header(buf)) != NULL)
234 hlist = g_slist_append(hlist, header);
236 if (*buf == ':') continue;
237 for (p = buf; *p && *p != ' '; p++) {
239 header = g_new(Header, 1);
240 header->name = g_strndup(buf, p - buf);
242 while (*p == ' ' || *p == '\t') p++;
243 conv_unmime_header(tmp, sizeof(tmp), p, NULL);
244 header->body = g_strdup(tmp);
246 hlist = g_slist_append(hlist, header);
256 GPtrArray *procheader_get_header_array(FILE *fp)
262 g_return_val_if_fail(fp != NULL, NULL);
264 headers = g_ptr_array_new();
266 while (procheader_get_unfolded_line(buf, sizeof(buf), fp) != NULL) {
267 if ((header = procheader_parse_header(buf)) != NULL)
268 g_ptr_array_add(headers, header);
270 if (*buf == ':') continue;
271 for (p = buf; *p && *p != ' '; p++) {
273 header = g_new(Header, 1);
274 header->name = g_strndup(buf, p - buf);
276 while (*p == ' ' || *p == '\t') p++;
277 conv_unmime_header(tmp, sizeof(tmp), p, NULL);
278 header->body = g_strdup(tmp);
280 g_ptr_array_add(headers, header);
290 GPtrArray *procheader_get_header_array_asis(FILE *fp)
296 g_return_val_if_fail(fp != NULL, NULL);
298 headers = g_ptr_array_new();
300 while (procheader_get_one_field(buf, sizeof(buf), fp, NULL) != -1) {
301 if ((header = procheader_parse_header(buf)) != NULL)
302 g_ptr_array_add(headers, header);
304 if (*buf == ':') continue;
305 for (p = buf; *p && *p != ' '; p++) {
307 header = g_new(Header, 1);
308 header->name = g_strndup(buf, p - buf);
310 conv_unmime_header(tmp, sizeof(tmp), p, NULL);
311 header->body = g_strdup(tmp);
313 g_ptr_array_add(headers, header);
323 void procheader_header_list_destroy(GSList *hlist)
327 while (hlist != NULL) {
328 header = hlist->data;
329 procheader_header_free(header);
330 hlist = g_slist_remove(hlist, header);
334 void procheader_header_array_destroy(GPtrArray *harray)
339 for (i = 0; i < harray->len; i++) {
340 header = g_ptr_array_index(harray, i);
341 procheader_header_free(header);
344 g_ptr_array_free(harray, TRUE);
347 void procheader_header_free(Header *header)
351 g_free(header->name);
352 g_free(header->body);
357 tests whether two headers' names are equal
358 remove the trailing ':' or ' ' before comparing
361 gboolean procheader_headername_equal(char * hdr1, char * hdr2)
368 if (hdr1[len1 - 1] == ':')
370 if (hdr2[len2 - 1] == ':')
375 return (g_strncasecmp(hdr1, hdr2, len1) == 0);
379 parse headers, for example :
380 From: dinh@enseirb.fr becomes :
381 header->name = "From:"
382 header->body = "dinh@enseirb.fr"
385 Header * procheader_parse_header(gchar * buf)
391 if ((*buf == ':') || (*buf == ' '))
394 for (p = buf; *p ; p++) {
395 if ((*p == ':') || (*p == ' ')) {
396 header = g_new(Header, 1);
397 header->name = g_strndup(buf, p - buf + 1);
399 while (*p == ' ' || *p == '\t') p++;
400 conv_unmime_header(tmp, sizeof(tmp), p, NULL);
401 header->body = g_strdup(tmp);
408 void procheader_get_header_fields(FILE *fp, HeaderEntry hentry[])
415 if (hentry == NULL) return;
417 while ((hnum = procheader_get_one_field(buf, sizeof(buf), fp, hentry))
421 p = buf + strlen(hp->name);
422 while (*p == ' ' || *p == '\t') p++;
424 if (hp->body == NULL)
425 hp->body = g_strdup(p);
426 else if (procheader_headername_equal(hp->name, "To") ||
427 procheader_headername_equal(hp->name, "Cc")) {
428 gchar *tp = hp->body;
429 hp->body = g_strconcat(tp, ", ", p, NULL);
435 MsgInfo *procheader_parse_file(const gchar *file, MsgFlags flags,
436 gboolean full, gboolean decrypted)
441 if ((fp = fopen(file, "rb")) == NULL) {
442 FILE_OP_ERROR(file, "fopen");
446 msginfo = procheader_parse_stream(fp, flags, full, decrypted);
451 MsgInfo *procheader_parse_str(const gchar *str, MsgFlags flags, gboolean full,
457 if ((fp = str_open_as_stream(str)) == NULL)
460 msginfo = procheader_parse_stream(fp, flags, full, decrypted);
482 H_DISPOSITION_NOTIFICATION_TO = 15,
483 H_RETURN_RECEIPT_TO = 16
486 MsgInfo *procheader_parse_stream(FILE *fp, MsgFlags flags, gboolean full,
489 static HeaderEntry hentry_full[] = {{"Date:", NULL, FALSE},
490 {"From:", NULL, TRUE},
493 {"Newsgroups:", NULL, TRUE},
494 {"Subject:", NULL, TRUE},
495 {"Message-Id:", NULL, FALSE},
496 {"References:", NULL, FALSE},
497 {"In-Reply-To:", NULL, FALSE},
498 {"Content-Type:", NULL, FALSE},
499 {"Seen:", NULL, FALSE},
500 {"Status:", NULL, FALSE},
501 {"X-Status:", NULL, FALSE},
502 {"From ", NULL, FALSE},
503 {"X-Face:", NULL, FALSE},
504 {"Disposition-Notification-To:", NULL, FALSE},
505 {"Return-Receipt-To:", NULL, FALSE},
506 {NULL, NULL, FALSE}};
508 static HeaderEntry hentry_short[] = {{"Date:", NULL, FALSE},
509 {"From:", NULL, TRUE},
512 {"Newsgroups:", NULL, TRUE},
513 {"Subject:", NULL, TRUE},
514 {"Message-Id:", NULL, FALSE},
515 {"References:", NULL, FALSE},
516 {"In-Reply-To:", NULL, FALSE},
517 {"Content-Type:", NULL, FALSE},
518 {"Seen:", NULL, FALSE},
519 {"Status:", NULL, FALSE},
520 {"X-Status:", NULL, FALSE},
521 {"From ", NULL, FALSE},
522 {NULL, NULL, FALSE}};
525 gchar buf[BUFFSIZE], tmp[BUFFSIZE];
526 gchar *reference = NULL;
532 hentry = full ? hentry_full : hentry_short;
534 if (MSG_IS_QUEUED(flags) || MSG_IS_DRAFT(flags)) {
535 while (fgets(buf, sizeof(buf), fp) != NULL)
536 if (buf[0] == '\r' || buf[0] == '\n') break;
539 msginfo = procmsg_msginfo_new();
541 if (flags.tmp_flags || flags.perm_flags)
542 msginfo->flags = flags;
544 MSG_SET_PERM_FLAGS(msginfo->flags, MSG_NEW | MSG_UNREAD);
547 MSG_UNSET_TMP_FLAGS(msginfo->flags, MSG_MIME);
549 msginfo->inreplyto = NULL;
551 while ((hnum = procheader_get_one_field(buf, sizeof(buf), fp, hentry))
553 hp = buf + strlen(hentry[hnum].name);
554 while (*hp == ' ' || *hp == '\t') hp++;
558 if (msginfo->date) break;
560 procheader_date_parse(NULL, hp, 0);
561 msginfo->date = g_strdup(hp);
564 if (msginfo->from) break;
565 conv_unmime_header(tmp, sizeof(tmp), hp, NULL);
566 msginfo->from = g_strdup(tmp);
567 msginfo->fromname = procheader_get_fromname(tmp);
570 conv_unmime_header(tmp, sizeof(tmp), hp, NULL);
574 g_strconcat(p, ", ", tmp, NULL);
577 msginfo->to = g_strdup(tmp);
580 conv_unmime_header(tmp, sizeof(tmp), hp, NULL);
584 g_strconcat(p, ", ", tmp, NULL);
587 msginfo->cc = g_strdup(tmp);
590 if (msginfo->newsgroups) {
591 p = msginfo->newsgroups;
592 msginfo->newsgroups =
593 g_strconcat(p, ",", hp, NULL);
596 msginfo->newsgroups = g_strdup(buf + 12);
599 if (msginfo->subject) break;
600 conv_unmime_header(tmp, sizeof(tmp), hp, NULL);
601 msginfo->subject = g_strdup(tmp);
604 if (msginfo->msgid) break;
606 extract_parenthesis(hp, '<', '>');
608 msginfo->msgid = g_strdup(hp);
613 msginfo->references = g_strdup(hp);
614 eliminate_parenthesis(hp, '(', ')');
615 if ((p = strrchr(hp, '<')) != NULL &&
616 strchr(p + 1, '>') != NULL) {
617 extract_parenthesis(p, '<', '>');
620 reference = g_strdup(p);
626 if (!strncasecmp(hp, "multipart", 9) &&
627 strncasecmp(hp, "multipart/signed", 16)) {
628 MSG_SET_TMP_FLAGS(msginfo->flags,
632 else if (!strncasecmp(hp, "multipart/encrypted", 19)) {
633 MSG_SET_TMP_FLAGS(msginfo->flags,
636 else if (!strncasecmp(hp, "multipart", 9))
637 MSG_SET_TMP_FLAGS(msginfo->flags, MSG_MIME);
639 #ifdef ALLOW_HEADER_HINT
641 /* mnews Seen header */
642 MSG_UNSET_PERM_FLAGS(msginfo->flags, MSG_NEW|MSG_UNREAD);
646 if (msginfo->xface) break;
647 msginfo->xface = g_strdup(hp);
649 case H_DISPOSITION_NOTIFICATION_TO:
650 if (msginfo->dispositionnotificationto) break;
651 msginfo->dispositionnotificationto = g_strdup(hp);
652 MSG_SET_PERM_FLAGS(msginfo->flags, MSG_RETRCPT_PENDING);
654 case H_RETURN_RECEIPT_TO:
655 if (msginfo->returnreceiptto) break;
656 msginfo->returnreceiptto = g_strdup(hp);
657 MSG_SET_PERM_FLAGS(msginfo->flags, MSG_RETRCPT_PENDING);
659 #ifdef ALLOW_HEADER_HINT
661 if (strchr(hp, 'R') != NULL)
662 MSG_UNSET_PERM_FLAGS(msginfo->flags, MSG_UNREAD);
663 if (strchr(hp, 'O') != NULL)
664 MSG_UNSET_PERM_FLAGS(msginfo->flags, MSG_NEW);
665 if (strchr(hp, 'U') != NULL)
666 MSG_SET_PERM_FLAGS(msginfo->flags, MSG_UNREAD);
669 if (strchr(hp, 'D') != NULL)
670 MSG_SET_PERM_FLAGS(msginfo->flags,
672 if (strchr(hp, 'F') != NULL)
673 MSG_SET_PERM_FLAGS(msginfo->flags, MSG_MARKED);
674 if (strchr(hp, 'd') != NULL)
675 MSG_SET_PERM_FLAGS(msginfo->flags, MSG_DELETED);
676 if (strchr(hp, 'r') != NULL)
677 MSG_SET_PERM_FLAGS(msginfo->flags, MSG_REPLIED);
678 if (strchr(hp, 'f') != NULL)
679 MSG_SET_PERM_FLAGS(msginfo->flags, MSG_FORWARDED);
683 if (msginfo->fromspace) break;
684 msginfo->fromspace = g_strdup(hp);
690 msginfo->inreplyto = reference;
695 gchar *procheader_get_fromname(const gchar *str)
699 Xstrdup_a(tmp, str, return NULL);
702 extract_quote(tmp, '\"');
704 } else if (strchr(tmp, '<')) {
705 eliminate_parenthesis(tmp, '<', '>');
709 extract_parenthesis(tmp, '<', '>');
712 } else if (strchr(tmp, '(')) {
713 extract_parenthesis(tmp, '(', ')');
718 name = g_strdup(str);
720 name = g_strdup(tmp);
725 static gint procheader_scan_date_string(const gchar *str,
726 gchar *weekday, gint *day,
727 gchar *month, gint *year,
728 gint *hh, gint *mm, gint *ss,
733 result = sscanf(str, "%10s %d %9s %d %2d:%2d:%2d %5s",
734 weekday, day, month, year, hh, mm, ss, zone);
735 if (result == 8) return 0;
737 result = sscanf(str, "%3s,%d %9s %d %2d:%2d:%2d %5s",
738 weekday, day, month, year, hh, mm, ss, zone);
739 if (result == 8) return 0;
741 result = sscanf(str, "%d %9s %d %2d:%2d:%2d %5s",
742 day, month, year, hh, mm, ss, zone);
743 if (result == 7) return 0;
746 result = sscanf(str, "%10s %d %9s %d %2d:%2d %5s",
747 weekday, day, month, year, hh, mm, zone);
748 if (result == 7) return 0;
750 result = sscanf(str, "%d %9s %d %2d:%2d %5s",
751 day, month, year, hh, mm, zone);
752 if (result == 6) return 0;
758 * Hiro, most UNIXen support this function:
759 * http://www.mcsr.olemiss.edu/cgi-bin/man-cgi?getdate
761 gboolean procheader_date_parse_to_tm(const gchar *src, struct tm *t, char *zone)
763 static gchar monthstr[] = "JanFebMarAprMayJunJulAugSepOctNovDec";
775 memset(t, 0, sizeof *t);
777 if (procheader_scan_date_string(src, weekday, &day, month, &year,
778 &hh, &mm, &ss, zone) < 0) {
779 g_warning("Invalid date: %s\n", src);
783 /* Y2K compliant :) */
792 if ((p = strstr(monthstr, month)) != NULL)
793 dmonth = (gint)(p - monthstr) / 3 + 1;
795 g_warning("Invalid month: %s\n", month);
796 dmonth = G_DATE_BAD_MONTH;
803 t->tm_mon = dmonth - 1;
804 t->tm_year = year - 1900;
814 time_t procheader_date_parse(gchar *dest, const gchar *src, gint len)
816 static gchar monthstr[] = "JanFebMarAprMayJunJulAugSepOctNovDec";
828 if (procheader_scan_date_string(src, weekday, &day, month, &year,
829 &hh, &mm, &ss, zone) < 0) {
830 g_warning("Invalid date: %s\n", src);
832 strncpy2(dest, src, len);
836 /* Y2K compliant :) */
845 if ((p = strstr(monthstr, month)) != NULL)
846 dmonth = (gint)(p - monthstr) / 3 + 1;
848 g_warning("Invalid month: %s\n", month);
849 dmonth = G_DATE_BAD_MONTH;
856 t.tm_mon = dmonth - 1;
857 t.tm_year = year - 1900;
863 timer += tzoffset_sec(&timer) - remote_tzoffset_sec(zone);
866 procheader_date_get_localtime(dest, len, timer);
871 void procheader_date_get_localtime(gchar *dest, gint len, const time_t timer)
874 gchar *default_format = "%y/%m/%d(%a) %H:%M";
876 lt = localtime(&timer);
878 if (prefs_common.date_format)
879 strftime(dest, len, prefs_common.date_format, lt);
881 strftime(dest, len, default_format, lt);
884 gint get_header_from_msginfo(MsgInfo *msginfo, gchar *buf, gint len,gchar *header)
888 HeaderEntry hentry[]={{header,NULL,TRUE},
892 g_return_val_if_fail(msginfo != NULL, -1);
893 file = procmsg_get_message_file_path(msginfo);
894 if ((fp = fopen(file, "rb")) == NULL) {
895 FILE_OP_ERROR(file, "fopen");
899 val=procheader_get_one_field(buf,len, fp, hentry);
900 if (fclose(fp) == EOF) {
901 FILE_OP_ERROR(file, "fclose");