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