Mercurial > libpst
annotate src/readpst.c @ 45:b961bcdadd0e
more fixes for 64 bit format
author | carl |
---|---|
date | Tue, 08 Jan 2008 16:33:23 -0800 |
parents | f6db1f060a95 |
children | b2a7f2e0926a |
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 #ifdef DEBUG_ALL | |
320 // force a log file | |
321 if (!d_log) d_log = "readpst.log"; | |
322 #endif // defined DEBUG_ALL | |
323 DEBUG_INIT(d_log); | |
324 DEBUG_REGISTER_CLOSE(); | |
325 DEBUG_ENT("main"); | |
16 | 326 |
43 | 327 if (mode == MODE_DECSPEW) { |
328 FILE *fp; | |
329 char buf[1024]; | |
330 int l=0; | |
331 if (NULL == (fp = fopen(fname, "rb"))) { | |
332 fprintf(stderr, "Couldn't open file %s\n", fname ); | |
333 return 1; | |
334 } | |
39 | 335 |
43 | 336 while (0 != ( l = fread( buf, 1, 1024, fp))) { |
337 if (0 != _pst_decrypt( buf, l, PST_COMP_ENCRYPT)) | |
338 fprintf(stderr, "_pst_decrypt() failed (I'll try to continue)\n"); | |
16 | 339 |
43 | 340 if (l != fwrite( buf, 1, l, stdout)) { |
341 fprintf(stderr, "Couldn't output to stdout?\n"); | |
342 return 1; | |
343 } | |
344 } | |
345 return 0; | |
346 } | |
16 | 347 |
43 | 348 if (output_mode != OUTPUT_QUIET) printf("Opening PST file and indexes...\n"); |
349 | |
350 RET_DERROR(pst_open(&pstfile, fname, "r"), 1, ("Error opening File\n")); | |
351 RET_DERROR(pst_load_index(&pstfile), 2, ("Index Error\n")); | |
352 | |
353 pst_load_extended_attributes(&pstfile); | |
16 | 354 |
43 | 355 if (chdir(output_dir)) { |
356 x = errno; | |
357 pst_close(&pstfile); | |
358 DEBUG_RET(); | |
359 DIE(("main: Cannot change to output dir %s: %s\n", output_dir, strerror(x))); | |
360 } | |
361 | |
362 if (output_mode != OUTPUT_QUIET) printf("About to start processing first record...\n"); | |
363 | |
364 d_ptr = pstfile.d_head; // first record is main record | |
365 item = _pst_parse_item(&pstfile, d_ptr); | |
366 if (!item || !item->message_store) { | |
367 DEBUG_RET(); | |
368 DIE(("main: Could not get root record\n")); | |
369 } | |
16 | 370 |
43 | 371 // default the file_as to the same as the main filename if it doesn't exist |
372 if (!item->file_as) { | |
373 if (!(temp = strrchr(fname, '/'))) | |
374 if (!(temp = strrchr(fname, '\\'))) | |
375 temp = fname; | |
376 else | |
377 temp++; // get past the "\\" | |
378 else | |
379 temp++; // get past the "/" | |
380 item->file_as = (char*)xmalloc(strlen(temp)+1); | |
381 strcpy(item->file_as, temp); | |
382 DEBUG_MAIN(("file_as was blank, so am using %s\n", item->file_as)); | |
383 } | |
384 DEBUG_MAIN(("main: Root Folder Name: %s\n", item->file_as)); | |
16 | 385 |
43 | 386 d_ptr = pst_getTopOfFolders(&pstfile, item); |
387 if (!d_ptr) { | |
388 DEBUG_RET(); | |
389 DIE(("Top of folders record not found. Cannot continue\n")); | |
390 } | |
16 | 391 |
43 | 392 process(item, d_ptr->child); // do the children of TOPF |
393 _pst_freeItem(item); | |
394 pst_close(&pstfile); | |
16 | 395 |
43 | 396 DEBUG_RET(); |
397 return 0; | |
16 | 398 } |
31 | 399 |
400 | |
16 | 401 void write_email_body(FILE *f, char *body) { |
43 | 402 char *n = body; |
403 // DEBUG_MAIN(("write_email_body(): \"%s\"\n", body)); | |
404 DEBUG_ENT("write_email_body"); | |
405 while (n) { | |
406 if (strncmp(body, "From ", 5) == 0) | |
407 fprintf(f, ">"); | |
408 if ((n = strchr(body, '\n'))) { | |
409 n++; | |
410 fwrite(body, n-body, 1, f); //write just a line | |
16 | 411 |
43 | 412 body = n; |
413 } | |
414 } | |
415 fwrite(body, strlen(body), 1, f); | |
416 DEBUG_RET(); | |
16 | 417 } |
31 | 418 |
419 | |
16 | 420 char *removeCR (char *c) { |
43 | 421 // converts /r/n to /n |
422 char *a, *b; | |
423 DEBUG_ENT("removeCR"); | |
424 a = b = c; | |
425 while (*a != '\0') { | |
426 *b = *a; | |
427 if (*a != '\r') | |
428 b++; | |
429 a++; | |
430 } | |
431 *b = '\0'; | |
432 DEBUG_RET(); | |
433 return c; | |
16 | 434 } |
31 | 435 |
436 | |
16 | 437 int usage() { |
43 | 438 DEBUG_ENT("usage"); |
439 version(); | |
440 printf("Usage: %s [OPTIONS] {PST FILENAME}\n", prog_name); | |
441 printf("OPTIONS:\n"); | |
442 printf("\t-b\t- Don't save RTF-Body attachments\n"); | |
443 printf("\t-c[v|l]\t- Set the Contact output mode. -cv = VCard, -cl = EMail list\n"); | |
444 printf("\t-d <filename> \t- Debug to file. This is a binary log. Use readlog to print it\n"); | |
445 printf("\t-h\t- Help. This screen\n"); | |
446 printf("\t-k\t- KMail. Output in kmail format\n"); | |
447 printf("\t-M\t- MH. Write emails in the MH format\n"); | |
448 printf("\t-o <dirname>\t- Output Dir. Directory to write files to. CWD is changed *after* opening pst file\n"); | |
449 printf("\t-q\t- Quiet. Only print error messages\n"); | |
450 printf("\t-r\t- Recursive. Output in a recursive format\n"); | |
451 printf("\t-S\t- Seperate. Write emails in the seperate format\n"); | |
452 printf("\t-V\t- Version. Display program version\n"); | |
453 printf("\t-w\t- Overwrite any output mbox files\n"); | |
454 printf("\t-C\t- Decrypt the entire file and output on stdout (not typically useful)\n"); | |
455 DEBUG_RET(); | |
456 return 0; | |
16 | 457 } |
31 | 458 |
459 | |
16 | 460 int version() { |
43 | 461 DEBUG_ENT("version"); |
462 printf("ReadPST v%s\n", VERSION); | |
16 | 463 #if BYTE_ORDER == BIG_ENDIAN |
43 | 464 printf("Big Endian implementation being used.\n"); |
16 | 465 #elif BYTE_ORDER == LITTLE_ENDIAN |
43 | 466 printf("Little Endian implementation being used.\n"); |
16 | 467 #else |
468 # error "Byte order not supported by this library" | |
469 #endif | |
470 #ifdef __GNUC__ | |
43 | 471 printf("GCC %d.%d : %s %s\n", __GNUC__, __GNUC_MINOR__, __DATE__, __TIME__); |
16 | 472 #endif |
43 | 473 DEBUG_RET(); |
474 return 0; | |
16 | 475 } |
31 | 476 |
477 | |
16 | 478 char *mk_kmail_dir(char *fname) { |
43 | 479 //change to that directory |
480 //make a directory based on OUTPUT_KMAIL_DIR_TEMPLATE | |
481 //allocate space for OUTPUT_TEMPLATE and form a char* with fname | |
482 //return that value | |
483 char *dir, *out_name, *index; | |
484 int x; | |
485 DEBUG_ENT("mk_kmail_dir"); | |
486 if (kmail_chdir && chdir(kmail_chdir)) { | |
487 x = errno; | |
488 DIE(("mk_kmail_dir: Cannot change to directory %s: %s\n", kmail_chdir, strerror(x))); | |
489 } | |
490 dir = malloc(strlen(fname)+strlen(OUTPUT_KMAIL_DIR_TEMPLATE)+1); | |
491 sprintf(dir, OUTPUT_KMAIL_DIR_TEMPLATE, fname); | |
492 check_filename(dir); | |
493 if (D_MKDIR(dir)) { | |
494 //error occured | |
495 if (errno != EEXIST) { | |
496 x = errno; | |
497 DIE(("mk_kmail_dir: Cannot create directory %s: %s\n", dir, strerror(x))); | |
498 } | |
499 } | |
500 kmail_chdir = realloc(kmail_chdir, strlen(dir)+1); | |
501 strcpy(kmail_chdir, dir); | |
502 free (dir); | |
16 | 503 |
43 | 504 //we should remove any existing indexes created by KMail, cause they might be different now |
505 index = malloc(strlen(fname)+strlen(KMAIL_INDEX)+1); | |
506 sprintf(index, KMAIL_INDEX, fname); | |
507 unlink(index); | |
508 free(index); | |
16 | 509 |
43 | 510 out_name = malloc(strlen(fname)+strlen(OUTPUT_TEMPLATE)+1); |
511 sprintf(out_name, OUTPUT_TEMPLATE, fname); | |
512 DEBUG_RET(); | |
513 return out_name; | |
16 | 514 } |
31 | 515 |
516 | |
16 | 517 int close_kmail_dir() { |
43 | 518 // change .. |
519 int x; | |
520 DEBUG_ENT("close_kmail_dir"); | |
521 if (kmail_chdir) { //only free kmail_chdir if not NULL. do not change directory | |
522 free(kmail_chdir); | |
523 kmail_chdir = NULL; | |
524 } else { | |
525 if (chdir("..")) { | |
526 x = errno; | |
527 DIE(("close_kmail_dir: Cannot move up dir (..): %s\n", strerror(x))); | |
528 } | |
529 } | |
530 DEBUG_RET(); | |
531 return 0; | |
16 | 532 } |
31 | 533 |
534 | |
16 | 535 // this will create a directory by that name, then make an mbox file inside |
536 // that dir. any subsequent dirs will be created by name, and they will | |
537 // contain mbox files | |
538 char *mk_recurse_dir(char *dir) { | |
43 | 539 int x; |
540 char *out_name; | |
541 DEBUG_ENT("mk_recurse_dir"); | |
542 check_filename(dir); | |
543 if (D_MKDIR (dir)) { | |
544 if (errno != EEXIST) { // not an error because it exists | |
545 x = errno; | |
546 DIE(("mk_recurse_dir: Cannot create directory %s: %s\n", dir, strerror(x))); | |
547 } | |
548 } | |
549 if (chdir (dir)) { | |
550 x = errno; | |
551 DIE(("mk_recurse_dir: Cannot change to directory %s: %s\n", dir, strerror(x))); | |
552 } | |
553 out_name = malloc(strlen("mbox")+1); | |
554 strcpy(out_name, "mbox"); | |
555 DEBUG_RET(); | |
556 return out_name; | |
16 | 557 } |
31 | 558 |
559 | |
16 | 560 int close_recurse_dir() { |
43 | 561 int x; |
562 DEBUG_ENT("close_recurse_dir"); | |
563 if (chdir("..")) { | |
564 x = errno; | |
565 DIE(("close_recurse_dir: Cannot go up dir (..): %s\n", strerror(x))); | |
566 } | |
567 DEBUG_RET(); | |
568 return 0; | |
16 | 569 } |
31 | 570 |
571 | |
39 | 572 char *mk_seperate_dir(char *dir) { |
43 | 573 DEBUG_ENT("mk_seperate_dir"); |
16 | 574 |
43 | 575 size_t dirsize = strlen(dir) + 10; |
576 char dir_name[dirsize]; | |
577 int x = 0, y = 0; | |
16 | 578 |
43 | 579 do { |
580 if (y == 0) | |
581 snprintf(dir_name, dirsize, "%s", dir); | |
582 else | |
583 snprintf(dir_name, dirsize, "%s" SEP_MAIL_FILE_TEMPLATE, dir, y); // enough for 9 digits allocated above | |
16 | 584 |
43 | 585 check_filename(dir_name); |
586 DEBUG_MAIN(("about to try creating %s\n", dir_name)); | |
587 if (D_MKDIR(dir_name)) { | |
588 if (errno != EEXIST) { // if there is an error, and it doesn't already exist | |
589 x = errno; | |
590 DIE(("mk_seperate_dir: Cannot create directory %s: %s\n", dir, strerror(x))); | |
591 } | |
592 } else { | |
593 break; | |
594 } | |
595 y++; | |
596 } while (overwrite == 0); | |
16 | 597 |
43 | 598 if (chdir(dir_name)) { |
599 x = errno; | |
600 DIE(("mk_recurse_dir: Cannot change to directory %s: %s\n", dir, strerror(x))); | |
601 } | |
16 | 602 |
43 | 603 if (overwrite) { |
604 // we should probably delete all files from this directory | |
16 | 605 #if !defined(WIN32) && !defined(__CYGWIN__) |
43 | 606 DIR * sdir = NULL; |
607 struct dirent *dirent = NULL; | |
608 struct stat filestat; | |
609 if (!(sdir = opendir("./"))) { | |
610 WARN(("mk_seperate_dir: Cannot open dir \"%s\" for deletion of old contents\n", "./")); | |
611 } else { | |
612 while ((dirent = readdir(sdir))) { | |
613 if (lstat(dirent->d_name, &filestat) != -1) | |
614 if (S_ISREG(filestat.st_mode)) { | |
615 if (unlink(dirent->d_name)) { | |
616 y = errno; | |
617 DIE(("mk_seperate_dir: unlink returned error on file %s: %s\n", dirent->d_name, strerror(y))); | |
618 } | |
619 } | |
620 } | |
621 } | |
26 | 622 #endif |
43 | 623 } |
16 | 624 |
43 | 625 // we don't return a filename here cause it isn't necessary. |
626 DEBUG_RET(); | |
627 return NULL; | |
16 | 628 } |
31 | 629 |
630 | |
16 | 631 int close_seperate_dir() { |
43 | 632 int x; |
633 DEBUG_ENT("close_seperate_dir"); | |
634 if (chdir("..")) { | |
635 x = errno; | |
636 DIE(("close_seperate_dir: Cannot go up dir (..): %s\n", strerror(x))); | |
637 } | |
638 DEBUG_RET(); | |
639 return 0; | |
16 | 640 } |
31 | 641 |
642 | |
16 | 643 int mk_seperate_file(struct file_ll *f) { |
43 | 644 const int name_offset = 1; |
645 DEBUG_ENT("mk_seperate_file"); | |
646 DEBUG_MAIN(("opening next file to save email\n")); | |
647 if (f->email_count > 999999999) { // bigger than nine 9's | |
648 DIE(("mk_seperate_file: The number of emails in this folder has become too high to handle")); | |
649 } | |
650 sprintf(f->name, SEP_MAIL_FILE_TEMPLATE, f->email_count + name_offset); | |
651 if (f->output) fclose(f->output); | |
652 f->output = NULL; | |
653 check_filename(f->name); | |
654 if (!(f->output = fopen(f->name, "w"))) { | |
655 DIE(("mk_seperate_file: Cannot open file to save email \"%s\"\n", f->name)); | |
656 } | |
657 DEBUG_RET(); | |
658 return 0; | |
16 | 659 } |
31 | 660 |
661 | |
16 | 662 char *my_stristr(char *haystack, char *needle) { |
43 | 663 // my_stristr varies from strstr in that its searches are case-insensitive |
664 char *x=haystack, *y=needle, *z = NULL; | |
665 DEBUG_ENT("my_stristr"); | |
666 if (!haystack || !needle) | |
667 return NULL; | |
668 while (*y != '\0' && *x != '\0') { | |
669 if (tolower(*y) == tolower(*x)) { | |
670 // move y on one | |
671 y++; | |
672 if (!z) { | |
673 z = x; // store first position in haystack where a match is made | |
674 } | |
675 } else { | |
676 y = needle; // reset y to the beginning of the needle | |
677 z = NULL; // reset the haystack storage point | |
678 } | |
679 x++; // advance the search in the haystack | |
680 } | |
681 DEBUG_RET(); | |
682 return z; | |
16 | 683 } |
31 | 684 |
685 | |
41
183ae993b9ad
security fix for potential buffer overrun in lz decompress
carl
parents:
39
diff
changeset
|
686 void check_filename(char *fname) { |
43 | 687 char *t = fname; |
688 DEBUG_ENT("check_filename"); | |
689 if (!t) { | |
690 DEBUG_RET(); | |
691 } | |
692 while ((t = strpbrk(t, "/\\:"))) { | |
693 // while there are characters in the second string that we don't want | |
694 *t = '_'; //replace them with an underscore | |
695 } | |
696 DEBUG_RET(); | |
16 | 697 } |
31 | 698 |
699 | |
16 | 700 // The sole purpose of this function is to bypass the pseudo-header prologue |
701 // that Microsoft Outlook inserts at the beginning of the internet email | |
702 // headers for emails stored in their "Personal Folders" files. | |
703 char *skip_header_prologue(char *headers) { | |
43 | 704 const char *bad = "Microsoft Mail Internet Headers"; |
705 if ( strncmp(headers, bad, strlen(bad)) == 0 ) { | |
706 // Found the offensive header prologue | |
707 char *pc = strchr(headers, '\n'); | |
708 return pc + 1; | |
709 } | |
710 return headers; | |
16 | 711 } |
712 | |
31 | 713 |
25 | 714 void write_separate_attachment(char f_name[], pst_item_attach* current_attach, int attach_num, pst_file* pst) |
715 { | |
43 | 716 DEBUG_ENT("write_separate_attachment"); |
717 FILE *fp = NULL; | |
718 int x = 0; | |
719 char *temp = NULL; | |
31 | 720 |
43 | 721 // If there is a long filename (filename2) use that, otherwise |
722 // use the 8.3 filename (filename1) | |
723 char *attach_filename = (current_attach->filename2) ? current_attach->filename2 | |
724 : current_attach->filename1; | |
25 | 725 |
43 | 726 check_filename(f_name); |
727 if (!attach_filename) { | |
728 // generate our own (dummy) filename for the attachement | |
729 temp = xmalloc(strlen(f_name)+15); | |
730 sprintf(temp, "%s-attach%i", f_name, attach_num); | |
731 } else { | |
732 // have an attachment name, make sure it's unique | |
733 temp = xmalloc(strlen(f_name)+strlen(attach_filename)+15); | |
734 do { | |
735 if (fp) fclose(fp); | |
736 if (x == 0) | |
737 sprintf(temp, "%s-%s", f_name, attach_filename); | |
738 else | |
739 sprintf(temp, "%s-%s-%i", f_name, attach_filename, x); | |
740 } while ((fp = fopen(temp, "r")) && ++x < 99999999); | |
741 if (x > 99999999) { | |
742 DIE(("error finding attachment name. exhausted possibilities to %s\n", temp)); | |
743 } | |
744 } | |
745 DEBUG_EMAIL(("Saving attachment to %s\n", temp)); | |
746 if (!(fp = fopen(temp, "w"))) { | |
747 WARN(("write_separate_attachment: Cannot open attachment save file \"%s\"\n", temp)); | |
748 } else { | |
749 if (current_attach->data) | |
750 fwrite(current_attach->data, 1, current_attach->size, fp); | |
751 else { | |
752 pst_attach_to_file(pst, current_attach, fp); | |
753 } | |
754 fclose(fp); | |
755 } | |
756 if (temp) free(temp); | |
757 DEBUG_RET(); | |
25 | 758 } |
759 | |
31 | 760 |
25 | 761 void write_inline_attachment(FILE* f_output, pst_item_attach* current_attach, char boundary[], pst_file* pst) |
762 { | |
43 | 763 DEBUG_ENT("write_inline_attachment"); |
764 char *enc; // base64 encoded attachment | |
765 DEBUG_EMAIL(("Attachment Size is %i\n", current_attach->size)); | |
766 DEBUG_EMAIL(("Attachment Pointer is %p\n", current_attach->data)); | |
767 if (current_attach->data) { | |
768 enc = base64_encode (current_attach->data, current_attach->size); | |
769 if (!enc) { | |
770 DEBUG_EMAIL(("ERROR base64_encode returned NULL. Must have failed\n")); | |
771 return; | |
772 } | |
773 } | |
774 if (boundary) { | |
775 char *attach_filename; | |
776 fprintf(f_output, "\n--%s\n", boundary); | |
777 if (!current_attach->mimetype) { | |
778 fprintf(f_output, "Content-type: %s\n", MIME_TYPE_DEFAULT); | |
779 } else { | |
780 fprintf(f_output, "Content-type: %s\n", current_attach->mimetype); | |
781 } | |
782 fprintf(f_output, "Content-transfer-encoding: base64\n"); | |
783 // If there is a long filename (filename2) use that, otherwise | |
784 // use the 8.3 filename (filename1) | |
785 if (current_attach->filename2) { | |
786 attach_filename = current_attach->filename2; | |
787 } else { | |
788 attach_filename = current_attach->filename1; | |
789 } | |
790 if (!attach_filename) { | |
791 fprintf(f_output, "Content-Disposition: inline\n\n"); | |
792 } else { | |
793 fprintf(f_output, "Content-Disposition: attachment; filename=\"%s\"\n\n", attach_filename); | |
794 } | |
795 } | |
796 if (current_attach->data) { | |
797 fwrite(enc, 1, strlen(enc), f_output); | |
798 DEBUG_EMAIL(("Attachment Size after encoding is %i\n", strlen(enc))); | |
799 free(enc); // caught by valgrind | |
800 } else { | |
801 pst_attach_to_file_base64(pst, current_attach, f_output); | |
802 } | |
803 fprintf(f_output, "\n\n"); | |
804 DEBUG_RET(); | |
25 | 805 } |
806 | |
31 | 807 |
808 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 | 809 { |
43 | 810 DEBUG_ENT("write_normal_email"); |
811 char *boundary = NULL; // the boundary marker between multipart sections | |
812 int boundary_created = 0; // we have not (yet) created a new boundary | |
813 char *temp = NULL; | |
814 int attach_num, base64_body = 0; | |
815 time_t em_time; | |
816 char *c_time; | |
817 pst_item_attach* current_attach; | |
25 | 818 |
43 | 819 // convert the sent date if it exists, or set it to a fixed date |
820 if (item->email->sent_date) { | |
821 em_time = fileTimeToUnixTime(item->email->sent_date, 0); | |
822 c_time = ctime(&em_time); | |
823 if (c_time) | |
824 c_time[strlen(c_time)-1] = '\0'; //remove end \n | |
825 else | |
826 c_time = "Fri Dec 28 12:06:21 2001"; | |
827 } else | |
828 c_time= "Fri Dec 28 12:06:21 2001"; | |
25 | 829 |
43 | 830 // we will always look at the header to discover some stuff |
831 if (item->email->header ) { | |
832 char *b1, *b2; | |
833 // see if there is a boundary variable there | |
834 // this search MUST be made case insensitive (DONE). | |
835 // Also, we should check to find out if we are looking | |
836 // at the boundary associated with content-type, and that | |
837 // the content type really is multipart | |
25 | 838 |
43 | 839 removeCR(item->email->header); |
25 | 840 |
43 | 841 if ((b2 = my_stristr(item->email->header, "boundary="))) { |
842 int len; | |
843 b2 += strlen("boundary="); // move boundary to first char of marker | |
31 | 844 |
43 | 845 if (*b2 == '"') { |
846 b2++; | |
847 b1 = strchr(b2, '"'); // find terminating quote | |
848 } else { | |
849 b1 = b2; | |
850 while (isgraph(*b1)) // find first char that isn't part of boundary | |
851 b1++; | |
852 } | |
853 len = b1 - b2; | |
854 boundary = malloc(len+1); //malloc that length | |
855 strncpy(boundary, b2, len); // copy boundary to another variable | |
856 boundary[len] = '\0'; | |
857 b1 = b2 = boundary; | |
858 while (*b2 != '\0') { // remove any CRs and Tabs | |
859 if (*b2 != '\n' && *b2 != '\r' && *b2 != '\t') { | |
860 *b1 = *b2; | |
861 b1++; | |
862 } | |
863 b2++; | |
864 } | |
865 *b1 = '\0'; | |
31 | 866 |
43 | 867 DEBUG_EMAIL(("Found boundary of - %s\n", boundary)); |
868 } else { | |
869 DEBUG_EMAIL(("boundary not found in header\n")); | |
870 } | |
25 | 871 |
43 | 872 // also possible to set 7bit encoding detection here. |
873 if ((b2 = my_stristr(item->email->header, "Content-Transfer-Encoding:"))) { | |
874 if ((b2 = strchr(b2, ':'))) { | |
875 b2++; // skip to the : at the end of the string | |
31 | 876 |
43 | 877 while (*b2 == ' ' || *b2 == '\t') |
878 b2++; | |
879 if (pst_strincmp(b2, "base64", 6)==0) { | |
880 DEBUG_EMAIL(("body is base64 encoded\n")); | |
881 base64_body = 1; | |
882 } | |
883 } else { | |
884 DEBUG_WARN(("found a ':' during the my_stristr, but not after that..\n")); | |
885 } | |
886 } | |
887 } | |
25 | 888 |
43 | 889 if (!boundary && (item->attach || (item->email->body && item->email->htmlbody) |
890 || item->email->rtf_compressed || item->email->encrypted_body | |
891 || item->email->encrypted_htmlbody)) { | |
892 // we need to create a boundary here. | |
893 DEBUG_EMAIL(("must create own boundary. oh dear.\n")); | |
894 boundary = malloc(50 * sizeof(char)); // allow 50 chars for boundary | |
895 boundary[0] = '\0'; | |
896 sprintf(boundary, "--boundary-LibPST-iamunique-%i_-_-", rand()); | |
897 DEBUG_EMAIL(("created boundary is %s\n", boundary)); | |
898 boundary_created = 1; | |
899 } | |
25 | 900 |
43 | 901 DEBUG_EMAIL(("About to print Header\n")); |
31 | 902 |
43 | 903 if (item && item->email && item->email->subject && item->email->subject->subj) { |
904 DEBUG_EMAIL(("item->email->subject->subj = %s\n", item->email->subject->subj)); | |
905 } | |
31 | 906 |
43 | 907 if (item->email->header) { |
908 int len; | |
909 char *soh = NULL; // real start of headers. | |
31 | 910 |
43 | 911 // some of the headers we get from the file are not properly defined. |
912 // they can contain some email stuff too. We will cut off the header | |
913 // when we see a \n\n or \r\n\r\n | |
914 removeCR(item->email->header); | |
915 temp = strstr(item->email->header, "\n\n"); | |
25 | 916 |
43 | 917 if (temp) { |
918 DEBUG_EMAIL(("Found body text in header\n")); | |
919 temp[1] = '\0'; // stop after first \n | |
920 } | |
31 | 921 |
43 | 922 // Now, write out the header... |
923 soh = skip_header_prologue(item->email->header); | |
924 if (mode != MODE_SEPERATE) { | |
925 // don't put rubbish in if we are doing seperate | |
926 if (strncmp(soh, "X-From_: ", 9) == 0 ) { | |
927 fputs("From ", f_output); | |
928 soh += 9; | |
929 } else | |
930 fprintf(f_output, "From \"%s\" %s\n", item->email->outlook_sender_name, c_time); | |
931 } | |
932 fprintf(f_output, "%s", soh); | |
933 len = strlen(soh); | |
934 if (!len || (soh[len-1] != '\n')) fprintf(f_output, "\n"); | |
31 | 935 |
43 | 936 } else { |
937 //make up our own header! | |
938 if (mode != MODE_SEPERATE) { | |
939 // don't want this first line for this mode | |
940 if (item->email->outlook_sender_name) { | |
941 temp = item->email->outlook_sender_name; | |
942 } else { | |
943 temp = "(readpst_null)"; | |
944 } | |
945 fprintf(f_output, "From \"%s\" %s\n", temp, c_time); | |
946 } | |
31 | 947 |
43 | 948 temp = item->email->outlook_sender; |
949 if (!temp) temp = ""; | |
950 fprintf(f_output, "From: \"%s\" <%s>\n", item->email->outlook_sender_name, temp); | |
31 | 951 |
43 | 952 if (item->email->subject) { |
953 fprintf(f_output, "Subject: %s\n", item->email->subject->subj); | |
954 } else { | |
955 fprintf(f_output, "Subject: \n"); | |
956 } | |
31 | 957 |
43 | 958 fprintf(f_output, "To: %s\n", item->email->sentto_address); |
959 if (item->email->cc_address) { | |
960 fprintf(f_output, "Cc: %s\n", item->email->cc_address); | |
961 } | |
31 | 962 |
43 | 963 if (item->email->sent_date) { |
964 c_time = (char*) xmalloc(C_TIME_SIZE); | |
965 strftime(c_time, C_TIME_SIZE, "%a, %d %b %Y %H:%M:%S %z", gmtime(&em_time)); | |
966 fprintf(f_output, "Date: %s\n", c_time); | |
967 free(c_time); | |
968 } | |
969 } | |
25 | 970 |
43 | 971 fprintf(f_output, "MIME-Version: 1.0\n"); |
972 if (boundary && boundary_created) { | |
973 // if we created the boundary, then it has NOT already been printed | |
974 // in the headers above. | |
975 if (item->attach) { | |
976 // write the boundary stuff if we have attachments | |
977 fprintf(f_output, "Content-type: multipart/mixed;\n\tboundary=\"%s\"\n", boundary); | |
978 } else if (boundary) { | |
979 // else if we have multipart/alternative then tell it so | |
980 fprintf(f_output, "Content-type: multipart/alternative;\n\tboundary=\"%s\"\n", boundary); | |
981 } else if (item->email->htmlbody) { | |
982 fprintf(f_output, "Content-type: text/html\n"); | |
983 } | |
984 } | |
985 fprintf(f_output, "\n"); // start the body | |
986 DEBUG_EMAIL(("About to print Body\n")); | |
25 | 987 |
43 | 988 if (item->email->body) { |
989 if (boundary) { | |
990 fprintf(f_output, "\n--%s\n", boundary); | |
991 fprintf(f_output, "Content-type: text/plain\n"); | |
992 if (base64_body) | |
993 fprintf(f_output, "Content-Transfer-Encoding: base64\n"); | |
994 fprintf(f_output, "\n"); | |
995 } | |
996 removeCR(item->email->body); | |
997 if (base64_body) { | |
998 char *enc = base64_encode(item->email->body, strlen(item->email->body)); | |
999 if (enc) { | |
1000 write_email_body(f_output, enc); | |
1001 free(enc); | |
1002 } | |
1003 } | |
1004 else { | |
1005 write_email_body(f_output, item->email->body); | |
1006 } | |
1007 } | |
31 | 1008 |
43 | 1009 if (item->email->htmlbody) { |
1010 if (boundary) { | |
1011 fprintf(f_output, "\n--%s\n", boundary); | |
1012 fprintf(f_output, "Content-type: text/html\n"); | |
1013 if (base64_body) fprintf(f_output, "Content-Transfer-Encoding: base64\n"); | |
1014 fprintf(f_output, "\n"); | |
1015 } | |
1016 removeCR(item->email->htmlbody); | |
1017 if (base64_body) { | |
1018 char *enc = base64_encode(item->email->htmlbody, strlen(item->email->htmlbody)); | |
1019 if (enc) { | |
1020 write_email_body(f_output, enc); | |
1021 free(enc); | |
1022 } | |
1023 } | |
1024 else { | |
1025 write_email_body(f_output, item->email->htmlbody); | |
1026 } | |
1027 } | |
25 | 1028 |
43 | 1029 if (item->email->rtf_compressed && save_rtf) { |
1030 //int32_t tester; | |
1031 DEBUG_EMAIL(("Adding RTF body as attachment\n")); | |
1032 current_attach = (pst_item_attach*)xmalloc(sizeof(pst_item_attach)); | |
1033 memset(current_attach, 0, sizeof(pst_item_attach)); | |
1034 current_attach->next = item->attach; | |
1035 item->attach = current_attach; | |
1036 current_attach->data = lzfu_decompress(item->email->rtf_compressed, item->email->rtf_compressed_size, ¤t_attach->size); | |
1037 current_attach->filename2 = xmalloc(strlen(RTF_ATTACH_NAME)+2); | |
1038 strcpy(current_attach->filename2, RTF_ATTACH_NAME); | |
1039 current_attach->mimetype = xmalloc(strlen(RTF_ATTACH_TYPE)+2); | |
1040 strcpy(current_attach->mimetype, RTF_ATTACH_TYPE); | |
1041 //memcpy(&tester, item->email->rtf_compressed+sizeof(int32_t), sizeof(int32_t)); | |
1042 //LE32_CPU(tester); | |
1043 //printf("lz produced %d bytes, rtf claims %d bytes\n", current_attach->size, tester); | |
1044 } | |
31 | 1045 |
43 | 1046 if (item->email->encrypted_body || item->email->encrypted_htmlbody) { |
1047 // if either the body or htmlbody is encrypted, add them as attachments | |
1048 if (item->email->encrypted_body) { | |
1049 DEBUG_EMAIL(("Adding Encrypted Body as attachment\n")); | |
1050 current_attach = (pst_item_attach*) xmalloc(sizeof(pst_item_attach)); | |
1051 memset(current_attach, 0, sizeof(pst_item_attach)); | |
1052 current_attach->next = item->attach; | |
1053 item->attach = current_attach; | |
1054 current_attach->data = item->email->encrypted_body; | |
1055 current_attach->size = item->email->encrypted_body_size; | |
1056 item->email->encrypted_body = NULL; | |
1057 } | |
31 | 1058 |
43 | 1059 if (item->email->encrypted_htmlbody) { |
1060 DEBUG_EMAIL(("Adding encrypted HTML body as attachment\n")); | |
1061 current_attach = (pst_item_attach*) xmalloc(sizeof(pst_item_attach)); | |
1062 memset(current_attach, 0, sizeof(pst_item_attach)); | |
1063 current_attach->next = item->attach; | |
1064 item->attach = current_attach; | |
1065 current_attach->data = item->email->encrypted_htmlbody; | |
1066 current_attach->size = item->email->encrypted_htmlbody_size; | |
1067 item->email->encrypted_htmlbody = NULL; | |
1068 } | |
1069 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"); | |
1070 } | |
31 | 1071 |
43 | 1072 // attachments |
1073 attach_num = 0; | |
1074 for (current_attach = item->attach; current_attach; current_attach = current_attach->next) { | |
1075 DEBUG_EMAIL(("Attempting Attachment encoding\n")); | |
1076 if (!current_attach->data) { | |
1077 DEBUG_EMAIL(("Data of attachment is NULL!. Size is supposed to be %i\n", current_attach->size)); | |
1078 } | |
1079 if (mode == MODE_SEPERATE && !mode_MH) | |
1080 write_separate_attachment(f_name, current_attach, ++attach_num, pst); | |
1081 else | |
1082 write_inline_attachment(f_output, current_attach, boundary, pst); | |
1083 } | |
1084 if (mode != MODE_SEPERATE) { /* do not add a boundary after the last attachment for mode_MH */ | |
1085 DEBUG_EMAIL(("Writing buffer between emails\n")); | |
1086 if (boundary) fprintf(f_output, "\n--%s--\n", boundary); | |
1087 fprintf(f_output, "\n\n"); | |
1088 } | |
1089 if (boundary) free (boundary); | |
1090 DEBUG_RET(); | |
25 | 1091 } |
1092 | |
31 | 1093 |
25 | 1094 void write_vcard(FILE* f_output, pst_item_contact* contact, char comment[]) |
1095 { | |
43 | 1096 // We can only call rfc escape once per printf, since the second call |
1097 // may free the buffer returned by the first call. | |
1098 // I had tried to place those into a single printf - Carl. | |
39 | 1099 |
43 | 1100 DEBUG_ENT("write_vcard"); |
1101 // the specification I am following is (hopefully) PST_RFC2426 vCard Mime Directory Profile | |
1102 fprintf(f_output, "BEGIN:VCARD\n"); | |
1103 fprintf(f_output, "FN:%s\n", pst_rfc2426_escape(contact->fullname)); | |
39 | 1104 |
43 | 1105 //fprintf(f_output, "N:%s;%s;%s;%s;%s\n", |
1106 fprintf(f_output, "N:%s;", (!contact->surname) ? "" : pst_rfc2426_escape(contact->surname)); | |
1107 fprintf(f_output, "%s;", (!contact->first_name) ? "" : pst_rfc2426_escape(contact->first_name)); | |
1108 fprintf(f_output, "%s;", (!contact->middle_name) ? "" : pst_rfc2426_escape(contact->middle_name)); | |
1109 fprintf(f_output, "%s;", (!contact->display_name_prefix) ? "" : pst_rfc2426_escape(contact->display_name_prefix)); | |
1110 fprintf(f_output, "%s\n", (!contact->suffix) ? "" : pst_rfc2426_escape(contact->suffix)); | |
39 | 1111 |
43 | 1112 if (contact->nickname) |
1113 fprintf(f_output, "NICKNAME:%s\n", pst_rfc2426_escape(contact->nickname)); | |
1114 if (contact->address1) | |
1115 fprintf(f_output, "EMAIL:%s\n", pst_rfc2426_escape(contact->address1)); | |
1116 if (contact->address2) | |
1117 fprintf(f_output, "EMAIL:%s\n", pst_rfc2426_escape(contact->address2)); | |
1118 if (contact->address3) | |
1119 fprintf(f_output, "EMAIL:%s\n", pst_rfc2426_escape(contact->address3)); | |
1120 if (contact->birthday) | |
1121 fprintf(f_output, "BDAY:%s\n", pst_rfc2425_datetime_format(contact->birthday)); | |
39 | 1122 |
43 | 1123 if (contact->home_address) { |
1124 //fprintf(f_output, "ADR;TYPE=home:%s;%s;%s;%s;%s;%s;%s\n", | |
1125 fprintf(f_output, "ADR;TYPE=home:%s;", (!contact->home_po_box) ? "" : pst_rfc2426_escape(contact->home_po_box)); | |
1126 fprintf(f_output, "%s;", ""); // extended Address | |
1127 fprintf(f_output, "%s;", (!contact->home_street) ? "" : pst_rfc2426_escape(contact->home_street)); | |
1128 fprintf(f_output, "%s;", (!contact->home_city) ? "" : pst_rfc2426_escape(contact->home_city)); | |
1129 fprintf(f_output, "%s;", (!contact->home_state) ? "" : pst_rfc2426_escape(contact->home_state)); | |
1130 fprintf(f_output, "%s;", (!contact->home_postal_code) ? "" : pst_rfc2426_escape(contact->home_postal_code)); | |
1131 fprintf(f_output, "%s\n", (!contact->home_country) ? "" : pst_rfc2426_escape(contact->home_country)); | |
1132 fprintf(f_output, "LABEL;TYPE=home:%s\n", pst_rfc2426_escape(contact->home_address)); | |
1133 } | |
39 | 1134 |
43 | 1135 if (contact->business_address) { |
1136 //fprintf(f_output, "ADR;TYPE=work:%s;%s;%s;%s;%s;%s;%s\n", | |
1137 fprintf(f_output, "ADR;TYPE=work:%s;", (!contact->business_po_box) ? "" : pst_rfc2426_escape(contact->business_po_box)); | |
1138 fprintf(f_output, "%s;", ""); // extended Address | |
1139 fprintf(f_output, "%s;", (!contact->business_street) ? "" : pst_rfc2426_escape(contact->business_street)); | |
1140 fprintf(f_output, "%s;", (!contact->business_city) ? "" : pst_rfc2426_escape(contact->business_city)); | |
1141 fprintf(f_output, "%s;", (!contact->business_state) ? "" : pst_rfc2426_escape(contact->business_state)); | |
1142 fprintf(f_output, "%s;", (!contact->business_postal_code) ? "" : pst_rfc2426_escape(contact->business_postal_code)); | |
1143 fprintf(f_output, "%s\n", (!contact->business_country) ? "" : pst_rfc2426_escape(contact->business_country)); | |
1144 fprintf(f_output, "LABEL;TYPE=work:%s\n", pst_rfc2426_escape(contact->business_address)); | |
1145 } | |
39 | 1146 |
43 | 1147 if (contact->other_address) { |
1148 //fprintf(f_output, "ADR;TYPE=postal:%s;%s;%s;%s;%s;%s;%s\n", | |
1149 fprintf(f_output, "ADR;TYPE=postal:%s;",(!contact->other_po_box) ? "" : pst_rfc2426_escape(contact->other_po_box)); | |
1150 fprintf(f_output, "%s;", ""); // extended Address | |
1151 fprintf(f_output, "%s;", (!contact->other_street) ? "" : pst_rfc2426_escape(contact->other_street)); | |
1152 fprintf(f_output, "%s;", (!contact->other_city) ? "" : pst_rfc2426_escape(contact->other_city)); | |
1153 fprintf(f_output, "%s;", (!contact->other_state) ? "" : pst_rfc2426_escape(contact->other_state)); | |
1154 fprintf(f_output, "%s;", (!contact->other_postal_code) ? "" : pst_rfc2426_escape(contact->other_postal_code)); | |
1155 fprintf(f_output, "%s\n", (!contact->other_country) ? "" : pst_rfc2426_escape(contact->other_country)); | |
1156 fprintf(f_output, "LABEL;TYPE=postal:%s\n", pst_rfc2426_escape(contact->other_address)); | |
1157 } | |
39 | 1158 |
43 | 1159 if (contact->business_fax) fprintf(f_output, "TEL;TYPE=work,fax:%s\n", pst_rfc2426_escape(contact->business_fax)); |
1160 if (contact->business_phone) fprintf(f_output, "TEL;TYPE=work,voice:%s\n", pst_rfc2426_escape(contact->business_phone)); | |
1161 if (contact->business_phone2) fprintf(f_output, "TEL;TYPE=work,voice:%s\n", pst_rfc2426_escape(contact->business_phone2)); | |
1162 if (contact->car_phone) fprintf(f_output, "TEL;TYPE=car,voice:%s\n", pst_rfc2426_escape(contact->car_phone)); | |
1163 if (contact->home_fax) fprintf(f_output, "TEL;TYPE=home,fax:%s\n", pst_rfc2426_escape(contact->home_fax)); | |
1164 if (contact->home_phone) fprintf(f_output, "TEL;TYPE=home,voice:%s\n", pst_rfc2426_escape(contact->home_phone)); | |
1165 if (contact->home_phone2) fprintf(f_output, "TEL;TYPE=home,voice:%s\n", pst_rfc2426_escape(contact->home_phone2)); | |
1166 if (contact->isdn_phone) fprintf(f_output, "TEL;TYPE=isdn:%s\n", pst_rfc2426_escape(contact->isdn_phone)); | |
1167 if (contact->mobile_phone) fprintf(f_output, "TEL;TYPE=cell,voice:%s\n", pst_rfc2426_escape(contact->mobile_phone)); | |
1168 if (contact->other_phone) fprintf(f_output, "TEL;TYPE=msg:%s\n", pst_rfc2426_escape(contact->other_phone)); | |
1169 if (contact->pager_phone) fprintf(f_output, "TEL;TYPE=pager:%s\n", pst_rfc2426_escape(contact->pager_phone)); | |
1170 if (contact->primary_fax) fprintf(f_output, "TEL;TYPE=fax,pref:%s\n", pst_rfc2426_escape(contact->primary_fax)); | |
1171 if (contact->primary_phone) fprintf(f_output, "TEL;TYPE=phone,pref:%s\n", pst_rfc2426_escape(contact->primary_phone)); | |
1172 if (contact->radio_phone) fprintf(f_output, "TEL;TYPE=pcs:%s\n", pst_rfc2426_escape(contact->radio_phone)); | |
1173 if (contact->telex) fprintf(f_output, "TEL;TYPE=bbs:%s\n", pst_rfc2426_escape(contact->telex)); | |
1174 if (contact->job_title) fprintf(f_output, "TITLE:%s\n", pst_rfc2426_escape(contact->job_title)); | |
1175 if (contact->profession) fprintf(f_output, "ROLE:%s\n", pst_rfc2426_escape(contact->profession)); | |
1176 if (contact->assistant_name || contact->assistant_phone) { | |
1177 fprintf(f_output, "AGENT:BEGIN:VCARD\n"); | |
1178 if (contact->assistant_name) fprintf(f_output, "FN:%s\n", pst_rfc2426_escape(contact->assistant_name)); | |
1179 if (contact->assistant_phone) fprintf(f_output, "TEL:%s\n", pst_rfc2426_escape(contact->assistant_phone)); | |
1180 } | |
1181 if (contact->company_name) fprintf(f_output, "ORG:%s\n", pst_rfc2426_escape(contact->company_name)); | |
1182 if (comment) fprintf(f_output, "NOTE:%s\n", pst_rfc2426_escape(comment)); | |
25 | 1183 |
43 | 1184 fprintf(f_output, "VERSION: 3.0\n"); |
1185 fprintf(f_output, "END:VCARD\n\n"); | |
1186 DEBUG_RET(); | |
25 | 1187 } |
1188 | |
31 | 1189 |
25 | 1190 void write_appointment(FILE* f_output, pst_item_appointment* appointment, |
43 | 1191 pst_item_email* email, FILETIME* create_date, FILETIME* modify_date) |
25 | 1192 { |
43 | 1193 fprintf(f_output, "BEGIN:VEVENT\n"); |
1194 if (create_date) | |
1195 fprintf(f_output, "CREATED:%s\n", | |
1196 pst_rfc2445_datetime_format(create_date)); | |
1197 if (modify_date) | |
1198 fprintf(f_output, "LAST-MOD:%s\n", | |
1199 pst_rfc2445_datetime_format(modify_date)); | |
1200 if (email && email->subject) | |
1201 fprintf(f_output, "SUMMARY:%s\n", | |
1202 pst_rfc2426_escape(email->subject->subj)); | |
1203 if (email && email->body) | |
1204 fprintf(f_output, "DESCRIPTION:%s\n", | |
1205 pst_rfc2426_escape(email->body)); | |
1206 if (appointment && appointment->start) | |
1207 fprintf(f_output, "DTSTART;VALUE=DATE-TIME:%s\n", | |
1208 pst_rfc2445_datetime_format(appointment->start)); | |
1209 if (appointment && appointment->end) | |
1210 fprintf(f_output, "DTEND;VALUE=DATE-TIME:%s\n", | |
1211 pst_rfc2445_datetime_format(appointment->end)); | |
1212 if (appointment && appointment->location) | |
1213 fprintf(f_output, "LOCATION:%s\n", | |
1214 pst_rfc2426_escape(appointment->location)); | |
1215 if (appointment) { | |
1216 switch (appointment->showas) { | |
1217 case PST_FREEBUSY_TENTATIVE: | |
1218 fprintf(f_output, "STATUS:TENTATIVE\n"); | |
1219 break; | |
1220 case PST_FREEBUSY_FREE: | |
1221 // mark as transparent and as confirmed | |
1222 fprintf(f_output, "TRANSP:TRANSPARENT\n"); | |
1223 case PST_FREEBUSY_BUSY: | |
1224 case PST_FREEBUSY_OUT_OF_OFFICE: | |
1225 fprintf(f_output, "STATUS:CONFIRMED\n"); | |
1226 break; | |
1227 } | |
1228 switch (appointment->label) { | |
1229 case PST_APP_LABEL_NONE: | |
1230 fprintf(f_output, "CATEGORIES:NONE\n"); | |
1231 break; | |
1232 case PST_APP_LABEL_IMPORTANT: | |
1233 fprintf(f_output, "CATEGORIES:IMPORTANT\n"); | |
1234 break; | |
1235 case PST_APP_LABEL_BUSINESS: | |
1236 fprintf(f_output, "CATEGORIES:BUSINESS\n"); | |
1237 break; | |
1238 case PST_APP_LABEL_PERSONAL: | |
1239 fprintf(f_output, "CATEGORIES:PERSONAL\n"); | |
1240 break; | |
1241 case PST_APP_LABEL_VACATION: | |
1242 fprintf(f_output, "CATEGORIES:VACATION\n"); | |
1243 break; | |
1244 case PST_APP_LABEL_MUST_ATTEND: | |
1245 fprintf(f_output, "CATEGORIES:MUST-ATTEND\n"); | |
1246 break; | |
1247 case PST_APP_LABEL_TRAVEL_REQ: | |
1248 fprintf(f_output, "CATEGORIES:TRAVEL-REQUIRED\n"); | |
1249 break; | |
1250 case PST_APP_LABEL_NEEDS_PREP: | |
1251 fprintf(f_output, "CATEGORIES:NEEDS-PREPARATION\n"); | |
1252 break; | |
1253 case PST_APP_LABEL_BIRTHDAY: | |
1254 fprintf(f_output, "CATEGORIES:BIRTHDAY\n"); | |
1255 break; | |
1256 case PST_APP_LABEL_ANNIVERSARY: | |
1257 fprintf(f_output, "CATEGORIES:ANNIVERSARY\n"); | |
1258 break; | |
1259 case PST_APP_LABEL_PHONE_CALL: | |
1260 fprintf(f_output, "CATEGORIES:PHONE-CALL\n"); | |
1261 break; | |
1262 } | |
1263 } | |
1264 fprintf(f_output, "END:VEVENT\n\n"); | |
25 | 1265 } |
1266 | |
31 | 1267 |
39 | 1268 void create_enter_dir(struct file_ll* f, pst_item *item) |
25 | 1269 { |
43 | 1270 f->email_count = 0; |
1271 f->skip_count = 0; | |
1272 f->type = item->type; | |
1273 f->stored_count = (item->folder) ? item->folder->email_count : 0; | |
39 | 1274 |
43 | 1275 DEBUG_ENT("create_enter_dir"); |
1276 if (mode == MODE_KMAIL) | |
1277 f->name = mk_kmail_dir(item->file_as); //create directory and form filename | |
1278 else if (mode == MODE_RECURSE) | |
1279 f->name = mk_recurse_dir(item->file_as); | |
1280 else if (mode == MODE_SEPERATE) { | |
1281 // do similar stuff to recurse here. | |
1282 mk_seperate_dir(item->file_as); | |
1283 f->name = (char*) xmalloc(10); | |
1284 memset(f->name, 0, 10); | |
1285 // sprintf(f->name, SEP_MAIL_FILE_TEMPLATE, f->email_count); | |
1286 } else { | |
1287 f->name = (char*) xmalloc(strlen(item->file_as)+strlen(OUTPUT_TEMPLATE)+1); | |
1288 sprintf(f->name, OUTPUT_TEMPLATE, item->file_as); | |
1289 } | |
25 | 1290 |
43 | 1291 f->dname = (char*) xmalloc(strlen(item->file_as)+1); |
1292 strcpy(f->dname, item->file_as); | |
25 | 1293 |
43 | 1294 if (overwrite != 1) { |
1295 int x = 0; | |
1296 char *temp = (char*) xmalloc (strlen(f->name)+10); //enough room for 10 digits | |
25 | 1297 |
43 | 1298 sprintf(temp, "%s", f->name); |
1299 check_filename(temp); | |
1300 while ((f->output = fopen(temp, "r"))) { | |
1301 DEBUG_MAIN(("need to increase filename because one already exists with that name\n")); | |
1302 DEBUG_MAIN(("- increasing it to %s%d\n", f->name, x)); | |
1303 x++; | |
1304 sprintf(temp, "%s%08d", f->name, x); | |
1305 DEBUG_MAIN(("- trying \"%s\"\n", f->name)); | |
1306 if (x == 99999999) { | |
1307 DIE(("create_enter_dir: Why can I not create a folder %s? I have tried %i extensions...\n", f->name, x)); | |
1308 } | |
1309 fclose(f->output); | |
1310 } | |
1311 if (x > 0) { //then the f->name should change | |
1312 free (f->name); | |
1313 f->name = temp; | |
1314 } else { | |
1315 free(temp); | |
1316 } | |
1317 } | |
25 | 1318 |
43 | 1319 DEBUG_MAIN(("f->name = %s\nitem->folder_name = %s\n", f->name, item->file_as)); |
1320 if (mode != MODE_SEPERATE) { | |
1321 check_filename(f->name); | |
1322 if (!(f->output = fopen(f->name, "w"))) { | |
1323 DIE(("create_enter_dir: Could not open file \"%s\" for write\n", f->name)); | |
1324 } | |
1325 } | |
1326 DEBUG_RET(); | |
25 | 1327 } |
1328 | |
39 | 1329 |
1330 void close_enter_dir(struct file_ll *f) | |
1331 { | |
43 | 1332 DEBUG_MAIN(("main: Email Count for folder %s is %i\n", f->dname, f->email_count)); |
1333 if (output_mode != OUTPUT_QUIET) | |
1334 printf("\t\"%s\" - %i items done, skipped %i, should have been %i\n", | |
1335 f->dname, f->email_count, f->skip_count, f->stored_count); | |
1336 if (f->output) fclose(f->output); | |
1337 free(f->name); | |
1338 free(f->dname); | |
39 | 1339 |
43 | 1340 if (mode == MODE_KMAIL) |
1341 close_kmail_dir(); | |
1342 else if (mode == MODE_RECURSE) | |
1343 close_recurse_dir(); | |
1344 else if (mode == MODE_SEPERATE) | |
1345 close_seperate_dir(); | |
39 | 1346 } |
1347 |