annotate src/msg.cpp @ 308:97c53c6868ab

add -m option to readpst to create Outlook .msg files
author Carl Byington <carl@five-ten-sg.com>
date Sun, 13 Dec 2009 14:48:20 -0800
parents
children 4fd5197aacc2
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 */
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
35 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
36 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
37 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
38
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
39 pst_vbuf *newer = pst_vballoc(2);
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
40 size_t rc = pst_vb_utf8to8bit(newer, str.str, strlen(str.str), charset);
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
41 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
42 // 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
43 free(newer->b);
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
44 DEBUG_INFO(("Failed to convert utf-8 to %s\n", charset));
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
45 }
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
46 else {
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
47 // 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
48 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
49 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
50 free(str.str);
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
51 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
52 }
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
53 free(newer);
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
54 }
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
55
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 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
58 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
59 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
60 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
61 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
62 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
63 }
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
64
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
65
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
66 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
67 if (!contents) return;
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
68 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
69 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
70 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
71 gsf_output_write(dst, size, (const guint8*)contents);
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
72 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
73 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
74
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
75 int bias = ((tag & 0x0000ffff) == 0x001e) ? 1 : 0;
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
76 property p;
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
77 p.tag = tag;
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
78 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
79 p.length = bias + size;
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
80 p.reserved = 0;
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
81 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
82 }
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
83
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
84
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
85 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
86 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
87 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
88 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
89
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
90 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
91 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
92 char buf[bsize];
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
93
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
94 while (1) {
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
95 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
96 if (!s) break;
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
97 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
98 }
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
99
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
100 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
101 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
102
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
103 property p;
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
104 p.tag = tag;
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
105 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
106 p.length = size;
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
107 p.reserved = 0;
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
108 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
109 }
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
110
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
111
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
112 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
113 if (contents.str) {
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
114 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
115 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
116 }
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
117 }
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
118
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
119
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
120 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
121 if (contents.str) {
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
122 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
123 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
124 }
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
125 }
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
126
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
127
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
128 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
129 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
130 }
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
131
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
132
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
133 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
134 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
135 }
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
136
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
137
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
138 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
139 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
140 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
141 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
142 property &p = *i;
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
143 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
144 }
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
145 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
146 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
147 }
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 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
151 property p;
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
152 p.tag = tag;
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
153 p.flags = flags;
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
154 p.length = value;
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
155 p.reserved = 0;
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
156 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
157 }
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
158
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
159
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
160 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
161 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
162 }
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
163
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
164
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
165 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
166 // 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
167 if (!item->email) return;
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
168 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
169
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
170 char charset[30];
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
171 const char* body_charset = pst_default_charset(item, sizeof(charset), charset);
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
172
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
173 gsf_init();
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 DEBUG_ENT("write_msg_email");
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
176 GsfOutfile *outfile;
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
177 GsfOutput *output;
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
178 GError *err = NULL;
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
179
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
180 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
181 if (output == NULL) {
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
182 gsf_shutdown();
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
183 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
184 DEBUG_RET();
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
185 return;
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
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
188 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
189 uint32_t reserved1;
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
190 uint32_t reserved2;
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
191 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
192 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
193 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
194 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
195 uint32_t reserved3;
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
196 uint32_t reserved4;
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
197 };
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
198
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
199 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
200 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
201
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
202 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
203 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
204
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
205 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
206 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
207
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
208 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
209 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
210 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
211 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
212 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
213 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
214 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
215 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
216 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
217 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
218 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
219 string_property(out, prop_list, 0x0037001E, body_charset, item->subject);
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
220 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
221 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
222 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
223 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
224 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
225 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
226 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
227 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
228 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
229 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
230 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
231 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
232 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
233 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
234 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
235 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
236 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
237 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
238 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
239 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
240 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
241 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
242 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
243 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
244 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
245 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
246 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
247 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
248 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
249 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
250 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
251 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
252 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
253 // 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
254 // 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
255
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
256 {
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
257 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
258 snprintf(&n[0], n.size(), "__recip_version1.0_#%08X", top_head.recipient_count);
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
259 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
260 {
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
261 int v = (email.message_recip_me) ? 1 : // to
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
262 (email.message_cc_me) ? 2 : // cc
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
263 3; // bcc
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
264 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
265 int_property(prop_list, 0x0C150003, 0x6, v); // PidTagRecipientType
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
266 int_property(prop_list, 0x30000003, 0x6, top_head.recipient_count); // PR_ROWID
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
267 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
268 string_property(out, prop_list, 0x3001001E, body_charset, item->file_as);
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
269 if (item->contact) {
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, 0x3002001E, body_charset, item->contact->address1_transport);
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, 0x3003001E, body_charset, item->contact->address1);
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
272 }
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
273 strin0_property(out, prop_list, 0x300B0102, body_charset, email.outlook_search_key);
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
274 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
275 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
276 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
277 top_head.next_recipient++;
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
278 top_head.recipient_count++;
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
279 }
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
280 }
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
281
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
282 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
283 while (a) {
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
284 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
285 // not implemented yet
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
286 }
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
287 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
288 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
289 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
290 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
291 {
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
292 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
293 if (fp) {
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
294 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
295 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
296 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
297 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
298 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
299 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
300 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
301 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
302 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
303 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
304 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
305 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
306 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
307 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
308 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
309 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
310 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
311 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
312 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
313 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
314 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
315 fclose(fp);
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
316 }
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
317 }
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
318 }
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
319 a = a->next;
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
320 }
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
321
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
322 {
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
323 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
324 {
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
325 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
326 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
327 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
328 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
329 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
330 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
331 }
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
332 }
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
333
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
334 write_properties(out, prop_list, (const guint8*)&top_head, sizeof(top_head));
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
335 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
336 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
337
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
338 gsf_shutdown();
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
339 DEBUG_RET();
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
340 }
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
341