annotate src/msg.cpp @ 314:6bf6b60a9751

remove debug print code
author Carl Byington <carl@five-ten-sg.com>
date Wed, 26 May 2010 20:30:35 -0700
parents 0f19cd173eab
children 3e6cdd543857
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
308
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
1 extern "C" {
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
2 #include "define.h"
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
3 #include "msg.h"
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
4 #include <gsf/gsf-utils.h>
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
5
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
6 #include <gsf/gsf-input-stdio.h>
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
7 #include <gsf/gsf-infile.h>
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
8 #include <gsf/gsf-infile-stdio.h>
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
9
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
10 #include <gsf/gsf-output-stdio.h>
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
11 #include <gsf/gsf-outfile.h>
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
12 #include <gsf/gsf-outfile-msole.h>
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
13 }
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
14
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
15 #include <list>
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
16 #include <vector>
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
17 #include <string>
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
18
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
19 using namespace std;
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
20
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
21 struct property {
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
22 uint32_t tag;
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
23 uint32_t flags;
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
24 uint32_t length; // or value
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
25 uint32_t reserved;
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
26 };
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
27 typedef list<property> property_list;
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
28
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
29
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
30 /** Convert str to an 8 bit charset if it is utf8, null strings are preserved.
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
31 *
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
32 * @param str reference to the mapi string of interest
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
33 * @param charset pointer to the 8 bit charset to use
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
34 */
309
4fd5197aacc2 fix charset issue with iconv return value
Carl Byington <carl@five-ten-sg.com>
parents: 308
diff changeset
35 static void convert_8bit(pst_string &str, const char *charset);
308
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
36 static void convert_8bit(pst_string &str, const char *charset) {
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
37 if (!str.str) return; // null
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
38 if (!str.is_utf8) return; // not utf8
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
39
309
4fd5197aacc2 fix charset issue with iconv return value
Carl Byington <carl@five-ten-sg.com>
parents: 308
diff changeset
40 DEBUG_ENT("convert_8bit");
308
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
41 pst_vbuf *newer = pst_vballoc(2);
309
4fd5197aacc2 fix charset issue with iconv return value
Carl Byington <carl@five-ten-sg.com>
parents: 308
diff changeset
42 size_t strsize = strlen(str.str);
4fd5197aacc2 fix charset issue with iconv return value
Carl Byington <carl@five-ten-sg.com>
parents: 308
diff changeset
43 size_t rc = pst_vb_utf8to8bit(newer, str.str, strsize, charset);
308
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
44 if (rc == (size_t)-1) {
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
45 // unable to convert, change the charset to utf8
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
46 free(newer->b);
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
47 DEBUG_INFO(("Failed to convert utf-8 to %s\n", charset));
309
4fd5197aacc2 fix charset issue with iconv return value
Carl Byington <carl@five-ten-sg.com>
parents: 308
diff changeset
48 DEBUG_HEXDUMPC(str.str, strsize, 0x10);
308
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
49 }
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
50 else {
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
51 // null terminate the output string
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
52 pst_vbgrow(newer, 1);
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
53 newer->b[newer->dlen] = '\0';
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
54 free(str.str);
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
55 str.str = newer->b;
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
56 }
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
57 free(newer);
309
4fd5197aacc2 fix charset issue with iconv return value
Carl Byington <carl@five-ten-sg.com>
parents: 308
diff changeset
58 DEBUG_RET();
308
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
59 }
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
60
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
61
309
4fd5197aacc2 fix charset issue with iconv return value
Carl Byington <carl@five-ten-sg.com>
parents: 308
diff changeset
62 static void empty_property(GsfOutfile *out, uint32_t tag);
308
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
63 static void empty_property(GsfOutfile *out, uint32_t tag) {
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
64 vector<char> n(50);
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
65 snprintf(&n[0], n.size(), "__substg1.0_%08X", tag);
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
66 GsfOutput* dst = gsf_outfile_new_child(out, &n[0], false);
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
67 gsf_output_close(dst);
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
68 g_object_unref(G_OBJECT(dst));
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
69 }
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
70
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
71
309
4fd5197aacc2 fix charset issue with iconv return value
Carl Byington <carl@five-ten-sg.com>
parents: 308
diff changeset
72 static void string_property(GsfOutfile *out, property_list &prop, uint32_t tag, const char *contents, size_t size);
308
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
73 static void string_property(GsfOutfile *out, property_list &prop, uint32_t tag, const char *contents, size_t size) {
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
74 if (!contents) return;
313
0f19cd173eab fix to/cc/bcc recipients in .msg file output format
Carl Byington <carl@five-ten-sg.com>
parents: 311
diff changeset
75 size_t term = ((tag & 0x0000ffff) == 0x001e) ? 1 :
0f19cd173eab fix to/cc/bcc recipients in .msg file output format
Carl Byington <carl@five-ten-sg.com>
parents: 311
diff changeset
76 ((tag & 0x0000ffff) == 0x001f) ? 2 : 0; // null terminator
308
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
77 vector<char> n(50);
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
78 snprintf(&n[0], n.size(), "__substg1.0_%08X", tag);
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
79 GsfOutput* dst = gsf_outfile_new_child(out, &n[0], false);
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
80 gsf_output_write(dst, size, (const guint8*)contents);
313
0f19cd173eab fix to/cc/bcc recipients in .msg file output format
Carl Byington <carl@five-ten-sg.com>
parents: 311
diff changeset
81 if (term) {
0f19cd173eab fix to/cc/bcc recipients in .msg file output format
Carl Byington <carl@five-ten-sg.com>
parents: 311
diff changeset
82 memset(&n[0], 0, term);
0f19cd173eab fix to/cc/bcc recipients in .msg file output format
Carl Byington <carl@five-ten-sg.com>
parents: 311
diff changeset
83 gsf_output_write(dst, term, (const guint8*)&n[0]);
0f19cd173eab fix to/cc/bcc recipients in .msg file output format
Carl Byington <carl@five-ten-sg.com>
parents: 311
diff changeset
84 size += term;
0f19cd173eab fix to/cc/bcc recipients in .msg file output format
Carl Byington <carl@five-ten-sg.com>
parents: 311
diff changeset
85 }
308
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
86 gsf_output_close(dst);
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
87 g_object_unref(G_OBJECT(dst));
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
88
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
89 property p;
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
90 p.tag = tag;
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
91 p.flags = 0x6; // make all the properties writable
313
0f19cd173eab fix to/cc/bcc recipients in .msg file output format
Carl Byington <carl@five-ten-sg.com>
parents: 311
diff changeset
92 p.length = size;
308
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
93 p.reserved = 0;
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
94 prop.push_back(p);
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
95 }
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
96
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
97
309
4fd5197aacc2 fix charset issue with iconv return value
Carl Byington <carl@five-ten-sg.com>
parents: 308
diff changeset
98 static void string_property(GsfOutfile *out, property_list &prop, uint32_t tag, FILE *fp);
308
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
99 static void string_property(GsfOutfile *out, property_list &prop, uint32_t tag, FILE *fp) {
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
100 vector<char> n(50);
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
101 snprintf(&n[0], n.size(), "__substg1.0_%08X", tag);
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
102 GsfOutput* dst = gsf_outfile_new_child(out, &n[0], false);
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
103
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
104 size_t size = 0;
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
105 const size_t bsize = 10000;
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
106 char buf[bsize];
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
107
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
108 while (1) {
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
109 size_t s = fread(buf, 1, bsize, fp);
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
110 if (!s) break;
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
111 gsf_output_write(dst, s, (const guint8*)buf);
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
112 }
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
113
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
114 gsf_output_close(dst);
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
115 g_object_unref(G_OBJECT(dst));
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
116
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
117 property p;
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
118 p.tag = tag;
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
119 p.flags = 0x6; // make all the properties writable
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
120 p.length = size;
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
121 p.reserved = 0;
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
122 prop.push_back(p);
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
123 }
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
124
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
125
311
0c42a22f88fc add sent_date to .msg output format
Carl Byington <carl@five-ten-sg.com>
parents: 310
diff changeset
126 static void string_property(GsfOutfile *out, property_list &prop, uint32_t tag, FILETIME *contents);
0c42a22f88fc add sent_date to .msg output format
Carl Byington <carl@five-ten-sg.com>
parents: 310
diff changeset
127 static void string_property(GsfOutfile *out, property_list &prop, uint32_t tag, FILETIME *contents) {
310
a6df6ffc3ff5 add sent_date to .msg output format
Carl Byington <carl@five-ten-sg.com>
parents: 309
diff changeset
128 if (contents) {
a6df6ffc3ff5 add sent_date to .msg output format
Carl Byington <carl@five-ten-sg.com>
parents: 309
diff changeset
129 string_property(out, prop, tag, (char *)contents, sizeof(FILETIME));
a6df6ffc3ff5 add sent_date to .msg output format
Carl Byington <carl@five-ten-sg.com>
parents: 309
diff changeset
130 }
a6df6ffc3ff5 add sent_date to .msg output format
Carl Byington <carl@five-ten-sg.com>
parents: 309
diff changeset
131 }
a6df6ffc3ff5 add sent_date to .msg output format
Carl Byington <carl@five-ten-sg.com>
parents: 309
diff changeset
132
a6df6ffc3ff5 add sent_date to .msg output format
Carl Byington <carl@five-ten-sg.com>
parents: 309
diff changeset
133
309
4fd5197aacc2 fix charset issue with iconv return value
Carl Byington <carl@five-ten-sg.com>
parents: 308
diff changeset
134 static void string_property(GsfOutfile *out, property_list &prop, uint32_t tag, const char* charset, pst_string &contents);
308
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
135 static void string_property(GsfOutfile *out, property_list &prop, uint32_t tag, const char* charset, pst_string &contents) {
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
136 if (contents.str) {
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
137 convert_8bit(contents, charset);
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
138 string_property(out, prop, tag, contents.str, strlen(contents.str));
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
139 }
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
140 }
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
141
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
142
309
4fd5197aacc2 fix charset issue with iconv return value
Carl Byington <carl@five-ten-sg.com>
parents: 308
diff changeset
143 static void strin0_property(GsfOutfile *out, property_list &prop, uint32_t tag, const char* charset, pst_string &contents);
308
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
144 static void strin0_property(GsfOutfile *out, property_list &prop, uint32_t tag, const char* charset, pst_string &contents) {
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
145 if (contents.str) {
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
146 convert_8bit(contents, charset);
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
147 string_property(out, prop, tag, contents.str, strlen(contents.str)+1);
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
148 }
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
149 }
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
150
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
151
309
4fd5197aacc2 fix charset issue with iconv return value
Carl Byington <carl@five-ten-sg.com>
parents: 308
diff changeset
152 static void string_property(GsfOutfile *out, property_list &prop, uint32_t tag, const string &contents);
308
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
153 static void string_property(GsfOutfile *out, property_list &prop, uint32_t tag, const string &contents) {
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
154 string_property(out, prop, tag, contents.c_str(), contents.size());
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
155 }
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
156
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
157
309
4fd5197aacc2 fix charset issue with iconv return value
Carl Byington <carl@five-ten-sg.com>
parents: 308
diff changeset
158 static void string_property(GsfOutfile *out, property_list &prop, uint32_t tag, pst_binary &contents);
308
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
159 static void string_property(GsfOutfile *out, property_list &prop, uint32_t tag, pst_binary &contents) {
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
160 if (contents.size) string_property(out, prop, tag, contents.data, contents.size);
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
161 }
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
162
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
163
309
4fd5197aacc2 fix charset issue with iconv return value
Carl Byington <carl@five-ten-sg.com>
parents: 308
diff changeset
164 static void write_properties(GsfOutfile *out, property_list &prop, const guint8* header, size_t hlen);
308
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
165 static void write_properties(GsfOutfile *out, property_list &prop, const guint8* header, size_t hlen) {
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
166 GsfOutput* dst = gsf_outfile_new_child(out, "__properties_version1.0", false);
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
167 gsf_output_write(dst, hlen, header);
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
168 for (property_list::iterator i=prop.begin(); i!=prop.end(); i++) {
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
169 property &p = *i;
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
170 gsf_output_write(dst, sizeof(property), (const guint8*)&p);
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
171 }
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
172 gsf_output_close(dst);
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
173 g_object_unref(G_OBJECT(dst));
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
174 }
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
175
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
176
309
4fd5197aacc2 fix charset issue with iconv return value
Carl Byington <carl@five-ten-sg.com>
parents: 308
diff changeset
177 static void int_property(property_list &prop_list, uint32_t tag, uint32_t flags, uint32_t value);
308
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
178 static void int_property(property_list &prop_list, uint32_t tag, uint32_t flags, uint32_t value) {
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
179 property p;
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
180 p.tag = tag;
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
181 p.flags = flags;
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
182 p.length = value;
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
183 p.reserved = 0;
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
184 prop_list.push_back(p);
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
185 }
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
186
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
187
309
4fd5197aacc2 fix charset issue with iconv return value
Carl Byington <carl@five-ten-sg.com>
parents: 308
diff changeset
188 static void nzi_property(property_list &prop_list, uint32_t tag, uint32_t flags, uint32_t value);
308
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
189 static void nzi_property(property_list &prop_list, uint32_t tag, uint32_t flags, uint32_t value) {
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
190 if (value) int_property(prop_list, tag, flags, value);
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
191 }
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
192
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
193
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
194 void write_msg_email(char *fname, pst_item* item, pst_file* pst) {
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
195 // this is not an email item
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
196 if (!item->email) return;
309
4fd5197aacc2 fix charset issue with iconv return value
Carl Byington <carl@five-ten-sg.com>
parents: 308
diff changeset
197 DEBUG_ENT("write_msg_email");
4fd5197aacc2 fix charset issue with iconv return value
Carl Byington <carl@five-ten-sg.com>
parents: 308
diff changeset
198
308
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
199 pst_item_email &email = *(item->email);
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
200
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
201 char charset[30];
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
202 const char* body_charset = pst_default_charset(item, sizeof(charset), charset);
309
4fd5197aacc2 fix charset issue with iconv return value
Carl Byington <carl@five-ten-sg.com>
parents: 308
diff changeset
203 DEBUG_INFO(("%s body charset seems to be %s\n", fname, body_charset));
4fd5197aacc2 fix charset issue with iconv return value
Carl Byington <carl@five-ten-sg.com>
parents: 308
diff changeset
204 body_charset = "iso-8859-1//TRANSLIT//IGNORE";
308
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
205
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
206 gsf_init();
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
207
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
208 GsfOutfile *outfile;
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
209 GsfOutput *output;
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
210 GError *err = NULL;
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
211
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
212 output = gsf_output_stdio_new(fname, &err);
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
213 if (output == NULL) {
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
214 gsf_shutdown();
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
215 DEBUG_INFO(("unable to open output .msg file %s\n", fname));
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
216 DEBUG_RET();
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
217 return;
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
218 }
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
219
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
220 struct top_property_header {
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
221 uint32_t reserved1;
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
222 uint32_t reserved2;
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
223 uint32_t next_recipient; // same as recipient count
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
224 uint32_t next_attachment; // same as attachment count
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
225 uint32_t recipient_count;
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
226 uint32_t attachment_count;
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
227 uint32_t reserved3;
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
228 uint32_t reserved4;
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
229 };
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
230
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
231 top_property_header top_head;
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
232 memset(&top_head, 0, sizeof(top_head));
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
233
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
234 outfile = gsf_outfile_msole_new(output);
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
235 g_object_unref(G_OBJECT(output));
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
236
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
237 output = GSF_OUTPUT(outfile);
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
238 property_list prop_list;
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
239
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
240 int_property(prop_list, 0x00170003, 0x6, email.importance);
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
241 nzi_property(prop_list, 0x0023000B, 0x6, email.delivery_report);
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
242 nzi_property(prop_list, 0x00260003, 0x6, email.priority);
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
243 nzi_property(prop_list, 0x0029000B, 0x6, email.read_receipt);
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
244 nzi_property(prop_list, 0x002E0003, 0x6, email.original_sensitivity);
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
245 nzi_property(prop_list, 0x00360003, 0x6, email.sensitivity);
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
246 nzi_property(prop_list, 0x0C17000B, 0x6, email.reply_requested);
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
247 nzi_property(prop_list, 0x0E01000B, 0x6, email.delete_after_submit);
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
248 int_property(prop_list, 0x0E070003, 0x6, item->flags);
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
249 GsfOutfile *out = GSF_OUTFILE (output);
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
250 string_property(out, prop_list, 0x001A001E, item->ascii_type);
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
251 string_property(out, prop_list, 0x0037001E, body_charset, item->subject);
310
a6df6ffc3ff5 add sent_date to .msg output format
Carl Byington <carl@five-ten-sg.com>
parents: 309
diff changeset
252 string_property(out, prop_list, 0x00390040, email.sent_date);
308
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
253 strin0_property(out, prop_list, 0x003B0102, body_charset, email.outlook_sender);
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
254 string_property(out, prop_list, 0x003D001E, string(""));
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
255 string_property(out, prop_list, 0x0040001E, body_charset, email.outlook_received_name1);
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
256 string_property(out, prop_list, 0x0042001E, body_charset, email.outlook_sender_name);
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
257 string_property(out, prop_list, 0x0044001E, body_charset, email.outlook_recipient_name);
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
258 string_property(out, prop_list, 0x0050001E, body_charset, email.reply_to);
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
259 strin0_property(out, prop_list, 0x00510102, body_charset, email.outlook_recipient);
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
260 strin0_property(out, prop_list, 0x00520102, body_charset, email.outlook_recipient2);
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
261 string_property(out, prop_list, 0x0064001E, body_charset, email.sender_access);
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
262 string_property(out, prop_list, 0x0065001E, body_charset, email.sender_address);
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
263 string_property(out, prop_list, 0x0070001E, body_charset, email.processed_subject);
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
264 string_property(out, prop_list, 0x00710102, email.conversation_index);
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
265 string_property(out, prop_list, 0x0072001E, body_charset, email.original_bcc);
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
266 string_property(out, prop_list, 0x0073001E, body_charset, email.original_cc);
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
267 string_property(out, prop_list, 0x0074001E, body_charset, email.original_to);
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
268 string_property(out, prop_list, 0x0075001E, body_charset, email.recip_access);
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
269 string_property(out, prop_list, 0x0076001E, body_charset, email.recip_address);
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
270 string_property(out, prop_list, 0x0077001E, body_charset, email.recip2_access);
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
271 string_property(out, prop_list, 0x0078001E, body_charset, email.recip2_address);
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
272 string_property(out, prop_list, 0x007D001E, body_charset, email.header);
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
273 string_property(out, prop_list, 0x0C1A001E, body_charset, email.outlook_sender_name2);
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
274 strin0_property(out, prop_list, 0x0C1D0102, body_charset, email.outlook_sender2);
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
275 string_property(out, prop_list, 0x0C1E001E, body_charset, email.sender2_access);
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
276 string_property(out, prop_list, 0x0C1F001E, body_charset, email.sender2_address);
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
277 string_property(out, prop_list, 0x0E02001E, body_charset, email.bcc_address);
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
278 string_property(out, prop_list, 0x0E03001E, body_charset, email.cc_address);
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
279 string_property(out, prop_list, 0x0E04001E, body_charset, email.sentto_address);
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
280 string_property(out, prop_list, 0x0E1D001E, body_charset, email.outlook_normalized_subject);
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
281 string_property(out, prop_list, 0x1000001E, body_charset, item->body);
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
282 string_property(out, prop_list, 0x1013001E, body_charset, email.htmlbody);
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
283 string_property(out, prop_list, 0x1035001E, body_charset, email.messageid);
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
284 string_property(out, prop_list, 0x1042001E, body_charset, email.in_reply_to);
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
285 string_property(out, prop_list, 0x1046001E, body_charset, email.return_path_address);
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
286 // any property over 0x8000 needs entries in the __nameid to make them
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
287 // either string named or numerical named properties.
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
288
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
289 {
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
290 vector<char> n(50);
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
291 {
313
0f19cd173eab fix to/cc/bcc recipients in .msg file output format
Carl Byington <carl@five-ten-sg.com>
parents: 311
diff changeset
292 snprintf(&n[0], n.size(), "__recip_version1.0_#%08X", top_head.recipient_count);
0f19cd173eab fix to/cc/bcc recipients in .msg file output format
Carl Byington <carl@five-ten-sg.com>
parents: 311
diff changeset
293 GsfOutput *output = gsf_outfile_new_child(out, &n[0], true);
0f19cd173eab fix to/cc/bcc recipients in .msg file output format
Carl Byington <carl@five-ten-sg.com>
parents: 311
diff changeset
294 {
0f19cd173eab fix to/cc/bcc recipients in .msg file output format
Carl Byington <carl@five-ten-sg.com>
parents: 311
diff changeset
295 int v = 1; // to
0f19cd173eab fix to/cc/bcc recipients in .msg file output format
Carl Byington <carl@five-ten-sg.com>
parents: 311
diff changeset
296 property_list prop_list;
0f19cd173eab fix to/cc/bcc recipients in .msg file output format
Carl Byington <carl@five-ten-sg.com>
parents: 311
diff changeset
297 int_property(prop_list, 0x0C150003, 0x6, v); // PidTagRecipientType
0f19cd173eab fix to/cc/bcc recipients in .msg file output format
Carl Byington <carl@five-ten-sg.com>
parents: 311
diff changeset
298 int_property(prop_list, 0x30000003, 0x6, top_head.recipient_count); // PR_ROWID
0f19cd173eab fix to/cc/bcc recipients in .msg file output format
Carl Byington <carl@five-ten-sg.com>
parents: 311
diff changeset
299 GsfOutfile *out = GSF_OUTFILE (output);
0f19cd173eab fix to/cc/bcc recipients in .msg file output format
Carl Byington <carl@five-ten-sg.com>
parents: 311
diff changeset
300 string_property(out, prop_list, 0x3001001E, body_charset, item->file_as);
0f19cd173eab fix to/cc/bcc recipients in .msg file output format
Carl Byington <carl@five-ten-sg.com>
parents: 311
diff changeset
301 if (item->contact) {
0f19cd173eab fix to/cc/bcc recipients in .msg file output format
Carl Byington <carl@five-ten-sg.com>
parents: 311
diff changeset
302 string_property(out, prop_list, 0x3002001E, body_charset, item->contact->address1_transport);
0f19cd173eab fix to/cc/bcc recipients in .msg file output format
Carl Byington <carl@five-ten-sg.com>
parents: 311
diff changeset
303 string_property(out, prop_list, 0x3003001E, body_charset, item->contact->address1);
0f19cd173eab fix to/cc/bcc recipients in .msg file output format
Carl Byington <carl@five-ten-sg.com>
parents: 311
diff changeset
304 string_property(out, prop_list, 0x5ff6001E, body_charset, item->contact->address1);
0f19cd173eab fix to/cc/bcc recipients in .msg file output format
Carl Byington <carl@five-ten-sg.com>
parents: 311
diff changeset
305 }
0f19cd173eab fix to/cc/bcc recipients in .msg file output format
Carl Byington <carl@five-ten-sg.com>
parents: 311
diff changeset
306 strin0_property(out, prop_list, 0x300B0102, body_charset, email.outlook_search_key);
0f19cd173eab fix to/cc/bcc recipients in .msg file output format
Carl Byington <carl@five-ten-sg.com>
parents: 311
diff changeset
307 write_properties(out, prop_list, (const guint8*)&top_head, 8); // convenient 8 bytes of reserved zeros
0f19cd173eab fix to/cc/bcc recipients in .msg file output format
Carl Byington <carl@five-ten-sg.com>
parents: 311
diff changeset
308 gsf_output_close(output);
0f19cd173eab fix to/cc/bcc recipients in .msg file output format
Carl Byington <carl@five-ten-sg.com>
parents: 311
diff changeset
309 g_object_unref(G_OBJECT(output));
0f19cd173eab fix to/cc/bcc recipients in .msg file output format
Carl Byington <carl@five-ten-sg.com>
parents: 311
diff changeset
310 top_head.next_recipient++;
0f19cd173eab fix to/cc/bcc recipients in .msg file output format
Carl Byington <carl@five-ten-sg.com>
parents: 311
diff changeset
311 top_head.recipient_count++;
308
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
312 }
313
0f19cd173eab fix to/cc/bcc recipients in .msg file output format
Carl Byington <carl@five-ten-sg.com>
parents: 311
diff changeset
313 }
0f19cd173eab fix to/cc/bcc recipients in .msg file output format
Carl Byington <carl@five-ten-sg.com>
parents: 311
diff changeset
314 if (email.cc_address.str) {
0f19cd173eab fix to/cc/bcc recipients in .msg file output format
Carl Byington <carl@five-ten-sg.com>
parents: 311
diff changeset
315 snprintf(&n[0], n.size(), "__recip_version1.0_#%08X", top_head.recipient_count);
0f19cd173eab fix to/cc/bcc recipients in .msg file output format
Carl Byington <carl@five-ten-sg.com>
parents: 311
diff changeset
316 GsfOutput *output = gsf_outfile_new_child(out, &n[0], true);
0f19cd173eab fix to/cc/bcc recipients in .msg file output format
Carl Byington <carl@five-ten-sg.com>
parents: 311
diff changeset
317 {
0f19cd173eab fix to/cc/bcc recipients in .msg file output format
Carl Byington <carl@five-ten-sg.com>
parents: 311
diff changeset
318 int v = 2; // cc
0f19cd173eab fix to/cc/bcc recipients in .msg file output format
Carl Byington <carl@five-ten-sg.com>
parents: 311
diff changeset
319 property_list prop_list;
0f19cd173eab fix to/cc/bcc recipients in .msg file output format
Carl Byington <carl@five-ten-sg.com>
parents: 311
diff changeset
320 int_property(prop_list, 0x0C150003, 0x6, v); // PidTagRecipientType
0f19cd173eab fix to/cc/bcc recipients in .msg file output format
Carl Byington <carl@five-ten-sg.com>
parents: 311
diff changeset
321 int_property(prop_list, 0x30000003, 0x6, top_head.recipient_count); // PR_ROWID
0f19cd173eab fix to/cc/bcc recipients in .msg file output format
Carl Byington <carl@five-ten-sg.com>
parents: 311
diff changeset
322 GsfOutfile *out = GSF_OUTFILE (output);
0f19cd173eab fix to/cc/bcc recipients in .msg file output format
Carl Byington <carl@five-ten-sg.com>
parents: 311
diff changeset
323 string_property(out, prop_list, 0x3001001E, body_charset, email.cc_address);
0f19cd173eab fix to/cc/bcc recipients in .msg file output format
Carl Byington <carl@five-ten-sg.com>
parents: 311
diff changeset
324 string_property(out, prop_list, 0x3003001E, body_charset, email.cc_address);
0f19cd173eab fix to/cc/bcc recipients in .msg file output format
Carl Byington <carl@five-ten-sg.com>
parents: 311
diff changeset
325 string_property(out, prop_list, 0x5ff6001E, body_charset, email.cc_address);
0f19cd173eab fix to/cc/bcc recipients in .msg file output format
Carl Byington <carl@five-ten-sg.com>
parents: 311
diff changeset
326 write_properties(out, prop_list, (const guint8*)&top_head, 8); // convenient 8 bytes of reserved zeros
0f19cd173eab fix to/cc/bcc recipients in .msg file output format
Carl Byington <carl@five-ten-sg.com>
parents: 311
diff changeset
327 gsf_output_close(output);
0f19cd173eab fix to/cc/bcc recipients in .msg file output format
Carl Byington <carl@five-ten-sg.com>
parents: 311
diff changeset
328 g_object_unref(G_OBJECT(output));
0f19cd173eab fix to/cc/bcc recipients in .msg file output format
Carl Byington <carl@five-ten-sg.com>
parents: 311
diff changeset
329 top_head.next_recipient++;
0f19cd173eab fix to/cc/bcc recipients in .msg file output format
Carl Byington <carl@five-ten-sg.com>
parents: 311
diff changeset
330 top_head.recipient_count++;
0f19cd173eab fix to/cc/bcc recipients in .msg file output format
Carl Byington <carl@five-ten-sg.com>
parents: 311
diff changeset
331 }
0f19cd173eab fix to/cc/bcc recipients in .msg file output format
Carl Byington <carl@five-ten-sg.com>
parents: 311
diff changeset
332 }
0f19cd173eab fix to/cc/bcc recipients in .msg file output format
Carl Byington <carl@five-ten-sg.com>
parents: 311
diff changeset
333 if (email.bcc_address.str) {
0f19cd173eab fix to/cc/bcc recipients in .msg file output format
Carl Byington <carl@five-ten-sg.com>
parents: 311
diff changeset
334 snprintf(&n[0], n.size(), "__recip_version1.0_#%08X", top_head.recipient_count);
0f19cd173eab fix to/cc/bcc recipients in .msg file output format
Carl Byington <carl@five-ten-sg.com>
parents: 311
diff changeset
335 GsfOutput *output = gsf_outfile_new_child(out, &n[0], true);
0f19cd173eab fix to/cc/bcc recipients in .msg file output format
Carl Byington <carl@five-ten-sg.com>
parents: 311
diff changeset
336 {
0f19cd173eab fix to/cc/bcc recipients in .msg file output format
Carl Byington <carl@five-ten-sg.com>
parents: 311
diff changeset
337 int v = 3; // bcc
0f19cd173eab fix to/cc/bcc recipients in .msg file output format
Carl Byington <carl@five-ten-sg.com>
parents: 311
diff changeset
338 property_list prop_list;
0f19cd173eab fix to/cc/bcc recipients in .msg file output format
Carl Byington <carl@five-ten-sg.com>
parents: 311
diff changeset
339 int_property(prop_list, 0x0C150003, 0x6, v); // PidTagRecipientType
0f19cd173eab fix to/cc/bcc recipients in .msg file output format
Carl Byington <carl@five-ten-sg.com>
parents: 311
diff changeset
340 int_property(prop_list, 0x30000003, 0x6, top_head.recipient_count); // PR_ROWID
0f19cd173eab fix to/cc/bcc recipients in .msg file output format
Carl Byington <carl@five-ten-sg.com>
parents: 311
diff changeset
341 GsfOutfile *out = GSF_OUTFILE (output);
0f19cd173eab fix to/cc/bcc recipients in .msg file output format
Carl Byington <carl@five-ten-sg.com>
parents: 311
diff changeset
342 string_property(out, prop_list, 0x3001001E, body_charset, email.bcc_address);
0f19cd173eab fix to/cc/bcc recipients in .msg file output format
Carl Byington <carl@five-ten-sg.com>
parents: 311
diff changeset
343 string_property(out, prop_list, 0x3003001E, body_charset, email.bcc_address);
0f19cd173eab fix to/cc/bcc recipients in .msg file output format
Carl Byington <carl@five-ten-sg.com>
parents: 311
diff changeset
344 string_property(out, prop_list, 0x5ff6001E, body_charset, email.bcc_address);
0f19cd173eab fix to/cc/bcc recipients in .msg file output format
Carl Byington <carl@five-ten-sg.com>
parents: 311
diff changeset
345 write_properties(out, prop_list, (const guint8*)&top_head, 8); // convenient 8 bytes of reserved zeros
0f19cd173eab fix to/cc/bcc recipients in .msg file output format
Carl Byington <carl@five-ten-sg.com>
parents: 311
diff changeset
346 gsf_output_close(output);
0f19cd173eab fix to/cc/bcc recipients in .msg file output format
Carl Byington <carl@five-ten-sg.com>
parents: 311
diff changeset
347 g_object_unref(G_OBJECT(output));
0f19cd173eab fix to/cc/bcc recipients in .msg file output format
Carl Byington <carl@five-ten-sg.com>
parents: 311
diff changeset
348 top_head.next_recipient++;
0f19cd173eab fix to/cc/bcc recipients in .msg file output format
Carl Byington <carl@five-ten-sg.com>
parents: 311
diff changeset
349 top_head.recipient_count++;
0f19cd173eab fix to/cc/bcc recipients in .msg file output format
Carl Byington <carl@five-ten-sg.com>
parents: 311
diff changeset
350 }
308
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
351 }
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
352 }
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
353
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
354 pst_item_attach *a = item->attach;
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
355 while (a) {
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
356 if (a->method == PST_ATTACH_EMBEDDED) {
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
357 // not implemented yet
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
358 }
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
359 else if (a->data.data || a->i_id) {
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
360 vector<char> n(50);
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
361 snprintf(&n[0], n.size(), "__attach_version1.0_#%08X", top_head.attachment_count);
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
362 GsfOutput *output = gsf_outfile_new_child(out, &n[0], true);
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
363 {
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
364 FILE *fp = fopen("temp_file_attachment", "w+b");
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
365 if (fp) {
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
366 pst_attach_to_file(pst, a, fp); // data is now in the file
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
367 fseek(fp, 0, SEEK_SET);
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
368 property_list prop_list;
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
369 int_property(prop_list, 0x0E210003, 0x2, top_head.attachment_count); // MAPI_ATTACH_NUM
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
370 int_property(prop_list, 0x0FF40003, 0x2, 2); // PR_ACCESS read
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
371 int_property(prop_list, 0x0FF70003, 0x2, 0); // PR_ACCESS_LEVEL read only
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
372 int_property(prop_list, 0x0FFE0003, 0x2, 7); // PR_OBJECT_TYPE attachment
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
373 int_property(prop_list, 0x37050003, 0x7, 1); // PR_ATTACH_METHOD by value
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
374 int_property(prop_list, 0x370B0003, 0x7, a->position); // PR_RENDERING_POSITION
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
375 int_property(prop_list, 0x37100003, 0x6, a->sequence); // PR_ATTACH_MIME_SEQUENCE
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
376 GsfOutfile *out = GSF_OUTFILE (output);
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
377 string_property(out, prop_list, 0x0FF90102, item->record_key);
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
378 string_property(out, prop_list, 0x37010102, fp);
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
379 string_property(out, prop_list, 0x3704001E, body_charset, a->filename1);
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
380 string_property(out, prop_list, 0x3707001E, body_charset, a->filename2);
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
381 string_property(out, prop_list, 0x370E001E, body_charset, a->mimetype);
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
382 write_properties(out, prop_list, (const guint8*)&top_head, 8); // convenient 8 bytes of reserved zeros
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
383 gsf_output_close(output);
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
384 g_object_unref(G_OBJECT(output));
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
385 top_head.next_attachment++;
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
386 top_head.attachment_count++;
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
387 fclose(fp);
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
388 }
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
389 }
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
390 }
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
391 a = a->next;
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
392 }
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
393
313
0f19cd173eab fix to/cc/bcc recipients in .msg file output format
Carl Byington <carl@five-ten-sg.com>
parents: 311
diff changeset
394 write_properties(out, prop_list, (const guint8*)&top_head, sizeof(top_head));
0f19cd173eab fix to/cc/bcc recipients in .msg file output format
Carl Byington <carl@five-ten-sg.com>
parents: 311
diff changeset
395
308
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
396 {
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
397 GsfOutput *output = gsf_outfile_new_child(out, "__nameid_version1.0", true);
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
398 {
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
399 GsfOutfile *out = GSF_OUTFILE (output);
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
400 empty_property(out, 0x00020102);
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
401 empty_property(out, 0x00030102);
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
402 empty_property(out, 0x00040102);
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
403 gsf_output_close(output);
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
404 g_object_unref(G_OBJECT(output));
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
405 }
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
406 }
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
407
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
408 gsf_output_close(output);
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
409 g_object_unref(G_OBJECT(output));
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
410
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
411 gsf_shutdown();
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
412 DEBUG_RET();
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
413 }
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
414