Mercurial > libpst
annotate src/readpst.c @ 122:bdb38b434c0a
more changes from Fridrich Strba to avoid installing our config.h
author | Carl Byington <carl@five-ten-sg.com> |
---|---|
date | Mon, 02 Feb 2009 21:55:48 -0800 |
parents | 8399ef94c11b |
children | ab2a11e72250 |
rev | line source |
---|---|
16 | 1 /*** |
2 * readpst.c | |
3 * Part of the LibPST project | |
4 * Written by David Smith | |
43 | 5 * dave.s@earthcorp.com |
16 | 6 */ |
120
6395ced2b8b2
disable building pst2dii on cygwin
Carl Byington <carl@five-ten-sg.com>
parents:
118
diff
changeset
|
7 #include "common.h" |
6395ced2b8b2
disable building pst2dii on cygwin
Carl Byington <carl@five-ten-sg.com>
parents:
118
diff
changeset
|
8 #include "libpst.h" |
6395ced2b8b2
disable building pst2dii on cygwin
Carl Byington <carl@five-ten-sg.com>
parents:
118
diff
changeset
|
9 #include "timeconv.h" |
59
7d5c637aaafb
General cleanup and code fixes.
Carl Byington <carl@five-ten-sg.com>
parents:
52
diff
changeset
|
10 #include "libstrfunc.h" |
116
ed2a260bbb98
improve handling of content-type charset values in mime parts
Carl Byington <carl@five-ten-sg.com>
parents:
110
diff
changeset
|
11 #include "vbuf.h" |
59
7d5c637aaafb
General cleanup and code fixes.
Carl Byington <carl@five-ten-sg.com>
parents:
52
diff
changeset
|
12 |
122
bdb38b434c0a
more changes from Fridrich Strba to avoid installing our config.h
Carl Byington <carl@five-ten-sg.com>
parents:
121
diff
changeset
|
13 #include "define.h" |
bdb38b434c0a
more changes from Fridrich Strba to avoid installing our config.h
Carl Byington <carl@five-ten-sg.com>
parents:
121
diff
changeset
|
14 #include "lzfu.h" |
bdb38b434c0a
more changes from Fridrich Strba to avoid installing our config.h
Carl Byington <carl@five-ten-sg.com>
parents:
121
diff
changeset
|
15 |
121
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
16 #ifdef HAVE_REGEX_H |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
17 #include <regex.h> |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
18 #endif |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
19 |
16 | 20 #define OUTPUT_TEMPLATE "%s" |
21 #define OUTPUT_KMAIL_DIR_TEMPLATE ".%s.directory" | |
22 #define KMAIL_INDEX ".%s.index" | |
25 | 23 #define SEP_MAIL_FILE_TEMPLATE "%i" /* "%09i" */ |
16 | 24 |
25 // max size of the c_time char*. It will store the date of the email | |
26 #define C_TIME_SIZE 500 | |
59
7d5c637aaafb
General cleanup and code fixes.
Carl Byington <carl@five-ten-sg.com>
parents:
52
diff
changeset
|
27 |
16 | 28 struct file_ll { |
43 | 29 char *name; |
30 char *dname; | |
31 FILE * output; | |
32 int32_t stored_count; | |
33 int32_t email_count; | |
34 int32_t skip_count; | |
35 int32_t type; | |
16 | 36 }; |
31 | 37 |
43 | 38 void process(pst_item *outeritem, pst_desc_ll *d_ptr); |
39 void write_email_body(FILE *f, char *body); | |
121
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
40 void removeCR(char *c); |
118
0f1492b7fe8b
patch from Fridrich Strba for building on mingw and general cleanup of autoconf files
Carl Byington <carl@five-ten-sg.com>
parents:
116
diff
changeset
|
41 void usage(); |
0f1492b7fe8b
patch from Fridrich Strba for building on mingw and general cleanup of autoconf files
Carl Byington <carl@five-ten-sg.com>
parents:
116
diff
changeset
|
42 void version(); |
43 | 43 char* mk_kmail_dir(char*); |
44 int close_kmail_dir(); | |
45 char* mk_recurse_dir(char*); | |
46 int close_recurse_dir(); | |
77 | 47 char* mk_separate_dir(char *dir); |
48 int close_separate_dir(); | |
49 int mk_separate_file(struct file_ll *f); | |
43 | 50 char* my_stristr(char *haystack, char *needle); |
51 void check_filename(char *fname); | |
52 void write_separate_attachment(char f_name[], pst_item_attach* current_attach, int attach_num, pst_file* pst); | |
121
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
53 void write_inline_attachment(FILE* f_output, pst_item_attach* current_attach, char *boundary, pst_file* pst); |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
54 void header_has_field(char *header, char *field, int *flag); |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
55 char* header_get_field(char *header, char *field); |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
56 void header_strip_field(char *header, char *field); |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
57 int test_base64(char *body); |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
58 void find_html_charset(char *html, char *charset, size_t charsetlen); |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
59 void write_body_part(FILE* f_output, char *body, char *mime, char *charset, char *boundary); |
43 | 60 void write_normal_email(FILE* f_output, char f_name[], pst_item* item, int mode, int mode_MH, pst_file* pst, int save_rtf); |
61 void write_vcard(FILE* f_output, pst_item_contact* contact, char comment[]); | |
62 void write_appointment(FILE* f_output, pst_item_appointment* appointment, | |
63 pst_item_email* email, FILETIME* create_date, FILETIME* modify_date); | |
64 void create_enter_dir(struct file_ll* f, pst_item *item); | |
65 void close_enter_dir(struct file_ll *f); | |
34
07177825c91b
fix signed/unsigned to allow very small pst files with only leaf nodes
carl
parents:
33
diff
changeset
|
66 |
118
0f1492b7fe8b
patch from Fridrich Strba for building on mingw and general cleanup of autoconf files
Carl Byington <carl@five-ten-sg.com>
parents:
116
diff
changeset
|
67 const char* prog_name; |
34
07177825c91b
fix signed/unsigned to allow very small pst files with only leaf nodes
carl
parents:
33
diff
changeset
|
68 char* output_dir = "."; |
07177825c91b
fix signed/unsigned to allow very small pst files with only leaf nodes
carl
parents:
33
diff
changeset
|
69 char* kmail_chdir = NULL; |
77 | 70 |
16 | 71 // Normal mode just creates mbox format files in the current directory. Each file is named |
72 // the same as the folder's name that it represents | |
73 #define MODE_NORMAL 0 | |
77 | 74 |
16 | 75 // KMail mode creates a directory structure suitable for being used directly |
76 // by the KMail application | |
77 #define MODE_KMAIL 1 | |
77 | 78 |
16 | 79 // recurse mode creates a directory structure like the PST file. Each directory |
80 // contains only one file which stores the emails in mbox format. | |
81 #define MODE_RECURSE 2 | |
77 | 82 |
83 // separate mode creates the same directory structure as recurse. The emails are stored in | |
84 // separate files, numbering from 1 upward. Attachments belonging to the emails are | |
16 | 85 // saved as email_no-filename (e.g. 1-samplefile.doc or 000001-Attachment2.zip) |
77 | 86 #define MODE_SEPARATE 3 |
87 | |
43 | 88 // Decrypt the whole file (even the parts that aren't encrypted) and ralph it to stdout |
89 #define MODE_DECSPEW 4 | |
16 | 90 |
91 | |
92 // Output Normal just prints the standard information about what is going on | |
93 #define OUTPUT_NORMAL 0 | |
77 | 94 |
16 | 95 // Output Quiet is provided so that only errors are printed |
96 #define OUTPUT_QUIET 1 | |
97 | |
98 // default mime-type for attachments that have a null mime-type | |
99 #define MIME_TYPE_DEFAULT "application/octet-stream" | |
100 | |
101 // output mode for contacts | |
102 #define CMODE_VCARD 0 | |
43 | 103 #define CMODE_LIST 1 |
16 | 104 |
100
1e4a7610d525
fixes from Justin Greer to add -D option to include deleted items, to add missing email headers, to fix bug in my_stristr()
Carl Byington <carl@five-ten-sg.com>
parents:
79
diff
changeset
|
105 // output mode for deleted items |
1e4a7610d525
fixes from Justin Greer to add -D option to include deleted items, to add missing email headers, to fix bug in my_stristr()
Carl Byington <carl@five-ten-sg.com>
parents:
79
diff
changeset
|
106 #define DMODE_EXCLUDE 0 |
1e4a7610d525
fixes from Justin Greer to add -D option to include deleted items, to add missing email headers, to fix bug in my_stristr()
Carl Byington <carl@five-ten-sg.com>
parents:
79
diff
changeset
|
107 #define DMODE_INCLUDE 1 |
1e4a7610d525
fixes from Justin Greer to add -D option to include deleted items, to add missing email headers, to fix bug in my_stristr()
Carl Byington <carl@five-ten-sg.com>
parents:
79
diff
changeset
|
108 |
16 | 109 // output settings for RTF bodies |
110 // filename for the attachment | |
111 #define RTF_ATTACH_NAME "rtf-body.rtf" | |
112 // mime type for the attachment | |
113 #define RTF_ATTACH_TYPE "application/rtf" | |
34
07177825c91b
fix signed/unsigned to allow very small pst files with only leaf nodes
carl
parents:
33
diff
changeset
|
114 |
39 | 115 // global settings |
116 int mode = MODE_NORMAL; | |
117 int mode_MH = 0; | |
118 int output_mode = OUTPUT_NORMAL; | |
119 int contact_mode = CMODE_VCARD; | |
100
1e4a7610d525
fixes from Justin Greer to add -D option to include deleted items, to add missing email headers, to fix bug in my_stristr()
Carl Byington <carl@five-ten-sg.com>
parents:
79
diff
changeset
|
120 int deleted_mode = DMODE_EXCLUDE; |
39 | 121 int overwrite = 0; |
122 int save_rtf_body = 1; | |
123 pst_file pstfile; | |
121
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
124 regex_t meta_charset_pattern; |
39 | 125 |
126 | |
127 void process(pst_item *outeritem, pst_desc_ll *d_ptr) | |
128 { | |
43 | 129 struct file_ll ff; |
130 pst_item *item = NULL; | |
39 | 131 |
43 | 132 DEBUG_ENT("process"); |
133 memset(&ff, 0, sizeof(ff)); | |
134 create_enter_dir(&ff, outeritem); | |
39 | 135 |
43 | 136 while (d_ptr) { |
137 DEBUG_MAIN(("main: New item record\n")); | |
138 if (!d_ptr->desc) { | |
139 DEBUG_WARN(("main: ERROR ?? item's desc record is NULL\n")); | |
140 ff.skip_count++; | |
141 } | |
142 else { | |
143 DEBUG_MAIN(("main: Desc Email ID %#x [d_ptr->id = %#x]\n", d_ptr->desc->id, d_ptr->id)); | |
39 | 144 |
46 | 145 item = pst_parse_item(&pstfile, d_ptr); |
43 | 146 DEBUG_MAIN(("main: About to process item\n")); |
147 if (item && item->email && item->email->subject && item->email->subject->subj) { | |
148 DEBUG_EMAIL(("item->email->subject = %p\n", item->email->subject)); | |
149 DEBUG_EMAIL(("item->email->subject->subj = %p\n", item->email->subject->subj)); | |
150 } | |
151 if (item) { | |
100
1e4a7610d525
fixes from Justin Greer to add -D option to include deleted items, to add missing email headers, to fix bug in my_stristr()
Carl Byington <carl@five-ten-sg.com>
parents:
79
diff
changeset
|
152 if (item->folder && d_ptr->child && (deleted_mode == DMODE_INCLUDE || strcasecmp(item->file_as, "Deleted Items"))) { |
43 | 153 //if this is a non-empty folder other than deleted items, we want to recurse into it |
154 if (output_mode != OUTPUT_QUIET) printf("Processing Folder \"%s\"\n", item->file_as); | |
155 process(item, d_ptr->child); | |
156 | |
157 } else if (item->contact && (item->type == PST_TYPE_CONTACT)) { | |
158 // deal with a contact | |
159 // write them to the file, one per line in this format | |
160 // Desc Name <email@address>\n | |
77 | 161 if (mode == MODE_SEPARATE) mk_separate_file(&ff); |
43 | 162 ff.email_count++; |
163 DEBUG_MAIN(("main: Processing Contact\n")); | |
164 if (ff.type != PST_TYPE_CONTACT) { | |
165 DEBUG_MAIN(("main: I have a contact, but the folder isn't a contacts folder. Processing anyway\n")); | |
166 } | |
167 if (contact_mode == CMODE_VCARD) | |
168 write_vcard(ff.output, item->contact, item->comment); | |
169 else | |
170 fprintf(ff.output, "%s <%s>\n", item->contact->fullname, item->contact->address1); | |
39 | 171 |
110
7133b39975f7
patch from David Cuadrado to process emails with type PST_TYPE_OTHER
Carl Byington <carl@five-ten-sg.com>
parents:
104
diff
changeset
|
172 } else if (item->email && (item->type == PST_TYPE_NOTE || item->type == PST_TYPE_REPORT || item->type == PST_TYPE_OTHER)) { |
77 | 173 if (mode == MODE_SEPARATE) mk_separate_file(&ff); |
43 | 174 ff.email_count++; |
175 DEBUG_MAIN(("main: Processing Email\n")); | |
110
7133b39975f7
patch from David Cuadrado to process emails with type PST_TYPE_OTHER
Carl Byington <carl@five-ten-sg.com>
parents:
104
diff
changeset
|
176 if ((ff.type != PST_TYPE_NOTE) && (ff.type != PST_TYPE_REPORT) && (ff.type != PST_TYPE_OTHER)) { |
43 | 177 DEBUG_MAIN(("main: I have an email, but the folder isn't an email folder. Processing anyway\n")); |
178 } | |
179 write_normal_email(ff.output, ff.name, item, mode, mode_MH, &pstfile, save_rtf_body); | |
39 | 180 |
43 | 181 } else if (item->journal && (item->type == PST_TYPE_JOURNAL)) { |
182 // deal with journal items | |
77 | 183 if (mode == MODE_SEPARATE) mk_separate_file(&ff); |
43 | 184 ff.email_count++; |
185 DEBUG_MAIN(("main: Processing Journal Entry\n")); | |
186 if (ff.type != PST_TYPE_JOURNAL) { | |
187 DEBUG_MAIN(("main: I have a journal entry, but the folder isn't a journal folder. Processing anyway\n")); | |
188 } | |
189 fprintf(ff.output, "BEGIN:VJOURNAL\n"); | |
50 | 190 if (item->email && item->email->subject && item->email->subject->subj) |
43 | 191 fprintf(ff.output, "SUMMARY:%s\n", pst_rfc2426_escape(item->email->subject->subj)); |
50 | 192 if (item->email && item->email->body) |
43 | 193 fprintf(ff.output, "DESCRIPTION:%s\n", pst_rfc2426_escape(item->email->body)); |
194 if (item->journal->start) | |
195 fprintf(ff.output, "DTSTART;VALUE=DATE-TIME:%s\n", pst_rfc2445_datetime_format(item->journal->start)); | |
196 fprintf(ff.output, "END:VJOURNAL\n\n"); | |
39 | 197 |
43 | 198 } else if (item->appointment && (item->type == PST_TYPE_APPOINTMENT)) { |
199 // deal with Calendar appointments | |
77 | 200 if (mode == MODE_SEPARATE) mk_separate_file(&ff); |
43 | 201 ff.email_count++; |
202 DEBUG_MAIN(("main: Processing Appointment Entry\n")); | |
203 if (ff.type != PST_TYPE_APPOINTMENT) { | |
204 DEBUG_MAIN(("main: I have an appointment, but folder isn't specified as an appointment type. Processing...\n")); | |
205 } | |
206 write_appointment(ff.output, item->appointment, item->email, item->create_date, item->modify_date); | |
39 | 207 |
79
56fa05fd5271
Patch from Robert Simpson for encryption type 2.
Carl Byington <carl@five-ten-sg.com>
parents:
77
diff
changeset
|
208 } else if (item->message_store) { |
56fa05fd5271
Patch from Robert Simpson for encryption type 2.
Carl Byington <carl@five-ten-sg.com>
parents:
77
diff
changeset
|
209 // there should only be one message_store, and we have already done it |
56fa05fd5271
Patch from Robert Simpson for encryption type 2.
Carl Byington <carl@five-ten-sg.com>
parents:
77
diff
changeset
|
210 DEBUG_MAIN(("item with message store content, type %i %s folder type %i, skipping it\n", item->type, item->ascii_type, ff.type)); |
56fa05fd5271
Patch from Robert Simpson for encryption type 2.
Carl Byington <carl@five-ten-sg.com>
parents:
77
diff
changeset
|
211 |
43 | 212 } else { |
63
cfd6175f9334
Start work on pst2dii to convert to Summation dii load file format.
Carl Byington <carl@five-ten-sg.com>
parents:
59
diff
changeset
|
213 // these all seem to be things that MS agrees are not included in the item count |
cfd6175f9334
Start work on pst2dii to convert to Summation dii load file format.
Carl Byington <carl@five-ten-sg.com>
parents:
59
diff
changeset
|
214 //ff.skip_count++; |
cfd6175f9334
Start work on pst2dii to convert to Summation dii load file format.
Carl Byington <carl@five-ten-sg.com>
parents:
59
diff
changeset
|
215 DEBUG_MAIN(("main: Unknown item type %i (%s) name (%s)\n", |
cfd6175f9334
Start work on pst2dii to convert to Summation dii load file format.
Carl Byington <carl@five-ten-sg.com>
parents:
59
diff
changeset
|
216 item->type, item->ascii_type, item->file_as)); |
43 | 217 } |
46 | 218 pst_freeItem(item); |
43 | 219 } else { |
220 ff.skip_count++; | |
221 DEBUG_MAIN(("main: A NULL item was seen\n")); | |
222 } | |
223 d_ptr = d_ptr->next; | |
224 } | |
225 } | |
226 close_enter_dir(&ff); | |
227 DEBUG_RET(); | |
39 | 228 } |
229 | |
230 | |
34
07177825c91b
fix signed/unsigned to allow very small pst files with only leaf nodes
carl
parents:
33
diff
changeset
|
231 |
118
0f1492b7fe8b
patch from Fridrich Strba for building on mingw and general cleanup of autoconf files
Carl Byington <carl@five-ten-sg.com>
parents:
116
diff
changeset
|
232 int main(int argc, char* const* argv) { |
43 | 233 pst_item *item = NULL; |
234 pst_desc_ll *d_ptr; | |
235 char * fname = NULL; | |
48 | 236 char *d_log = NULL; |
43 | 237 int c,x; |
238 char *temp = NULL; //temporary char pointer | |
239 prog_name = argv[0]; | |
16 | 240 |
121
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
241 time_t now = time(NULL); |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
242 srand((unsigned)now); |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
243 |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
244 if (regcomp(&meta_charset_pattern, "<meta[^>]*content=\"[^>]*charset=([^>\";]*)[\";]", REG_ICASE | REG_EXTENDED)) { |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
245 printf("cannot compile regex pattern\n"); |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
246 exit(3); |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
247 } |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
248 |
43 | 249 // command-line option handling |
100
1e4a7610d525
fixes from Justin Greer to add -D option to include deleted items, to add missing email headers, to fix bug in my_stristr()
Carl Byington <carl@five-ten-sg.com>
parents:
79
diff
changeset
|
250 while ((c = getopt(argc, argv, "bCc:Dd:hko:qrSMVw"))!= -1) { |
43 | 251 switch (c) { |
252 case 'b': | |
253 save_rtf_body = 0; | |
254 break; | |
255 case 'C': | |
256 mode = MODE_DECSPEW; | |
257 break; | |
258 case 'c': | |
259 if (optarg && optarg[0]=='v') | |
260 contact_mode=CMODE_VCARD; | |
261 else if (optarg && optarg[0]=='l') | |
262 contact_mode=CMODE_LIST; | |
263 else { | |
264 usage(); | |
265 exit(0); | |
266 } | |
267 break; | |
100
1e4a7610d525
fixes from Justin Greer to add -D option to include deleted items, to add missing email headers, to fix bug in my_stristr()
Carl Byington <carl@five-ten-sg.com>
parents:
79
diff
changeset
|
268 case 'D': |
1e4a7610d525
fixes from Justin Greer to add -D option to include deleted items, to add missing email headers, to fix bug in my_stristr()
Carl Byington <carl@five-ten-sg.com>
parents:
79
diff
changeset
|
269 deleted_mode = DMODE_INCLUDE; |
1e4a7610d525
fixes from Justin Greer to add -D option to include deleted items, to add missing email headers, to fix bug in my_stristr()
Carl Byington <carl@five-ten-sg.com>
parents:
79
diff
changeset
|
270 break; |
43 | 271 case 'd': |
272 d_log = optarg; | |
273 break; | |
274 case 'h': | |
275 usage(); | |
276 exit(0); | |
277 break; | |
278 case 'V': | |
279 version(); | |
280 exit(0); | |
281 break; | |
282 case 'k': | |
283 mode = MODE_KMAIL; | |
284 break; | |
285 case 'M': | |
77 | 286 mode = MODE_SEPARATE; |
43 | 287 mode_MH = 1; |
288 break; | |
289 case 'o': | |
290 output_dir = optarg; | |
291 break; | |
292 case 'q': | |
293 output_mode = OUTPUT_QUIET; | |
294 break; | |
295 case 'r': | |
296 mode = MODE_RECURSE; | |
297 break; | |
298 case 'S': | |
77 | 299 mode = MODE_SEPARATE; |
43 | 300 break; |
301 case 'w': | |
302 overwrite = 1; | |
303 break; | |
304 default: | |
305 usage(); | |
306 exit(1); | |
307 break; | |
308 } | |
309 } | |
310 | |
311 if (argc > optind) { | |
312 fname = argv[optind]; | |
313 } else { | |
314 usage(); | |
315 exit(2); | |
316 } | |
317 | |
318 #ifdef DEBUG_ALL | |
319 // force a log file | |
320 if (!d_log) d_log = "readpst.log"; | |
321 #endif // defined DEBUG_ALL | |
322 DEBUG_INIT(d_log); | |
323 DEBUG_REGISTER_CLOSE(); | |
324 DEBUG_ENT("main"); | |
16 | 325 |
43 | 326 if (mode == MODE_DECSPEW) { |
70
b12f4e50e2e8
Patch from Joachim Metz <joachim.metz@gmail.com> for 64 bit compile.
Carl Byington <carl@five-ten-sg.com>
parents:
63
diff
changeset
|
327 FILE *fp; |
b12f4e50e2e8
Patch from Joachim Metz <joachim.metz@gmail.com> for 64 bit compile.
Carl Byington <carl@five-ten-sg.com>
parents:
63
diff
changeset
|
328 char buf[1024]; |
b12f4e50e2e8
Patch from Joachim Metz <joachim.metz@gmail.com> for 64 bit compile.
Carl Byington <carl@five-ten-sg.com>
parents:
63
diff
changeset
|
329 size_t l = 0; |
43 | 330 if (NULL == (fp = fopen(fname, "rb"))) { |
331 fprintf(stderr, "Couldn't open file %s\n", fname ); | |
52 | 332 DEBUG_RET(); |
43 | 333 return 1; |
334 } | |
39 | 335 |
73
3cb02cb1e6cd
Patch from Robert Simpson to fix doubly-linked list in the cache_ptr code, and allow arrays of unicode strings (without converting them).
Carl Byington <carl@five-ten-sg.com>
parents:
70
diff
changeset
|
336 while (0 != (l = fread(buf, 1, 1024, fp))) { |
79
56fa05fd5271
Patch from Robert Simpson for encryption type 2.
Carl Byington <carl@five-ten-sg.com>
parents:
77
diff
changeset
|
337 if (0 != pst_decrypt(0, buf, l, PST_COMP_ENCRYPT)) |
46 | 338 fprintf(stderr, "pst_decrypt() failed (I'll try to continue)\n"); |
16 | 339 |
73
3cb02cb1e6cd
Patch from Robert Simpson to fix doubly-linked list in the cache_ptr code, and allow arrays of unicode strings (without converting them).
Carl Byington <carl@five-ten-sg.com>
parents:
70
diff
changeset
|
340 if (l != pst_fwrite(buf, 1, l, stdout)) { |
43 | 341 fprintf(stderr, "Couldn't output to stdout?\n"); |
52 | 342 DEBUG_RET(); |
43 | 343 return 1; |
344 } | |
345 } | |
52 | 346 DEBUG_RET(); |
43 | 347 return 0; |
348 } | |
16 | 349 |
43 | 350 if (output_mode != OUTPUT_QUIET) printf("Opening PST file and indexes...\n"); |
351 | |
59
7d5c637aaafb
General cleanup and code fixes.
Carl Byington <carl@five-ten-sg.com>
parents:
52
diff
changeset
|
352 RET_DERROR(pst_open(&pstfile, fname), 1, ("Error opening File\n")); |
43 | 353 RET_DERROR(pst_load_index(&pstfile), 2, ("Index Error\n")); |
354 | |
355 pst_load_extended_attributes(&pstfile); | |
16 | 356 |
43 | 357 if (chdir(output_dir)) { |
358 x = errno; | |
359 pst_close(&pstfile); | |
360 DEBUG_RET(); | |
361 DIE(("main: Cannot change to output dir %s: %s\n", output_dir, strerror(x))); | |
362 } | |
363 | |
364 if (output_mode != OUTPUT_QUIET) printf("About to start processing first record...\n"); | |
365 | |
366 d_ptr = pstfile.d_head; // first record is main record | |
46 | 367 item = pst_parse_item(&pstfile, d_ptr); |
43 | 368 if (!item || !item->message_store) { |
369 DEBUG_RET(); | |
370 DIE(("main: Could not get root record\n")); | |
371 } | |
16 | 372 |
43 | 373 // default the file_as to the same as the main filename if it doesn't exist |
374 if (!item->file_as) { | |
375 if (!(temp = strrchr(fname, '/'))) | |
376 if (!(temp = strrchr(fname, '\\'))) | |
377 temp = fname; | |
378 else | |
379 temp++; // get past the "\\" | |
380 else | |
381 temp++; // get past the "/" | |
382 item->file_as = (char*)xmalloc(strlen(temp)+1); | |
383 strcpy(item->file_as, temp); | |
384 DEBUG_MAIN(("file_as was blank, so am using %s\n", item->file_as)); | |
385 } | |
386 DEBUG_MAIN(("main: Root Folder Name: %s\n", item->file_as)); | |
16 | 387 |
43 | 388 d_ptr = pst_getTopOfFolders(&pstfile, item); |
389 if (!d_ptr) { | |
390 DEBUG_RET(); | |
391 DIE(("Top of folders record not found. Cannot continue\n")); | |
392 } | |
16 | 393 |
63
cfd6175f9334
Start work on pst2dii to convert to Summation dii load file format.
Carl Byington <carl@five-ten-sg.com>
parents:
59
diff
changeset
|
394 process(item, d_ptr->child); // do the children of TOPF |
46 | 395 pst_freeItem(item); |
43 | 396 pst_close(&pstfile); |
397 DEBUG_RET(); | |
121
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
398 regfree(&meta_charset_pattern); |
43 | 399 return 0; |
16 | 400 } |
31 | 401 |
402 | |
16 | 403 void write_email_body(FILE *f, char *body) { |
43 | 404 char *n = body; |
405 // DEBUG_MAIN(("write_email_body(): \"%s\"\n", body)); | |
406 DEBUG_ENT("write_email_body"); | |
407 while (n) { | |
408 if (strncmp(body, "From ", 5) == 0) | |
409 fprintf(f, ">"); | |
410 if ((n = strchr(body, '\n'))) { | |
411 n++; | |
73
3cb02cb1e6cd
Patch from Robert Simpson to fix doubly-linked list in the cache_ptr code, and allow arrays of unicode strings (without converting them).
Carl Byington <carl@five-ten-sg.com>
parents:
70
diff
changeset
|
412 pst_fwrite(body, n-body, 1, f); //write just a line |
43 | 413 body = n; |
414 } | |
415 } | |
73
3cb02cb1e6cd
Patch from Robert Simpson to fix doubly-linked list in the cache_ptr code, and allow arrays of unicode strings (without converting them).
Carl Byington <carl@five-ten-sg.com>
parents:
70
diff
changeset
|
416 pst_fwrite(body, strlen(body), 1, f); |
43 | 417 DEBUG_RET(); |
16 | 418 } |
31 | 419 |
420 | |
121
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
421 void removeCR (char *c) { |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
422 // converts \r\n to \n |
43 | 423 char *a, *b; |
424 DEBUG_ENT("removeCR"); | |
425 a = b = c; | |
426 while (*a != '\0') { | |
427 *b = *a; | |
121
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
428 if (*a != '\r') b++; |
43 | 429 a++; |
430 } | |
431 *b = '\0'; | |
432 DEBUG_RET(); | |
16 | 433 } |
31 | 434 |
435 | |
118
0f1492b7fe8b
patch from Fridrich Strba for building on mingw and general cleanup of autoconf files
Carl Byington <carl@five-ten-sg.com>
parents:
116
diff
changeset
|
436 void usage() { |
43 | 437 DEBUG_ENT("usage"); |
438 version(); | |
439 printf("Usage: %s [OPTIONS] {PST FILENAME}\n", prog_name); | |
440 printf("OPTIONS:\n"); | |
104
39ba19372732
many fixes in pst2ldif by Robert Harris
Carl Byington <carl@five-ten-sg.com>
parents:
100
diff
changeset
|
441 printf("\t-V\t- Version. Display program version\n"); |
79
56fa05fd5271
Patch from Robert Simpson for encryption type 2.
Carl Byington <carl@five-ten-sg.com>
parents:
77
diff
changeset
|
442 printf("\t-C\t- Decrypt (compressible encryption) the entire file and output on stdout (not typically useful)\n"); |
100
1e4a7610d525
fixes from Justin Greer to add -D option to include deleted items, to add missing email headers, to fix bug in my_stristr()
Carl Byington <carl@five-ten-sg.com>
parents:
79
diff
changeset
|
443 printf("\t-D\t- Include deleted items in output\n"); |
63
cfd6175f9334
Start work on pst2dii to convert to Summation dii load file format.
Carl Byington <carl@five-ten-sg.com>
parents:
59
diff
changeset
|
444 printf("\t-M\t- MH. Write emails in the MH format\n"); |
77 | 445 printf("\t-S\t- Separate. Write emails in the separate format\n"); |
43 | 446 printf("\t-b\t- Don't save RTF-Body attachments\n"); |
447 printf("\t-c[v|l]\t- Set the Contact output mode. -cv = VCard, -cl = EMail list\n"); | |
63
cfd6175f9334
Start work on pst2dii to convert to Summation dii load file format.
Carl Byington <carl@five-ten-sg.com>
parents:
59
diff
changeset
|
448 printf("\t-d <filename> \t- Debug to file. This is a binary log. Use readpstlog to print it\n"); |
43 | 449 printf("\t-h\t- Help. This screen\n"); |
450 printf("\t-k\t- KMail. Output in kmail format\n"); | |
63
cfd6175f9334
Start work on pst2dii to convert to Summation dii load file format.
Carl Byington <carl@five-ten-sg.com>
parents:
59
diff
changeset
|
451 printf("\t-o <dirname>\t- Output directory to write files to. CWD is changed *after* opening pst file\n"); |
43 | 452 printf("\t-q\t- Quiet. Only print error messages\n"); |
453 printf("\t-r\t- Recursive. Output in a recursive format\n"); | |
454 printf("\t-w\t- Overwrite any output mbox files\n"); | |
455 DEBUG_RET(); | |
16 | 456 } |
31 | 457 |
458 | |
118
0f1492b7fe8b
patch from Fridrich Strba for building on mingw and general cleanup of autoconf files
Carl Byington <carl@five-ten-sg.com>
parents:
116
diff
changeset
|
459 void version() { |
43 | 460 DEBUG_ENT("version"); |
50 | 461 printf("ReadPST / LibPST v%s\n", VERSION); |
16 | 462 #if BYTE_ORDER == BIG_ENDIAN |
43 | 463 printf("Big Endian implementation being used.\n"); |
16 | 464 #elif BYTE_ORDER == LITTLE_ENDIAN |
43 | 465 printf("Little Endian implementation being used.\n"); |
16 | 466 #else |
467 # error "Byte order not supported by this library" | |
468 #endif | |
469 #ifdef __GNUC__ | |
43 | 470 printf("GCC %d.%d : %s %s\n", __GNUC__, __GNUC_MINOR__, __DATE__, __TIME__); |
16 | 471 #endif |
43 | 472 DEBUG_RET(); |
16 | 473 } |
31 | 474 |
475 | |
16 | 476 char *mk_kmail_dir(char *fname) { |
43 | 477 //change to that directory |
478 //make a directory based on OUTPUT_KMAIL_DIR_TEMPLATE | |
479 //allocate space for OUTPUT_TEMPLATE and form a char* with fname | |
480 //return that value | |
481 char *dir, *out_name, *index; | |
482 int x; | |
483 DEBUG_ENT("mk_kmail_dir"); | |
484 if (kmail_chdir && chdir(kmail_chdir)) { | |
485 x = errno; | |
486 DIE(("mk_kmail_dir: Cannot change to directory %s: %s\n", kmail_chdir, strerror(x))); | |
487 } | |
488 dir = malloc(strlen(fname)+strlen(OUTPUT_KMAIL_DIR_TEMPLATE)+1); | |
489 sprintf(dir, OUTPUT_KMAIL_DIR_TEMPLATE, fname); | |
490 check_filename(dir); | |
491 if (D_MKDIR(dir)) { | |
492 //error occured | |
493 if (errno != EEXIST) { | |
494 x = errno; | |
495 DIE(("mk_kmail_dir: Cannot create directory %s: %s\n", dir, strerror(x))); | |
496 } | |
497 } | |
498 kmail_chdir = realloc(kmail_chdir, strlen(dir)+1); | |
499 strcpy(kmail_chdir, dir); | |
500 free (dir); | |
16 | 501 |
43 | 502 //we should remove any existing indexes created by KMail, cause they might be different now |
503 index = malloc(strlen(fname)+strlen(KMAIL_INDEX)+1); | |
504 sprintf(index, KMAIL_INDEX, fname); | |
505 unlink(index); | |
506 free(index); | |
16 | 507 |
43 | 508 out_name = malloc(strlen(fname)+strlen(OUTPUT_TEMPLATE)+1); |
509 sprintf(out_name, OUTPUT_TEMPLATE, fname); | |
510 DEBUG_RET(); | |
511 return out_name; | |
16 | 512 } |
31 | 513 |
514 | |
16 | 515 int close_kmail_dir() { |
43 | 516 // change .. |
517 int x; | |
518 DEBUG_ENT("close_kmail_dir"); | |
519 if (kmail_chdir) { //only free kmail_chdir if not NULL. do not change directory | |
520 free(kmail_chdir); | |
521 kmail_chdir = NULL; | |
522 } else { | |
523 if (chdir("..")) { | |
524 x = errno; | |
525 DIE(("close_kmail_dir: Cannot move up dir (..): %s\n", strerror(x))); | |
526 } | |
527 } | |
528 DEBUG_RET(); | |
529 return 0; | |
16 | 530 } |
31 | 531 |
532 | |
16 | 533 // this will create a directory by that name, then make an mbox file inside |
534 // that dir. any subsequent dirs will be created by name, and they will | |
535 // contain mbox files | |
536 char *mk_recurse_dir(char *dir) { | |
43 | 537 int x; |
538 char *out_name; | |
539 DEBUG_ENT("mk_recurse_dir"); | |
540 check_filename(dir); | |
541 if (D_MKDIR (dir)) { | |
542 if (errno != EEXIST) { // not an error because it exists | |
543 x = errno; | |
544 DIE(("mk_recurse_dir: Cannot create directory %s: %s\n", dir, strerror(x))); | |
545 } | |
546 } | |
547 if (chdir (dir)) { | |
548 x = errno; | |
549 DIE(("mk_recurse_dir: Cannot change to directory %s: %s\n", dir, strerror(x))); | |
550 } | |
551 out_name = malloc(strlen("mbox")+1); | |
552 strcpy(out_name, "mbox"); | |
553 DEBUG_RET(); | |
554 return out_name; | |
16 | 555 } |
31 | 556 |
557 | |
16 | 558 int close_recurse_dir() { |
43 | 559 int x; |
560 DEBUG_ENT("close_recurse_dir"); | |
561 if (chdir("..")) { | |
562 x = errno; | |
563 DIE(("close_recurse_dir: Cannot go up dir (..): %s\n", strerror(x))); | |
564 } | |
565 DEBUG_RET(); | |
566 return 0; | |
16 | 567 } |
31 | 568 |
569 | |
77 | 570 char *mk_separate_dir(char *dir) { |
43 | 571 size_t dirsize = strlen(dir) + 10; |
572 char dir_name[dirsize]; | |
573 int x = 0, y = 0; | |
16 | 574 |
77 | 575 DEBUG_ENT("mk_separate_dir"); |
43 | 576 do { |
577 if (y == 0) | |
578 snprintf(dir_name, dirsize, "%s", dir); | |
579 else | |
580 snprintf(dir_name, dirsize, "%s" SEP_MAIL_FILE_TEMPLATE, dir, y); // enough for 9 digits allocated above | |
16 | 581 |
43 | 582 check_filename(dir_name); |
583 DEBUG_MAIN(("about to try creating %s\n", dir_name)); | |
584 if (D_MKDIR(dir_name)) { | |
585 if (errno != EEXIST) { // if there is an error, and it doesn't already exist | |
586 x = errno; | |
77 | 587 DIE(("mk_separate_dir: Cannot create directory %s: %s\n", dir, strerror(x))); |
43 | 588 } |
589 } else { | |
590 break; | |
591 } | |
592 y++; | |
593 } while (overwrite == 0); | |
16 | 594 |
43 | 595 if (chdir(dir_name)) { |
596 x = errno; | |
77 | 597 DIE(("mk_separate_dir: Cannot change to directory %s: %s\n", dir, strerror(x))); |
43 | 598 } |
16 | 599 |
43 | 600 if (overwrite) { |
601 // we should probably delete all files from this directory | |
16 | 602 #if !defined(WIN32) && !defined(__CYGWIN__) |
43 | 603 DIR * sdir = NULL; |
604 struct dirent *dirent = NULL; | |
605 struct stat filestat; | |
606 if (!(sdir = opendir("./"))) { | |
77 | 607 WARN(("mk_separate_dir: Cannot open dir \"%s\" for deletion of old contents\n", "./")); |
43 | 608 } else { |
609 while ((dirent = readdir(sdir))) { | |
610 if (lstat(dirent->d_name, &filestat) != -1) | |
611 if (S_ISREG(filestat.st_mode)) { | |
612 if (unlink(dirent->d_name)) { | |
613 y = errno; | |
77 | 614 DIE(("mk_separate_dir: unlink returned error on file %s: %s\n", dirent->d_name, strerror(y))); |
43 | 615 } |
616 } | |
617 } | |
618 } | |
26 | 619 #endif |
43 | 620 } |
16 | 621 |
43 | 622 // we don't return a filename here cause it isn't necessary. |
623 DEBUG_RET(); | |
624 return NULL; | |
16 | 625 } |
31 | 626 |
627 | |
77 | 628 int close_separate_dir() { |
43 | 629 int x; |
77 | 630 DEBUG_ENT("close_separate_dir"); |
43 | 631 if (chdir("..")) { |
632 x = errno; | |
77 | 633 DIE(("close_separate_dir: Cannot go up dir (..): %s\n", strerror(x))); |
43 | 634 } |
635 DEBUG_RET(); | |
636 return 0; | |
16 | 637 } |
31 | 638 |
639 | |
77 | 640 int mk_separate_file(struct file_ll *f) { |
43 | 641 const int name_offset = 1; |
77 | 642 DEBUG_ENT("mk_separate_file"); |
43 | 643 DEBUG_MAIN(("opening next file to save email\n")); |
644 if (f->email_count > 999999999) { // bigger than nine 9's | |
77 | 645 DIE(("mk_separate_file: The number of emails in this folder has become too high to handle")); |
43 | 646 } |
647 sprintf(f->name, SEP_MAIL_FILE_TEMPLATE, f->email_count + name_offset); | |
648 if (f->output) fclose(f->output); | |
649 f->output = NULL; | |
650 check_filename(f->name); | |
651 if (!(f->output = fopen(f->name, "w"))) { | |
77 | 652 DIE(("mk_separate_file: Cannot open file to save email \"%s\"\n", f->name)); |
43 | 653 } |
654 DEBUG_RET(); | |
655 return 0; | |
16 | 656 } |
31 | 657 |
658 | |
16 | 659 char *my_stristr(char *haystack, char *needle) { |
43 | 660 // my_stristr varies from strstr in that its searches are case-insensitive |
661 char *x=haystack, *y=needle, *z = NULL; | |
52 | 662 if (!haystack || !needle) { |
43 | 663 return NULL; |
52 | 664 } |
43 | 665 while (*y != '\0' && *x != '\0') { |
666 if (tolower(*y) == tolower(*x)) { | |
667 // move y on one | |
668 y++; | |
669 if (!z) { | |
670 z = x; // store first position in haystack where a match is made | |
671 } | |
672 } else { | |
673 y = needle; // reset y to the beginning of the needle | |
674 z = NULL; // reset the haystack storage point | |
675 } | |
676 x++; // advance the search in the haystack | |
677 } | |
100
1e4a7610d525
fixes from Justin Greer to add -D option to include deleted items, to add missing email headers, to fix bug in my_stristr()
Carl Byington <carl@five-ten-sg.com>
parents:
79
diff
changeset
|
678 // If the haystack ended before our search finished, it's not a match. |
1e4a7610d525
fixes from Justin Greer to add -D option to include deleted items, to add missing email headers, to fix bug in my_stristr()
Carl Byington <carl@five-ten-sg.com>
parents:
79
diff
changeset
|
679 if (*y != '\0') return NULL; |
43 | 680 return z; |
16 | 681 } |
31 | 682 |
683 | |
41
183ae993b9ad
security fix for potential buffer overrun in lz decompress
carl
parents:
39
diff
changeset
|
684 void check_filename(char *fname) { |
43 | 685 char *t = fname; |
686 DEBUG_ENT("check_filename"); | |
687 if (!t) { | |
688 DEBUG_RET(); | |
52 | 689 return; |
43 | 690 } |
691 while ((t = strpbrk(t, "/\\:"))) { | |
692 // while there are characters in the second string that we don't want | |
693 *t = '_'; //replace them with an underscore | |
694 } | |
695 DEBUG_RET(); | |
16 | 696 } |
31 | 697 |
698 | |
25 | 699 void write_separate_attachment(char f_name[], pst_item_attach* current_attach, int attach_num, pst_file* pst) |
700 { | |
43 | 701 FILE *fp = NULL; |
702 int x = 0; | |
703 char *temp = NULL; | |
31 | 704 |
43 | 705 // If there is a long filename (filename2) use that, otherwise |
706 // use the 8.3 filename (filename1) | |
707 char *attach_filename = (current_attach->filename2) ? current_attach->filename2 | |
708 : current_attach->filename1; | |
46 | 709 DEBUG_ENT("write_separate_attachment"); |
25 | 710 |
43 | 711 check_filename(f_name); |
712 if (!attach_filename) { | |
713 // generate our own (dummy) filename for the attachement | |
714 temp = xmalloc(strlen(f_name)+15); | |
715 sprintf(temp, "%s-attach%i", f_name, attach_num); | |
716 } else { | |
717 // have an attachment name, make sure it's unique | |
718 temp = xmalloc(strlen(f_name)+strlen(attach_filename)+15); | |
719 do { | |
720 if (fp) fclose(fp); | |
721 if (x == 0) | |
722 sprintf(temp, "%s-%s", f_name, attach_filename); | |
723 else | |
724 sprintf(temp, "%s-%s-%i", f_name, attach_filename, x); | |
725 } while ((fp = fopen(temp, "r")) && ++x < 99999999); | |
726 if (x > 99999999) { | |
727 DIE(("error finding attachment name. exhausted possibilities to %s\n", temp)); | |
728 } | |
729 } | |
730 DEBUG_EMAIL(("Saving attachment to %s\n", temp)); | |
731 if (!(fp = fopen(temp, "w"))) { | |
732 WARN(("write_separate_attachment: Cannot open attachment save file \"%s\"\n", temp)); | |
733 } else { | |
734 if (current_attach->data) | |
73
3cb02cb1e6cd
Patch from Robert Simpson to fix doubly-linked list in the cache_ptr code, and allow arrays of unicode strings (without converting them).
Carl Byington <carl@five-ten-sg.com>
parents:
70
diff
changeset
|
735 pst_fwrite(current_attach->data, 1, current_attach->size, fp); |
43 | 736 else { |
46 | 737 (void)pst_attach_to_file(pst, current_attach, fp); |
43 | 738 } |
739 fclose(fp); | |
740 } | |
741 if (temp) free(temp); | |
742 DEBUG_RET(); | |
25 | 743 } |
744 | |
31 | 745 |
121
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
746 void write_inline_attachment(FILE* f_output, pst_item_attach* current_attach, char *boundary, pst_file* pst) |
25 | 747 { |
121
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
748 char *attach_filename; |
46 | 749 char *enc = NULL; // base64 encoded attachment |
43 | 750 DEBUG_ENT("write_inline_attachment"); |
751 DEBUG_EMAIL(("Attachment Size is %i\n", current_attach->size)); | |
752 DEBUG_EMAIL(("Attachment Pointer is %p\n", current_attach->data)); | |
753 if (current_attach->data) { | |
754 enc = base64_encode (current_attach->data, current_attach->size); | |
755 if (!enc) { | |
756 DEBUG_EMAIL(("ERROR base64_encode returned NULL. Must have failed\n")); | |
52 | 757 DEBUG_RET(); |
43 | 758 return; |
759 } | |
760 } | |
121
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
761 |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
762 fprintf(f_output, "\n--%s\n", boundary); |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
763 if (!current_attach->mimetype) { |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
764 fprintf(f_output, "Content-Type: %s\n", MIME_TYPE_DEFAULT); |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
765 } else { |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
766 fprintf(f_output, "Content-Type: %s\n", current_attach->mimetype); |
43 | 767 } |
121
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
768 fprintf(f_output, "Content-Transfer-Encoding: base64\n"); |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
769 // If there is a long filename (filename2) use that, otherwise |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
770 // use the 8.3 filename (filename1) |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
771 if (current_attach->filename2) { |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
772 attach_filename = current_attach->filename2; |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
773 } else { |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
774 attach_filename = current_attach->filename1; |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
775 } |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
776 if (!attach_filename) { |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
777 fprintf(f_output, "Content-Disposition: inline\n\n"); |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
778 } else { |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
779 fprintf(f_output, "Content-Disposition: attachment; filename=\"%s\"\n\n", attach_filename); |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
780 } |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
781 |
43 | 782 if (current_attach->data) { |
73
3cb02cb1e6cd
Patch from Robert Simpson to fix doubly-linked list in the cache_ptr code, and allow arrays of unicode strings (without converting them).
Carl Byington <carl@five-ten-sg.com>
parents:
70
diff
changeset
|
783 pst_fwrite(enc, 1, strlen(enc), f_output); |
43 | 784 DEBUG_EMAIL(("Attachment Size after encoding is %i\n", strlen(enc))); |
785 free(enc); // caught by valgrind | |
786 } else { | |
46 | 787 (void)pst_attach_to_file_base64(pst, current_attach, f_output); |
43 | 788 } |
789 fprintf(f_output, "\n\n"); | |
790 DEBUG_RET(); | |
25 | 791 } |
792 | |
31 | 793 |
121
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
794 void header_has_field(char *header, char *field, int *flag) |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
795 { |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
796 if (my_stristr(header, field) || (strncasecmp(header, field+1, strlen(field)-1) == 0)) { |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
797 DEBUG_EMAIL(("header block has %s header\n", field+1)); |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
798 *flag = 1; |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
799 } |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
800 } |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
801 |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
802 |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
803 char* header_get_field(char *header, char *field) |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
804 { |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
805 char *t = my_stristr(header, field); |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
806 if (!t && (strncasecmp(header, field+1, strlen(field)-1) == 0)) t = header; |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
807 return t; |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
808 } |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
809 |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
810 |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
811 void header_strip_field(char *header, char *field) |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
812 { |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
813 char *e; |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
814 char *t = header_get_field(header, field); |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
815 if (t) { |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
816 e = strchr(t+1, '\n'); |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
817 while (e && ((e[1] == ' ') || (e[1] == '\t'))) { |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
818 e = strchr(e+1, '\n'); |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
819 } |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
820 if (e) { |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
821 if (t == header) e++; // if *t is not \n, we don't want to keep the \n at *e either. |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
822 while (*e != '\0') { |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
823 *t = *e; |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
824 t++; |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
825 e++; |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
826 } |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
827 *t = '\0'; |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
828 } |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
829 else { |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
830 // this was the last header field, truncate the headers |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
831 *t = '\0'; |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
832 } |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
833 } |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
834 } |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
835 |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
836 |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
837 int test_base64(char *body) |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
838 { |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
839 int b64 = 0; |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
840 uint8_t *b = (uint8_t *)body; |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
841 while (*b != 0) { |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
842 if ((*b < 32) && (*b != 9) && (*b != 10)) { |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
843 DEBUG_EMAIL(("found base64 byte %d\n", (int)*b)); |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
844 DEBUG_HEXDUMPC(body, strlen(body), 0x10); |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
845 b64 = 1; |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
846 break; |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
847 } |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
848 b++; |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
849 } |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
850 return b64; |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
851 } |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
852 |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
853 |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
854 void find_html_charset(char *html, char *charset, size_t charsetlen) |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
855 { |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
856 const int index = 1; |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
857 const int nmatch = index+1; |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
858 regmatch_t match[nmatch]; |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
859 int rc = regexec(&meta_charset_pattern, html, nmatch, match, 0); |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
860 if (rc == 0) { |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
861 int s = match[index].rm_so; |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
862 int e = match[index].rm_eo; |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
863 if (s != -1) { |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
864 char save = html[e]; |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
865 html[e] = '\0'; |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
866 snprintf(charset, charsetlen, "%s", html+s); // copy the html charset |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
867 html[e] = save; |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
868 DEBUG_EMAIL(("charset %s from html text\n", charset)); |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
869 } |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
870 else { |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
871 DEBUG_EMAIL(("matching %d %d %d %d", match[0].rm_so, match[0].rm_eo, match[1].rm_so, match[1].rm_eo)); |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
872 DEBUG_HEXDUMPC(html, strlen(html), 0x10); |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
873 } |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
874 } |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
875 else { |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
876 DEBUG_EMAIL(("regexec returns %d\n", rc)); |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
877 } |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
878 } |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
879 |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
880 |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
881 void write_body_part(FILE* f_output, char *body, char *mime, char *charset, char *boundary) |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
882 { |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
883 char *needfree = NULL; |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
884 if (strcasecmp("utf-8", charset)) { |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
885 // try to convert to the specified charset since it is not utf-8 |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
886 size_t rc; |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
887 DEBUG_EMAIL(("Convert %s utf-8 to %s\n", mime, charset)); |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
888 vbuf *newer = vballoc(2); |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
889 rc = vb_utf8to8bit(newer, body, strlen(body) + 1, charset); |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
890 if (rc == (size_t)-1) { |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
891 // unable to convert, maybe it is already in that character set |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
892 free(newer->b); |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
893 DEBUG_EMAIL(("Failed to convert %s utf-8 to %s\n", mime, charset)); |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
894 } |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
895 else { |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
896 needfree = body = newer->b; |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
897 } |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
898 free(newer); |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
899 } |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
900 removeCR(body); |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
901 int base64 = test_base64(body); |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
902 fprintf(f_output, "\n--%s\n", boundary); |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
903 fprintf(f_output, "Content-Type: %s; charset=\"%s\"\n", mime, charset); |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
904 if (base64) fprintf(f_output, "Content-Transfer-Encoding: base64\n"); |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
905 fprintf(f_output, "\n"); |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
906 if (base64) { |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
907 char *enc = base64_encode(body, strlen(body)); |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
908 if (enc) { |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
909 write_email_body(f_output, enc); |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
910 fprintf(f_output, "\n"); |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
911 free(enc); |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
912 } |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
913 } |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
914 else { |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
915 write_email_body(f_output, body); |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
916 } |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
917 if (needfree) free(needfree); |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
918 } |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
919 |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
920 |
31 | 921 void write_normal_email(FILE* f_output, char f_name[], pst_item* item, int mode, int mode_MH, pst_file* pst, int save_rtf) |
25 | 922 { |
121
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
923 char boundary[60]; |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
924 char body_charset[60]; |
43 | 925 char *temp = NULL; |
121
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
926 int attach_num; |
43 | 927 time_t em_time; |
928 char *c_time; | |
929 pst_item_attach* current_attach; | |
100
1e4a7610d525
fixes from Justin Greer to add -D option to include deleted items, to add missing email headers, to fix bug in my_stristr()
Carl Byington <carl@five-ten-sg.com>
parents:
79
diff
changeset
|
930 int has_from, has_subject, has_to, has_cc, has_bcc, has_date; |
1e4a7610d525
fixes from Justin Greer to add -D option to include deleted items, to add missing email headers, to fix bug in my_stristr()
Carl Byington <carl@five-ten-sg.com>
parents:
79
diff
changeset
|
931 has_from = has_subject = has_to = has_cc = has_bcc = has_date = 0; |
46 | 932 DEBUG_ENT("write_normal_email"); |
25 | 933 |
121
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
934 // setup default body character set |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
935 snprintf(body_charset, sizeof(body_charset), "%s", (item->email->body_charset) ? item->email->body_charset : "utf-8"); |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
936 |
43 | 937 // convert the sent date if it exists, or set it to a fixed date |
938 if (item->email->sent_date) { | |
939 em_time = fileTimeToUnixTime(item->email->sent_date, 0); | |
940 c_time = ctime(&em_time); | |
941 if (c_time) | |
942 c_time[strlen(c_time)-1] = '\0'; //remove end \n | |
943 else | |
944 c_time = "Fri Dec 28 12:06:21 2001"; | |
945 } else | |
946 c_time= "Fri Dec 28 12:06:21 2001"; | |
25 | 947 |
121
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
948 // create our MIME boundary here. |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
949 snprintf(boundary, sizeof(boundary), "--boundary-LibPST-iamunique-%i_-_-", rand()); |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
950 |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
951 // we will always look at the headers to discover some stuff |
43 | 952 if (item->email->header ) { |
121
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
953 char *t; |
43 | 954 removeCR(item->email->header); |
25 | 955 |
121
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
956 // some of the headers we get from the file are not properly defined. |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
957 // they can contain some email stuff too. We will cut off the header |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
958 // when we see a \n\n |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
959 temp = strstr(item->email->header, "\n\n"); |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
960 if (temp) { |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
961 temp[1] = '\0'; // stop after first \n |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
962 DEBUG_EMAIL(("Found body text in header %s\n", temp+2)); |
43 | 963 } |
25 | 964 |
121
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
965 // Check if the headers have all the necessary fields |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
966 header_has_field(item->email->header, "\nFrom: ", &has_from); |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
967 header_has_field(item->email->header, "\nTo: ", &has_to); |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
968 header_has_field(item->email->header, "\nSubject: ", &has_subject); |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
969 header_has_field(item->email->header, "\nDate: ", &has_date); |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
970 header_has_field(item->email->header, "\nCC: ", &has_cc); |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
971 header_has_field(item->email->header, "\nBCC: ", &has_bcc); |
31 | 972 |
121
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
973 // look for charset in Content-Type header |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
974 t = header_get_field(item->email->header, "\nContent-Type: "); |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
975 if (t) { |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
976 // assume charset= will be on the first line, rather than on a continuation line |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
977 t++; |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
978 char *n = strchr(t, '\n'); |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
979 char *s = my_stristr(t, "; charset="); |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
980 if (n && s && (s < n)) { |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
981 char *e; |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
982 char save; |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
983 s += 10; // skip over charset= |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
984 if (*s == '"') { |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
985 s++; |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
986 e = strchr(s, '"'); |
43 | 987 } |
121
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
988 else { |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
989 e = strchr(s, ';'); |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
990 } |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
991 if (!e || (e > n)) e = n; // use the trailing lf as terminator if nothing better |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
992 save = *e; |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
993 *e = '\0'; |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
994 snprintf(body_charset, sizeof(body_charset), "%s", s); // copy the charset to our buffer |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
995 *e = save; |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
996 DEBUG_EMAIL(("body charset %s from headers\n", body_charset)); |
43 | 997 } |
998 } | |
100
1e4a7610d525
fixes from Justin Greer to add -D option to include deleted items, to add missing email headers, to fix bug in my_stristr()
Carl Byington <carl@five-ten-sg.com>
parents:
79
diff
changeset
|
999 |
121
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
1000 // Strip out the mime headers and some others that we don't want to emit |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
1001 header_strip_field(item->email->header, "\nMicrosoft Mail Internet Headers"); |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
1002 header_strip_field(item->email->header, "\nMIME-Version: "); |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
1003 header_strip_field(item->email->header, "\nContent-Type: "); |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
1004 header_strip_field(item->email->header, "\nContent-Transfer-Encoding: "); |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
1005 header_strip_field(item->email->header, "\nContent-class: "); |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
1006 header_strip_field(item->email->header, "\nX-MimeOLE: "); |
43 | 1007 } |
25 | 1008 |
43 | 1009 DEBUG_EMAIL(("About to print Header\n")); |
31 | 1010 |
43 | 1011 if (item && item->email && item->email->subject && item->email->subject->subj) { |
1012 DEBUG_EMAIL(("item->email->subject->subj = %s\n", item->email->subject->subj)); | |
1013 } | |
31 | 1014 |
43 | 1015 if (item->email->header) { |
1016 int len; | |
121
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
1017 char *soh = item->email->header; |
100
1e4a7610d525
fixes from Justin Greer to add -D option to include deleted items, to add missing email headers, to fix bug in my_stristr()
Carl Byington <carl@five-ten-sg.com>
parents:
79
diff
changeset
|
1018 |
77 | 1019 if (mode != MODE_SEPARATE) { |
1020 // don't put rubbish in if we are doing separate | |
43 | 1021 if (strncmp(soh, "X-From_: ", 9) == 0 ) { |
1022 fputs("From ", f_output); | |
1023 soh += 9; | |
1024 } else | |
1025 fprintf(f_output, "From \"%s\" %s\n", item->email->outlook_sender_name, c_time); | |
1026 } | |
121
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
1027 |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
1028 // make sure the headers end with a \n |
43 | 1029 fprintf(f_output, "%s", soh); |
1030 len = strlen(soh); | |
1031 if (!len || (soh[len-1] != '\n')) fprintf(f_output, "\n"); | |
31 | 1032 |
43 | 1033 } else { |
63
cfd6175f9334
Start work on pst2dii to convert to Summation dii load file format.
Carl Byington <carl@five-ten-sg.com>
parents:
59
diff
changeset
|
1034 //make up our own headers |
77 | 1035 if (mode != MODE_SEPARATE) { |
43 | 1036 // don't want this first line for this mode |
1037 if (item->email->outlook_sender_name) { | |
1038 temp = item->email->outlook_sender_name; | |
1039 } else { | |
1040 temp = "(readpst_null)"; | |
1041 } | |
1042 fprintf(f_output, "From \"%s\" %s\n", temp, c_time); | |
1043 } | |
121
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
1044 } |
31 | 1045 |
121
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
1046 // create required header fields that are not already written |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
1047 if (!has_from) { |
43 | 1048 temp = item->email->outlook_sender; |
1049 if (!temp) temp = ""; | |
1050 fprintf(f_output, "From: \"%s\" <%s>\n", item->email->outlook_sender_name, temp); | |
121
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
1051 } |
31 | 1052 |
121
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
1053 if (!has_subject) { |
100
1e4a7610d525
fixes from Justin Greer to add -D option to include deleted items, to add missing email headers, to fix bug in my_stristr()
Carl Byington <carl@five-ten-sg.com>
parents:
79
diff
changeset
|
1054 if (item->email->subject && item->email->subject->subj) { |
43 | 1055 fprintf(f_output, "Subject: %s\n", item->email->subject->subj); |
1056 } else { | |
1057 fprintf(f_output, "Subject: \n"); | |
1058 } | |
121
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
1059 } |
31 | 1060 |
121
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
1061 if (!has_to && item->email->sentto_address) { |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
1062 fprintf(f_output, "To: %s\n", item->email->sentto_address); |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
1063 } |
100
1e4a7610d525
fixes from Justin Greer to add -D option to include deleted items, to add missing email headers, to fix bug in my_stristr()
Carl Byington <carl@five-ten-sg.com>
parents:
79
diff
changeset
|
1064 |
121
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
1065 if (!has_cc && item->email->cc_address) { |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
1066 fprintf(f_output, "Cc: %s\n", item->email->cc_address); |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
1067 } |
31 | 1068 |
121
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
1069 if (!has_bcc && item->email->bcc_address) { |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
1070 fprintf(f_output, "Bcc: %s\n", item->email->bcc_address); |
43 | 1071 } |
25 | 1072 |
121
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
1073 if (!has_date && item->email->sent_date) { |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
1074 char c_time[C_TIME_SIZE]; |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
1075 strftime(c_time, C_TIME_SIZE, "%a, %d %b %Y %H:%M:%S %z", gmtime(&em_time)); |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
1076 fprintf(f_output, "Date: %s\n", c_time); |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
1077 } |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
1078 |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
1079 // add our own mime headers |
43 | 1080 fprintf(f_output, "MIME-Version: 1.0\n"); |
121
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
1081 if (item->attach || (item->email->rtf_compressed && save_rtf) |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
1082 || item->email->encrypted_body |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
1083 || item->email->encrypted_htmlbody) { |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
1084 // use multipart/mixed if we have attachments |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
1085 fprintf(f_output, "Content-Type: multipart/mixed;\n\tboundary=\"%s\"\n", boundary); |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
1086 } else { |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
1087 // else use multipart/alternative |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
1088 fprintf(f_output, "Content-Type: multipart/alternative;\n\tboundary=\"%s\"\n", boundary); |
43 | 1089 } |
121
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
1090 fprintf(f_output, "\n"); // end of headers, start of body |
25 | 1091 |
121
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
1092 // now dump the body parts |
43 | 1093 if (item->email->body) { |
121
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
1094 write_body_part(f_output, item->email->body, "text/plain", body_charset, boundary); |
43 | 1095 } |
31 | 1096 |
43 | 1097 if (item->email->htmlbody) { |
121
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
1098 find_html_charset(item->email->htmlbody, body_charset, sizeof(body_charset)); |
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
1099 write_body_part(f_output, item->email->htmlbody, "text/html", body_charset, boundary); |
43 | 1100 } |
25 | 1101 |
43 | 1102 if (item->email->rtf_compressed && save_rtf) { |
1103 DEBUG_EMAIL(("Adding RTF body as attachment\n")); | |
1104 current_attach = (pst_item_attach*)xmalloc(sizeof(pst_item_attach)); | |
1105 memset(current_attach, 0, sizeof(pst_item_attach)); | |
1106 current_attach->next = item->attach; | |
1107 item->attach = current_attach; | |
1108 current_attach->data = lzfu_decompress(item->email->rtf_compressed, item->email->rtf_compressed_size, ¤t_attach->size); | |
1109 current_attach->filename2 = xmalloc(strlen(RTF_ATTACH_NAME)+2); | |
1110 strcpy(current_attach->filename2, RTF_ATTACH_NAME); | |
1111 current_attach->mimetype = xmalloc(strlen(RTF_ATTACH_TYPE)+2); | |
1112 strcpy(current_attach->mimetype, RTF_ATTACH_TYPE); | |
1113 } | |
31 | 1114 |
43 | 1115 if (item->email->encrypted_body || item->email->encrypted_htmlbody) { |
1116 // if either the body or htmlbody is encrypted, add them as attachments | |
1117 if (item->email->encrypted_body) { | |
1118 DEBUG_EMAIL(("Adding Encrypted Body as attachment\n")); | |
1119 current_attach = (pst_item_attach*) xmalloc(sizeof(pst_item_attach)); | |
1120 memset(current_attach, 0, sizeof(pst_item_attach)); | |
1121 current_attach->next = item->attach; | |
1122 item->attach = current_attach; | |
1123 current_attach->data = item->email->encrypted_body; | |
1124 current_attach->size = item->email->encrypted_body_size; | |
1125 item->email->encrypted_body = NULL; | |
1126 } | |
31 | 1127 |
43 | 1128 if (item->email->encrypted_htmlbody) { |
1129 DEBUG_EMAIL(("Adding encrypted HTML body as attachment\n")); | |
1130 current_attach = (pst_item_attach*) xmalloc(sizeof(pst_item_attach)); | |
1131 memset(current_attach, 0, sizeof(pst_item_attach)); | |
1132 current_attach->next = item->attach; | |
1133 item->attach = current_attach; | |
1134 current_attach->data = item->email->encrypted_htmlbody; | |
1135 current_attach->size = item->email->encrypted_htmlbody_size; | |
1136 item->email->encrypted_htmlbody = NULL; | |
1137 } | |
1138 write_email_body(f_output, "The body of this email is encrypted. This isn't supported yet, but the body is now an attachment\n"); | |
1139 } | |
31 | 1140 |
121
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
1141 // other attachments |
43 | 1142 attach_num = 0; |
1143 for (current_attach = item->attach; current_attach; current_attach = current_attach->next) { | |
1144 DEBUG_EMAIL(("Attempting Attachment encoding\n")); | |
1145 if (!current_attach->data) { | |
1146 DEBUG_EMAIL(("Data of attachment is NULL!. Size is supposed to be %i\n", current_attach->size)); | |
1147 } | |
77 | 1148 if (mode == MODE_SEPARATE && !mode_MH) |
43 | 1149 write_separate_attachment(f_name, current_attach, ++attach_num, pst); |
1150 else | |
1151 write_inline_attachment(f_output, current_attach, boundary, pst); | |
1152 } | |
77 | 1153 if (mode != MODE_SEPARATE) { /* do not add a boundary after the last attachment for mode_MH */ |
43 | 1154 DEBUG_EMAIL(("Writing buffer between emails\n")); |
121
8399ef94c11b
strip and regenerate all MIME headers to avoid duplicates.
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
1155 fprintf(f_output, "\n--%s--\n", boundary); |
43 | 1156 fprintf(f_output, "\n\n"); |
1157 } | |
1158 DEBUG_RET(); | |
25 | 1159 } |
1160 | |
31 | 1161 |
25 | 1162 void write_vcard(FILE* f_output, pst_item_contact* contact, char comment[]) |
1163 { | |
43 | 1164 // We can only call rfc escape once per printf, since the second call |
1165 // may free the buffer returned by the first call. | |
1166 // I had tried to place those into a single printf - Carl. | |
39 | 1167 |
43 | 1168 DEBUG_ENT("write_vcard"); |
50 | 1169 // the specification I am following is (hopefully) RFC2426 vCard Mime Directory Profile |
43 | 1170 fprintf(f_output, "BEGIN:VCARD\n"); |
1171 fprintf(f_output, "FN:%s\n", pst_rfc2426_escape(contact->fullname)); | |
39 | 1172 |
43 | 1173 //fprintf(f_output, "N:%s;%s;%s;%s;%s\n", |
1174 fprintf(f_output, "N:%s;", (!contact->surname) ? "" : pst_rfc2426_escape(contact->surname)); | |
1175 fprintf(f_output, "%s;", (!contact->first_name) ? "" : pst_rfc2426_escape(contact->first_name)); | |
1176 fprintf(f_output, "%s;", (!contact->middle_name) ? "" : pst_rfc2426_escape(contact->middle_name)); | |
1177 fprintf(f_output, "%s;", (!contact->display_name_prefix) ? "" : pst_rfc2426_escape(contact->display_name_prefix)); | |
1178 fprintf(f_output, "%s\n", (!contact->suffix) ? "" : pst_rfc2426_escape(contact->suffix)); | |
39 | 1179 |
43 | 1180 if (contact->nickname) |
1181 fprintf(f_output, "NICKNAME:%s\n", pst_rfc2426_escape(contact->nickname)); | |
1182 if (contact->address1) | |
1183 fprintf(f_output, "EMAIL:%s\n", pst_rfc2426_escape(contact->address1)); | |
1184 if (contact->address2) | |
1185 fprintf(f_output, "EMAIL:%s\n", pst_rfc2426_escape(contact->address2)); | |
1186 if (contact->address3) | |
1187 fprintf(f_output, "EMAIL:%s\n", pst_rfc2426_escape(contact->address3)); | |
1188 if (contact->birthday) | |
1189 fprintf(f_output, "BDAY:%s\n", pst_rfc2425_datetime_format(contact->birthday)); | |
39 | 1190 |
43 | 1191 if (contact->home_address) { |
1192 //fprintf(f_output, "ADR;TYPE=home:%s;%s;%s;%s;%s;%s;%s\n", | |
1193 fprintf(f_output, "ADR;TYPE=home:%s;", (!contact->home_po_box) ? "" : pst_rfc2426_escape(contact->home_po_box)); | |
1194 fprintf(f_output, "%s;", ""); // extended Address | |
1195 fprintf(f_output, "%s;", (!contact->home_street) ? "" : pst_rfc2426_escape(contact->home_street)); | |
1196 fprintf(f_output, "%s;", (!contact->home_city) ? "" : pst_rfc2426_escape(contact->home_city)); | |
1197 fprintf(f_output, "%s;", (!contact->home_state) ? "" : pst_rfc2426_escape(contact->home_state)); | |
1198 fprintf(f_output, "%s;", (!contact->home_postal_code) ? "" : pst_rfc2426_escape(contact->home_postal_code)); | |
1199 fprintf(f_output, "%s\n", (!contact->home_country) ? "" : pst_rfc2426_escape(contact->home_country)); | |
1200 fprintf(f_output, "LABEL;TYPE=home:%s\n", pst_rfc2426_escape(contact->home_address)); | |
1201 } | |
39 | 1202 |
43 | 1203 if (contact->business_address) { |
1204 //fprintf(f_output, "ADR;TYPE=work:%s;%s;%s;%s;%s;%s;%s\n", | |
1205 fprintf(f_output, "ADR;TYPE=work:%s;", (!contact->business_po_box) ? "" : pst_rfc2426_escape(contact->business_po_box)); | |
1206 fprintf(f_output, "%s;", ""); // extended Address | |
1207 fprintf(f_output, "%s;", (!contact->business_street) ? "" : pst_rfc2426_escape(contact->business_street)); | |
1208 fprintf(f_output, "%s;", (!contact->business_city) ? "" : pst_rfc2426_escape(contact->business_city)); | |
1209 fprintf(f_output, "%s;", (!contact->business_state) ? "" : pst_rfc2426_escape(contact->business_state)); | |
1210 fprintf(f_output, "%s;", (!contact->business_postal_code) ? "" : pst_rfc2426_escape(contact->business_postal_code)); | |
1211 fprintf(f_output, "%s\n", (!contact->business_country) ? "" : pst_rfc2426_escape(contact->business_country)); | |
1212 fprintf(f_output, "LABEL;TYPE=work:%s\n", pst_rfc2426_escape(contact->business_address)); | |
1213 } | |
39 | 1214 |
43 | 1215 if (contact->other_address) { |
1216 //fprintf(f_output, "ADR;TYPE=postal:%s;%s;%s;%s;%s;%s;%s\n", | |
1217 fprintf(f_output, "ADR;TYPE=postal:%s;",(!contact->other_po_box) ? "" : pst_rfc2426_escape(contact->other_po_box)); | |
1218 fprintf(f_output, "%s;", ""); // extended Address | |
1219 fprintf(f_output, "%s;", (!contact->other_street) ? "" : pst_rfc2426_escape(contact->other_street)); | |
1220 fprintf(f_output, "%s;", (!contact->other_city) ? "" : pst_rfc2426_escape(contact->other_city)); | |
1221 fprintf(f_output, "%s;", (!contact->other_state) ? "" : pst_rfc2426_escape(contact->other_state)); | |
1222 fprintf(f_output, "%s;", (!contact->other_postal_code) ? "" : pst_rfc2426_escape(contact->other_postal_code)); | |
1223 fprintf(f_output, "%s\n", (!contact->other_country) ? "" : pst_rfc2426_escape(contact->other_country)); | |
1224 fprintf(f_output, "LABEL;TYPE=postal:%s\n", pst_rfc2426_escape(contact->other_address)); | |
1225 } | |
39 | 1226 |
43 | 1227 if (contact->business_fax) fprintf(f_output, "TEL;TYPE=work,fax:%s\n", pst_rfc2426_escape(contact->business_fax)); |
1228 if (contact->business_phone) fprintf(f_output, "TEL;TYPE=work,voice:%s\n", pst_rfc2426_escape(contact->business_phone)); | |
1229 if (contact->business_phone2) fprintf(f_output, "TEL;TYPE=work,voice:%s\n", pst_rfc2426_escape(contact->business_phone2)); | |
1230 if (contact->car_phone) fprintf(f_output, "TEL;TYPE=car,voice:%s\n", pst_rfc2426_escape(contact->car_phone)); | |
1231 if (contact->home_fax) fprintf(f_output, "TEL;TYPE=home,fax:%s\n", pst_rfc2426_escape(contact->home_fax)); | |
1232 if (contact->home_phone) fprintf(f_output, "TEL;TYPE=home,voice:%s\n", pst_rfc2426_escape(contact->home_phone)); | |
1233 if (contact->home_phone2) fprintf(f_output, "TEL;TYPE=home,voice:%s\n", pst_rfc2426_escape(contact->home_phone2)); | |
1234 if (contact->isdn_phone) fprintf(f_output, "TEL;TYPE=isdn:%s\n", pst_rfc2426_escape(contact->isdn_phone)); | |
1235 if (contact->mobile_phone) fprintf(f_output, "TEL;TYPE=cell,voice:%s\n", pst_rfc2426_escape(contact->mobile_phone)); | |
1236 if (contact->other_phone) fprintf(f_output, "TEL;TYPE=msg:%s\n", pst_rfc2426_escape(contact->other_phone)); | |
1237 if (contact->pager_phone) fprintf(f_output, "TEL;TYPE=pager:%s\n", pst_rfc2426_escape(contact->pager_phone)); | |
1238 if (contact->primary_fax) fprintf(f_output, "TEL;TYPE=fax,pref:%s\n", pst_rfc2426_escape(contact->primary_fax)); | |
1239 if (contact->primary_phone) fprintf(f_output, "TEL;TYPE=phone,pref:%s\n", pst_rfc2426_escape(contact->primary_phone)); | |
1240 if (contact->radio_phone) fprintf(f_output, "TEL;TYPE=pcs:%s\n", pst_rfc2426_escape(contact->radio_phone)); | |
1241 if (contact->telex) fprintf(f_output, "TEL;TYPE=bbs:%s\n", pst_rfc2426_escape(contact->telex)); | |
1242 if (contact->job_title) fprintf(f_output, "TITLE:%s\n", pst_rfc2426_escape(contact->job_title)); | |
1243 if (contact->profession) fprintf(f_output, "ROLE:%s\n", pst_rfc2426_escape(contact->profession)); | |
1244 if (contact->assistant_name || contact->assistant_phone) { | |
1245 fprintf(f_output, "AGENT:BEGIN:VCARD\n"); | |
1246 if (contact->assistant_name) fprintf(f_output, "FN:%s\n", pst_rfc2426_escape(contact->assistant_name)); | |
1247 if (contact->assistant_phone) fprintf(f_output, "TEL:%s\n", pst_rfc2426_escape(contact->assistant_phone)); | |
1248 } | |
1249 if (contact->company_name) fprintf(f_output, "ORG:%s\n", pst_rfc2426_escape(contact->company_name)); | |
1250 if (comment) fprintf(f_output, "NOTE:%s\n", pst_rfc2426_escape(comment)); | |
25 | 1251 |
43 | 1252 fprintf(f_output, "VERSION: 3.0\n"); |
1253 fprintf(f_output, "END:VCARD\n\n"); | |
1254 DEBUG_RET(); | |
25 | 1255 } |
1256 | |
31 | 1257 |
25 | 1258 void write_appointment(FILE* f_output, pst_item_appointment* appointment, |
43 | 1259 pst_item_email* email, FILETIME* create_date, FILETIME* modify_date) |
25 | 1260 { |
43 | 1261 fprintf(f_output, "BEGIN:VEVENT\n"); |
1262 if (create_date) | |
1263 fprintf(f_output, "CREATED:%s\n", | |
1264 pst_rfc2445_datetime_format(create_date)); | |
1265 if (modify_date) | |
1266 fprintf(f_output, "LAST-MOD:%s\n", | |
1267 pst_rfc2445_datetime_format(modify_date)); | |
1268 if (email && email->subject) | |
1269 fprintf(f_output, "SUMMARY:%s\n", | |
1270 pst_rfc2426_escape(email->subject->subj)); | |
1271 if (email && email->body) | |
1272 fprintf(f_output, "DESCRIPTION:%s\n", | |
1273 pst_rfc2426_escape(email->body)); | |
1274 if (appointment && appointment->start) | |
1275 fprintf(f_output, "DTSTART;VALUE=DATE-TIME:%s\n", | |
1276 pst_rfc2445_datetime_format(appointment->start)); | |
1277 if (appointment && appointment->end) | |
1278 fprintf(f_output, "DTEND;VALUE=DATE-TIME:%s\n", | |
1279 pst_rfc2445_datetime_format(appointment->end)); | |
1280 if (appointment && appointment->location) | |
1281 fprintf(f_output, "LOCATION:%s\n", | |
1282 pst_rfc2426_escape(appointment->location)); | |
1283 if (appointment) { | |
1284 switch (appointment->showas) { | |
50 | 1285 case PST_FREEBUSY_TENTATIVE: |
1286 fprintf(f_output, "STATUS:TENTATIVE\n"); | |
1287 break; | |
1288 case PST_FREEBUSY_FREE: | |
1289 // mark as transparent and as confirmed | |
1290 fprintf(f_output, "TRANSP:TRANSPARENT\n"); | |
1291 case PST_FREEBUSY_BUSY: | |
1292 case PST_FREEBUSY_OUT_OF_OFFICE: | |
1293 fprintf(f_output, "STATUS:CONFIRMED\n"); | |
1294 break; | |
43 | 1295 } |
1296 switch (appointment->label) { | |
50 | 1297 case PST_APP_LABEL_NONE: |
1298 fprintf(f_output, "CATEGORIES:NONE\n"); | |
1299 break; | |
1300 case PST_APP_LABEL_IMPORTANT: | |
1301 fprintf(f_output, "CATEGORIES:IMPORTANT\n"); | |
1302 break; | |
1303 case PST_APP_LABEL_BUSINESS: | |
1304 fprintf(f_output, "CATEGORIES:BUSINESS\n"); | |
1305 break; | |
1306 case PST_APP_LABEL_PERSONAL: | |
1307 fprintf(f_output, "CATEGORIES:PERSONAL\n"); | |
1308 break; | |
1309 case PST_APP_LABEL_VACATION: | |
1310 fprintf(f_output, "CATEGORIES:VACATION\n"); | |
1311 break; | |
1312 case PST_APP_LABEL_MUST_ATTEND: | |
1313 fprintf(f_output, "CATEGORIES:MUST-ATTEND\n"); | |
1314 break; | |
1315 case PST_APP_LABEL_TRAVEL_REQ: | |
1316 fprintf(f_output, "CATEGORIES:TRAVEL-REQUIRED\n"); | |
1317 break; | |
1318 case PST_APP_LABEL_NEEDS_PREP: | |
1319 fprintf(f_output, "CATEGORIES:NEEDS-PREPARATION\n"); | |
1320 break; | |
1321 case PST_APP_LABEL_BIRTHDAY: | |
1322 fprintf(f_output, "CATEGORIES:BIRTHDAY\n"); | |
1323 break; | |
1324 case PST_APP_LABEL_ANNIVERSARY: | |
1325 fprintf(f_output, "CATEGORIES:ANNIVERSARY\n"); | |
1326 break; | |
1327 case PST_APP_LABEL_PHONE_CALL: | |
1328 fprintf(f_output, "CATEGORIES:PHONE-CALL\n"); | |
1329 break; | |
43 | 1330 } |
1331 } | |
1332 fprintf(f_output, "END:VEVENT\n\n"); | |
25 | 1333 } |
1334 | |
31 | 1335 |
39 | 1336 void create_enter_dir(struct file_ll* f, pst_item *item) |
25 | 1337 { |
43 | 1338 f->email_count = 0; |
1339 f->skip_count = 0; | |
1340 f->type = item->type; | |
1341 f->stored_count = (item->folder) ? item->folder->email_count : 0; | |
39 | 1342 |
43 | 1343 DEBUG_ENT("create_enter_dir"); |
1344 if (mode == MODE_KMAIL) | |
1345 f->name = mk_kmail_dir(item->file_as); //create directory and form filename | |
1346 else if (mode == MODE_RECURSE) | |
1347 f->name = mk_recurse_dir(item->file_as); | |
77 | 1348 else if (mode == MODE_SEPARATE) { |
43 | 1349 // do similar stuff to recurse here. |
77 | 1350 mk_separate_dir(item->file_as); |
43 | 1351 f->name = (char*) xmalloc(10); |
1352 memset(f->name, 0, 10); | |
1353 // sprintf(f->name, SEP_MAIL_FILE_TEMPLATE, f->email_count); | |
1354 } else { | |
1355 f->name = (char*) xmalloc(strlen(item->file_as)+strlen(OUTPUT_TEMPLATE)+1); | |
1356 sprintf(f->name, OUTPUT_TEMPLATE, item->file_as); | |
1357 } | |
25 | 1358 |
43 | 1359 f->dname = (char*) xmalloc(strlen(item->file_as)+1); |
1360 strcpy(f->dname, item->file_as); | |
25 | 1361 |
43 | 1362 if (overwrite != 1) { |
1363 int x = 0; | |
1364 char *temp = (char*) xmalloc (strlen(f->name)+10); //enough room for 10 digits | |
25 | 1365 |
43 | 1366 sprintf(temp, "%s", f->name); |
1367 check_filename(temp); | |
1368 while ((f->output = fopen(temp, "r"))) { | |
1369 DEBUG_MAIN(("need to increase filename because one already exists with that name\n")); | |
1370 DEBUG_MAIN(("- increasing it to %s%d\n", f->name, x)); | |
1371 x++; | |
1372 sprintf(temp, "%s%08d", f->name, x); | |
1373 DEBUG_MAIN(("- trying \"%s\"\n", f->name)); | |
1374 if (x == 99999999) { | |
1375 DIE(("create_enter_dir: Why can I not create a folder %s? I have tried %i extensions...\n", f->name, x)); | |
1376 } | |
1377 fclose(f->output); | |
1378 } | |
1379 if (x > 0) { //then the f->name should change | |
1380 free (f->name); | |
1381 f->name = temp; | |
1382 } else { | |
1383 free(temp); | |
1384 } | |
1385 } | |
25 | 1386 |
43 | 1387 DEBUG_MAIN(("f->name = %s\nitem->folder_name = %s\n", f->name, item->file_as)); |
77 | 1388 if (mode != MODE_SEPARATE) { |
43 | 1389 check_filename(f->name); |
1390 if (!(f->output = fopen(f->name, "w"))) { | |
1391 DIE(("create_enter_dir: Could not open file \"%s\" for write\n", f->name)); | |
1392 } | |
1393 } | |
1394 DEBUG_RET(); | |
25 | 1395 } |
1396 | |
39 | 1397 |
1398 void close_enter_dir(struct file_ll *f) | |
1399 { | |
43 | 1400 DEBUG_MAIN(("main: Email Count for folder %s is %i\n", f->dname, f->email_count)); |
1401 if (output_mode != OUTPUT_QUIET) | |
1402 printf("\t\"%s\" - %i items done, skipped %i, should have been %i\n", | |
1403 f->dname, f->email_count, f->skip_count, f->stored_count); | |
1404 if (f->output) fclose(f->output); | |
1405 free(f->name); | |
1406 free(f->dname); | |
39 | 1407 |
43 | 1408 if (mode == MODE_KMAIL) |
1409 close_kmail_dir(); | |
1410 else if (mode == MODE_RECURSE) | |
1411 close_recurse_dir(); | |
77 | 1412 else if (mode == MODE_SEPARATE) |
1413 close_separate_dir(); | |
39 | 1414 } |
1415 |