comparison libpst.c @ 8:2b58cf15aaf7

pst is case sensitive, ldap is not
author carl
date Thu, 23 Dec 2004 15:49:19 -0800
parents 6b1b602514db
children a818f3c2e589
comparison
equal deleted inserted replaced
7:3e3d8b576630 8:2b58cf15aaf7
79 int32_t id2; 79 int32_t id2;
80 int32_t id; 80 int32_t id;
81 int32_t table2; 81 int32_t table2;
82 } pst_id2_assoc; 82 } pst_id2_assoc;
83 83
84 // this is an array of the un-encrypted values. the un-encrypyed value is in the position 84 // this is an array of the un-encrypted values. the un-encrypyed value is in the position
85 // of the encrypted value. ie the encrypted value 0x13 represents 0x02 85 // of the encrypted value. ie the encrypted value 0x13 represents 0x02
86 // 0 1 2 3 4 5 6 7 86 // 0 1 2 3 4 5 6 7
87 // 8 9 a b c d e f 87 // 8 9 a b c d e f
88 unsigned char comp_enc [] = 88 unsigned char comp_enc [] =
89 { 0x47, 0xf1, 0xb4, 0xe6, 0x0b, 0x6a, 0x72, 0x48, 89 { 0x47, 0xf1, 0xb4, 0xe6, 0x0b, 0x6a, 0x72, 0x48,
90 0x85, 0x4e, 0x9e, 0xeb, 0xe2, 0xf8, 0x94, 0x53, /*0x0f*/ 90 0x85, 0x4e, 0x9e, 0xeb, 0xe2, 0xf8, 0x94, 0x53, /*0x0f*/
91 0xe0, 0xbb, 0xa0, 0x02, 0xe8, 0x5a, 0x09, 0xab, 91 0xe0, 0xbb, 0xa0, 0x02, 0xe8, 0x5a, 0x09, 0xab,
92 0xdb, 0xe3, 0xba, 0xc6, 0x7c, 0xc3, 0x10, 0xdd, /*0x1f*/ 92 0xdb, 0xe3, 0xba, 0xc6, 0x7c, 0xc3, 0x10, 0xdd, /*0x1f*/
93 0x39, 0x05, 0x96, 0x30, 0xf5, 0x37, 0x60, 0x82, 93 0x39, 0x05, 0x96, 0x30, 0xf5, 0x37, 0x60, 0x82,
94 0x8c, 0xc9, 0x13, 0x4a, 0x6b, 0x1d, 0xf3, 0xfb, /*0x2f*/ 94 0x8c, 0xc9, 0x13, 0x4a, 0x6b, 0x1d, 0xf3, 0xfb, /*0x2f*/
95 0x8f, 0x26, 0x97, 0xca, 0x91, 0x17, 0x01, 0xc4, 95 0x8f, 0x26, 0x97, 0xca, 0x91, 0x17, 0x01, 0xc4,
96 0x32, 0x2d, 0x6e, 0x31, 0x95, 0xff, 0xd9, 0x23, /*0x3f*/ 96 0x32, 0x2d, 0x6e, 0x31, 0x95, 0xff, 0xd9, 0x23, /*0x3f*/
97 0xd1, 0x00, 0x5e, 0x79, 0xdc, 0x44, 0x3b, 0x1a, 97 0xd1, 0x00, 0x5e, 0x79, 0xdc, 0x44, 0x3b, 0x1a,
98 0x28, 0xc5, 0x61, 0x57, 0x20, 0x90, 0x3d, 0x83, /*0x4f*/ 98 0x28, 0xc5, 0x61, 0x57, 0x20, 0x90, 0x3d, 0x83, /*0x4f*/
99 0xb9, 0x43, 0xbe, 0x67, 0xd2, 0x46, 0x42, 0x76, 99 0xb9, 0x43, 0xbe, 0x67, 0xd2, 0x46, 0x42, 0x76,
100 0xc0, 0x6d, 0x5b, 0x7e, 0xb2, 0x0f, 0x16, 0x29, /*0x5f*/ 100 0xc0, 0x6d, 0x5b, 0x7e, 0xb2, 0x0f, 0x16, 0x29, /*0x5f*/
101 0x3c, 0xa9, 0x03, 0x54, 0x0d, 0xda, 0x5d, 0xdf, 101 0x3c, 0xa9, 0x03, 0x54, 0x0d, 0xda, 0x5d, 0xdf,
102 0xf6, 0xb7, 0xc7, 0x62, 0xcd, 0x8d, 0x06, 0xd3, /*0x6f*/ 102 0xf6, 0xb7, 0xc7, 0x62, 0xcd, 0x8d, 0x06, 0xd3, /*0x6f*/
103 0x69, 0x5c, 0x86, 0xd6, 0x14, 0xf7, 0xa5, 0x66, 103 0x69, 0x5c, 0x86, 0xd6, 0x14, 0xf7, 0xa5, 0x66,
133 WARN (("cannot be passed a NULL pst_file\n")); 133 WARN (("cannot be passed a NULL pst_file\n"));
134 DEBUG_RET(); 134 DEBUG_RET();
135 return -1; 135 return -1;
136 } 136 }
137 memset(pf, 0, sizeof(pst_file)); 137 memset(pf, 0, sizeof(pst_file));
138 138
139 if ((pf->fp = fopen(name, mode)) == NULL) { 139 if ((pf->fp = fopen(name, mode)) == NULL) {
140 WARN(("cannot open PST file. Error\n")); 140 WARN(("cannot open PST file. Error\n"));
141 DEBUG_RET(); 141 DEBUG_RET();
142 return -1; 142 return -1;
143 } 143 }
167 } 167 }
168 168
169 _pst_getAtPos(pf->fp, ENC_OFFSET, &(pf->encryption), sizeof(unsigned char)); 169 _pst_getAtPos(pf->fp, ENC_OFFSET, &(pf->encryption), sizeof(unsigned char));
170 DEBUG_INFO(("encrypt = %i\n", pf->encryption)); 170 DEBUG_INFO(("encrypt = %i\n", pf->encryption));
171 // pf->encryption = encrypt; 171 // pf->encryption = encrypt;
172 172
173 _pst_getAtPos(pf->fp, SECOND_POINTER-4, &(pf->index2_count), sizeof(pf->index2_count)); 173 _pst_getAtPos(pf->fp, SECOND_POINTER-4, &(pf->index2_count), sizeof(pf->index2_count));
174 _pst_getAtPos(pf->fp, SECOND_POINTER, &(pf->index2), sizeof(pf->index2)); 174 _pst_getAtPos(pf->fp, SECOND_POINTER, &(pf->index2), sizeof(pf->index2));
175 LE32_CPU(pf->index2_count); 175 LE32_CPU(pf->index2_count);
176 LE32_CPU(pf->index2); 176 LE32_CPU(pf->index2);
177 177
179 LE32_CPU(pf->size); 179 LE32_CPU(pf->size);
180 180
181 // very tempting to leave these values set way too high and let the exploration of the tables set them... 181 // very tempting to leave these values set way too high and let the exploration of the tables set them...
182 pf->index1_depth = pf->index2_depth = 255; 182 pf->index1_depth = pf->index2_depth = 255;
183 183
184 DEBUG_INFO(("Pointer2 is %#X, count %i[%#x], depth %#x\n", 184 DEBUG_INFO(("Pointer2 is %#X, count %i[%#x], depth %#x\n",
185 pf->index2, pf->index2_count, pf->index2_count, pf->index2_depth)); 185 pf->index2, pf->index2_count, pf->index2_count, pf->index2_depth));
186 _pst_getAtPos(pf->fp, INDEX_POINTER-4, &(pf->index1_count), sizeof(pf->index1_count)); 186 _pst_getAtPos(pf->fp, INDEX_POINTER-4, &(pf->index1_count), sizeof(pf->index1_count));
187 _pst_getAtPos(pf->fp, INDEX_POINTER, &(pf->index1), sizeof(pf->index1)); 187 _pst_getAtPos(pf->fp, INDEX_POINTER, &(pf->index1), sizeof(pf->index1));
188 LE32_CPU(pf->index1_count); 188 LE32_CPU(pf->index1_count);
189 LE32_CPU(pf->index1); 189 LE32_CPU(pf->index1);
190 190
191 DEBUG_INFO(("Pointer1 is %#X, count %i[%#x], depth %#x\n", 191 DEBUG_INFO(("Pointer1 is %#X, count %i[%#x], depth %#x\n",
192 pf->index1, pf->index1_count, pf->index1_count, pf->index1_depth)); 192 pf->index1, pf->index1_count, pf->index1_count, pf->index1_depth));
193 pf->id_depth_ok = 0; 193 pf->id_depth_ok = 0;
194 pf->desc_depth_ok = 0; 194 pf->desc_depth_ok = 0;
195 DEBUG_RET(); 195 DEBUG_RET();
196 return 0; 196 return 0;
221 // pst_item *i; 221 // pst_item *i;
222 // char *a, *b; 222 // char *a, *b;
223 // int x,z; 223 // int x,z;
224 DEBUG_ENT("pst_getTopOfFolders"); 224 DEBUG_ENT("pst_getTopOfFolders");
225 if (root == NULL || root->message_store == NULL 225 if (root == NULL || root->message_store == NULL
226 /* || (root->message_store->top_of_personal_folder == NULL 226 /* || (root->message_store->top_of_personal_folder == NULL
227 && root->message_store->top_of_folder == NULL)*/) { 227 && root->message_store->top_of_folder == NULL)*/) {
228 DEBUG_INDEX(("There isn't a top of folder record here.\n")); 228 DEBUG_INDEX(("There isn't a top of folder record here.\n"));
229 ret = NULL; 229 ret = NULL;
230 } else if (root->message_store->top_of_personal_folder == NULL) { 230 } else if (root->message_store->top_of_personal_folder == NULL) {
231 // this is the OST way 231 // this is the OST way
232 // ASSUMPTION: Top Of Folders record in PST files is *always* descid 0x2142 232 // ASSUMPTION: Top Of Folders record in PST files is *always* descid 0x2142
233 ret = _pst_getDptr(pf, 0x2142); 233 ret = _pst_getDptr(pf, 0x2142);
234 } else { 234 } else {
235 ret = _pst_getDptr(pf, root->message_store->top_of_personal_folder->id); 235 ret = _pst_getDptr(pf, root->message_store->top_of_personal_folder->id);
316 return -1; 316 return -1;
317 } 317 }
318 318
319 x = _pst_build_id_ptr(pf, pf->index1, 0, -1, INT32_MAX); 319 x = _pst_build_id_ptr(pf, pf->index1, 0, -1, INT32_MAX);
320 if (x == -1 || x == 4) { 320 if (x == -1 || x == 4) {
321 if (x == -1) 321 if (x == -1)
322 pf->index1_depth = 0; //only do this for -1 322 pf->index1_depth = 0; //only do this for -1
323 DEBUG_INDEX(("Re-calling _pst_build_id_ptr cause we started with too grand an idea!!!\n")); 323 DEBUG_INDEX(("Re-calling _pst_build_id_ptr cause we started with too grand an idea!!!\n"));
324 if (_pst_build_id_ptr(pf, pf->index1, 0, 0x4, INT32_MAX) == -1) { 324 if (_pst_build_id_ptr(pf, pf->index1, 0, 0x4, INT32_MAX) == -1) {
325 //we must call twice for testing the depth of the index 325 //we must call twice for testing the depth of the index
326 DEBUG_RET(); 326 DEBUG_RET();
327 return -1; 327 return -1;
328 } 328 }
329 } 329 }
330 330
331 DEBUG_INDEX(("Second Table\n")); 331 DEBUG_INDEX(("Second Table\n"));
332 y = -1; 332 y = -1;
333 x = _pst_build_desc_ptr(pf, pf->index2, 0, &y, 0x21, INT32_MAX); 333 x = _pst_build_desc_ptr(pf, pf->index2, 0, &y, 0x21, INT32_MAX);
334 if (x == -1 || x == 4) { 334 if (x == -1 || x == 4) {
335 if (x == -1) 335 if (x == -1)
336 pf->index2_depth = 0; //only if -1 is return val 336 pf->index2_depth = 0; //only if -1 is return val
337 337
351 pst_desc_ll* r = NULL; 351 pst_desc_ll* r = NULL;
352 DEBUG_ENT("pst_getNextDptr"); 352 DEBUG_ENT("pst_getNextDptr");
353 if (d != NULL) { 353 if (d != NULL) {
354 if ((r = d->child) == NULL) { 354 if ((r = d->child) == NULL) {
355 while(d->next == NULL && d->parent != NULL) 355 while(d->next == NULL && d->parent != NULL)
356 d = d->parent; 356 d = d->parent;
357 r = d->next; 357 r = d->next;
358 } 358 }
359 } 359 }
360 DEBUG_RET(); 360 DEBUG_RET();
361 return r; 361 return r;
421 LE16_CPU(xattrib.extended); 421 LE16_CPU(xattrib.extended);
422 LE16_CPU(xattrib.zero); 422 LE16_CPU(xattrib.zero);
423 LE16_CPU(xattrib.type); 423 LE16_CPU(xattrib.type);
424 LE16_CPU(xattrib.map); 424 LE16_CPU(xattrib.map);
425 bptr += sizeof(xattrib); 425 bptr += sizeof(xattrib);
426 426
427 while (xattrib.type != 0 && bptr < bsize) { 427 while (xattrib.type != 0 && bptr < bsize) {
428 ptr = (pst_x_attrib_ll*) xmalloc(sizeof(pst_x_attrib_ll)); 428 ptr = (pst_x_attrib_ll*) xmalloc(sizeof(pst_x_attrib_ll));
429 memset(ptr, 0, sizeof(pst_x_attrib_ll)); 429 memset(ptr, 0, sizeof(pst_x_attrib_ll));
430 ptr->type = xattrib.type; 430 ptr->type = xattrib.type;
431 ptr->map = xattrib.map+0x8000; 431 ptr->map = xattrib.map+0x8000;
432 ptr->next = NULL; 432 ptr->next = NULL;
433 DEBUG_INDEX(("xattrib: ext = %#hx, zero = %#hx, type = %#hx, map = %#hx\n", 433 DEBUG_INDEX(("xattrib: ext = %#hx, zero = %#hx, type = %#hx, map = %#hx\n",
434 xattrib.extended, xattrib.zero, xattrib.type, xattrib.map)); 434 xattrib.extended, xattrib.zero, xattrib.type, xattrib.map));
435 err=0; 435 err=0;
436 if (xattrib.type & 0x0001) { // if the Bit 1 is set 436 if (xattrib.type & 0x0001) { // if the Bit 1 is set
437 // pointer to Unicode field in buffer 437 // pointer to Unicode field in buffer
438 if (xattrib.extended < hsize) { 438 if (xattrib.extended < hsize) {
439 // copy the size of the header. It is 32 bit int 439 // copy the size of the header. It is 32 bit int
440 memcpy(&tint, &(headerbuffer[xattrib.extended]), sizeof(tint)); 440 memcpy(&tint, &(headerbuffer[xattrib.extended]), sizeof(tint));
441 LE32_CPU(tint); 441 LE32_CPU(tint);
442 wt = (char*) xmalloc(tint+2); // plus 2 for a uni-code zero 442 wt = (char*) xmalloc(tint+2); // plus 2 for a uni-code zero
443 memset(wt, 0, tint+2); 443 memset(wt, 0, tint+2);
444 memcpy(wt, &(headerbuffer[xattrib.extended+sizeof(tint)]), tint); 444 memcpy(wt, &(headerbuffer[xattrib.extended+sizeof(tint)]), tint);
445 ptr->data = _pst_wide_to_single(wt, tint); 445 ptr->data = _pst_wide_to_single(wt, tint);
446 DEBUG_INDEX(("Read string (converted from UTF-16): %s\n", ptr->data)); 446 DEBUG_INDEX(("Read string (converted from UTF-16): %s\n", ptr->data));
447 } else { 447 } else {
448 DEBUG_INDEX(("Cannot read outside of buffer [%i !< %i]\n", xattrib.extended, hsize)); 448 DEBUG_INDEX(("Cannot read outside of buffer [%i !< %i]\n", xattrib.extended, hsize));
449 } 449 }
450 ptr->mytype = PST_MAP_HEADER; 450 ptr->mytype = PST_MAP_HEADER;
451 } else { 451 } else {
452 // contains the attribute code to map to. 452 // contains the attribute code to map to.
453 ptr->data = (int*)xmalloc(sizeof(int32_t)); 453 ptr->data = (int*)xmalloc(sizeof(int32_t));
460 if (err==0) { 460 if (err==0) {
461 // add it to the list 461 // add it to the list
462 p_sh = p_head; 462 p_sh = p_head;
463 p_sh2 = NULL; 463 p_sh2 = NULL;
464 while (p_sh != NULL && ptr->map > p_sh->map) { 464 while (p_sh != NULL && ptr->map > p_sh->map) {
465 p_sh2 = p_sh; 465 p_sh2 = p_sh;
466 p_sh = p_sh->next; 466 p_sh = p_sh->next;
467 } 467 }
468 if (p_sh2 == NULL) { 468 if (p_sh2 == NULL) {
469 // needs to go before first item 469 // needs to go before first item
470 ptr->next = p_head; 470 ptr->next = p_head;
471 p_head = ptr; 471 p_head = ptr;
472 } else { 472 } else {
473 // it will go after p_sh2 473 // it will go after p_sh2
474 ptr->next = p_sh2->next; 474 ptr->next = p_sh2->next;
475 p_sh2->next = ptr; 475 p_sh2->next = ptr;
476 } 476 }
477 } else { 477 } else {
478 free(ptr); 478 free(ptr);
479 ptr = NULL; 479 ptr = NULL;
480 } 480 }
527 bptr += sizeof(index); 527 bptr += sizeof(index);
528 528
529 while(index.id != 0 && x < 42 && bptr < buf+BLOCK_SIZE && index.id < end_val) { 529 while(index.id != 0 && x < 42 && bptr < buf+BLOCK_SIZE && index.id < end_val) {
530 DEBUG_INDEX(("[%i]%i Item [id = %#x, offset = %#x, u1 = %#x, size = %i(%#x)]\n", depth, ++x, index.id, index.offset, index.u1, index.size, index.size)); 530 DEBUG_INDEX(("[%i]%i Item [id = %#x, offset = %#x, u1 = %#x, size = %i(%#x)]\n", depth, ++x, index.id, index.offset, index.u1, index.size, index.size));
531 if (index.id & 0x02) { 531 if (index.id & 0x02) {
532 DEBUG_INDEX(("two-bit set!!\n")); 532 DEBUG_INDEX(("two-bit set!!\n"));
533 } 533 }
534 if (start_val != -1 && index.id != start_val) { 534 if (start_val != -1 && index.id != start_val) {
535 DEBUG_WARN(("This item isn't right. Must be corruption, or I got it wrong!\n")); 535 DEBUG_WARN(("This item isn't right. Must be corruption, or I got it wrong!\n"));
536 DEBUG_HEXDUMPC(buf, BLOCK_SIZE, 12); 536 DEBUG_HEXDUMPC(buf, BLOCK_SIZE, 12);
537 // fseek(pf->fp, fpos, SEEK_SET); 537 // fseek(pf->fp, fpos, SEEK_SET);
538 if (buf) free(buf); 538 if (buf) free(buf);
539 DEBUG_RET(); 539 DEBUG_RET();
540 return -1; 540 return -1;
541 } else { 541 } else {
542 start_val = -1; 542 start_val = -1;
543 pf->id_depth_ok = 1; 543 pf->id_depth_ok = 1;
544 } 544 }
545 // u1 could be a flag. if bit 0x2 is not set, it might be deleted 545 // u1 could be a flag. if bit 0x2 is not set, it might be deleted
546 // if (index.u1 & 0x2 || index.u1 & 0x4) { 546 // if (index.u1 & 0x2 || index.u1 & 0x4) {
547 // ignore the above condition. it doesn't appear to hold 547 // ignore the above condition. it doesn't appear to hold
548 if (old > index.id) { // then we have back-slid on the new values 548 if (old > index.id) { // then we have back-slid on the new values
549 DEBUG_INDEX(("Back slider detected - Old value [%#x] greater than new [%#x]. Progressing to next table\n", old, index.id)); 549 DEBUG_INDEX(("Back slider detected - Old value [%#x] greater than new [%#x]. Progressing to next table\n", old, index.id));
550 DEBUG_RET(); 550 DEBUG_RET();
551 return 2; 551 return 2;
552 } 552 }
553 old = index.id; 553 old = index.id;
554 i_ptr = (pst_index_ll*) xmalloc(sizeof(pst_index_ll)); 554 i_ptr = (pst_index_ll*) xmalloc(sizeof(pst_index_ll));
555 i_ptr->id = index.id; 555 i_ptr->id = index.id;
556 i_ptr->offset = index.offset; 556 i_ptr->offset = index.offset;
557 i_ptr->u1 = index.u1; 557 i_ptr->u1 = index.u1;
558 i_ptr->size = index.size; 558 i_ptr->size = index.size;
559 i_ptr->next = NULL; 559 i_ptr->next = NULL;
560 if (pf->i_tail != NULL) 560 if (pf->i_tail != NULL)
561 pf->i_tail->next = i_ptr; 561 pf->i_tail->next = i_ptr;
562 if (pf->i_head == NULL) 562 if (pf->i_head == NULL)
563 pf->i_head = i_ptr; 563 pf->i_head = i_ptr;
564 pf->i_tail = i_ptr; 564 pf->i_tail = i_ptr;
565 memcpy(&index, bptr, sizeof(index)); 565 memcpy(&index, bptr, sizeof(index));
566 LE32_CPU(index.id); 566 LE32_CPU(index.id);
567 LE32_CPU(index.offset); 567 LE32_CPU(index.offset);
568 LE16_CPU(index.size); 568 LE16_CPU(index.size);
570 bptr += sizeof(index); 570 bptr += sizeof(index);
571 } 571 }
572 // fseek(pf->fp, fpos, SEEK_SET); 572 // fseek(pf->fp, fpos, SEEK_SET);
573 if (x < 42) { // we have stopped prematurley. Why? 573 if (x < 42) { // we have stopped prematurley. Why?
574 if (index.id == 0) { 574 if (index.id == 0) {
575 DEBUG_INDEX(("Found index.id == 0\n")); 575 DEBUG_INDEX(("Found index.id == 0\n"));
576 } else if (!(bptr < buf+BLOCK_SIZE)) { 576 } else if (!(bptr < buf+BLOCK_SIZE)) {
577 DEBUG_INDEX(("Read past end of buffer\n")); 577 DEBUG_INDEX(("Read past end of buffer\n"));
578 } else if (index.id >= end_val) { 578 } else if (index.id >= end_val) {
579 DEBUG_INDEX(("index.id[%x] > end_val[%x]\n", 579 DEBUG_INDEX(("index.id[%x] > end_val[%x]\n",
580 index.id, end_val)); 580 index.id, end_val));
581 } else { 581 } else {
582 DEBUG_INDEX(("Stopped for unknown reason\n")); 582 DEBUG_INDEX(("Stopped for unknown reason\n"));
583 } 583 }
584 } 584 }
585 if (buf) free (buf); 585 if (buf) free (buf);
586 DEBUG_RET(); 586 DEBUG_RET();
587 return 2; 587 return 2;
588 } else { 588 } else {
589 // this is then probably a table of offsets to more tables. 589 // this is then probably a table of offsets to more tables.
590 DEBUG_INDEX(("Reading Table Items\n")); 590 DEBUG_INDEX(("Reading Table Items\n"));
591 591
592 x = 0; 592 x = 0;
614 DEBUG_WARN(("This table isn't right. Must be corruption, or I got it wrong!\n")); 614 DEBUG_WARN(("This table isn't right. Must be corruption, or I got it wrong!\n"));
615 DEBUG_HEXDUMPC(buf, BLOCK_SIZE, 12); 615 DEBUG_HEXDUMPC(buf, BLOCK_SIZE, 12);
616 if (buf) free(buf); 616 if (buf) free(buf);
617 DEBUG_RET(); 617 DEBUG_RET();
618 return -1; 618 return -1;
619 } 619 }
620 620
621 while (table.start != 0 && bptr < buf+BLOCK_SIZE && table.start < end_val) { 621 while (table.start != 0 && bptr < buf+BLOCK_SIZE && table.start < end_val) {
622 DEBUG_INDEX(("[%i] %i Table [start id = %#x, u1 = %#x, offset = %#x]\n", depth, ++x, table.start, table.u1, table.offset)); 622 DEBUG_INDEX(("[%i] %i Table [start id = %#x, u1 = %#x, offset = %#x]\n", depth, ++x, table.start, table.u1, table.offset));
623 623
624 if (table2.start <= table.start) 624 if (table2.start <= table.start)
625 // this should only be the case when we come to the end of the table 625 // this should only be the case when we come to the end of the table
626 // and table2.start == 0 626 // and table2.start == 0
627 table2.start = end_val; 627 table2.start = end_val;
628 628
629 if ((ret = _pst_build_id_ptr(pf, table.offset, depth+1, table.start, table2.start)) == -1 && pf->id_depth_ok == 0) { 629 if ((ret = _pst_build_id_ptr(pf, table.offset, depth+1, table.start, table2.start)) == -1 && pf->id_depth_ok == 0) {
630 // it would appear that if the table below us isn't a table, but data, then we are actually the table. hmmm 630 // it would appear that if the table below us isn't a table, but data, then we are actually the table. hmmm
631 DEBUG_INDEX(("Setting max depth to %i\n", depth)); 631 DEBUG_INDEX(("Setting max depth to %i\n", depth));
632 pf->index1_depth = depth; //set max depth to this level 632 pf->index1_depth = depth; //set max depth to this level
633 if (buf) free (buf); 633 if (buf) free (buf);
634 // fseek(pf->fp, fpos, SEEK_SET); 634 // fseek(pf->fp, fpos, SEEK_SET);
635 DEBUG_RET(); 635 DEBUG_RET();
636 return 4; // this will indicate that we want to be called again with the same parameters 636 return 4; // this will indicate that we want to be called again with the same parameters
637 } else if (ret == 4) { 637 } else if (ret == 4) {
638 //we shan't bother with checking return value? 638 //we shan't bother with checking return value?
639 DEBUG_INDEX(("Seen that a max depth has been set. Calling build again\n")); 639 DEBUG_INDEX(("Seen that a max depth has been set. Calling build again\n"));
640 _pst_build_id_ptr(pf, table.offset, depth+1, table.start, table2.start); 640 _pst_build_id_ptr(pf, table.offset, depth+1, table.start, table2.start);
641 } else if (ret == 2) { 641 } else if (ret == 2) {
642 DEBUG_INDEX(("child returned successfully\n")); 642 DEBUG_INDEX(("child returned successfully\n"));
643 } else { 643 } else {
644 DEBUG_INDEX(("child has returned without a known error [%i]\n", ret)); 644 DEBUG_INDEX(("child has returned without a known error [%i]\n", ret));
645 } 645 }
646 memcpy(&table, bptr, sizeof(table)); 646 memcpy(&table, bptr, sizeof(table));
647 LE32_CPU(table.start); 647 LE32_CPU(table.start);
648 LE32_CPU(table.u1); 648 LE32_CPU(table.u1);
649 LE32_CPU(table.offset); 649 LE32_CPU(table.offset);
658 DEBUG_INDEX(("Table.start == 0\n")); 658 DEBUG_INDEX(("Table.start == 0\n"));
659 } else if (bptr >= buf+BLOCK_SIZE) { 659 } else if (bptr >= buf+BLOCK_SIZE) {
660 DEBUG_INDEX(("Read past end of buffer\n")); 660 DEBUG_INDEX(("Read past end of buffer\n"));
661 } else if (table.start >= end_val) { 661 } else if (table.start >= end_val) {
662 DEBUG_INDEX(("Table.start[%x] > end_val[%x]\n", 662 DEBUG_INDEX(("Table.start[%x] > end_val[%x]\n",
663 table.start, end_val)); 663 table.start, end_val));
664 } else { 664 } else {
665 DEBUG_INDEX(("Table reading stopped for an unknown reason\n")); 665 DEBUG_INDEX(("Table reading stopped for an unknown reason\n"));
666 } 666 }
667 667
668 if (buf) free (buf); 668 if (buf) free (buf);
675 DEBUG_RET(); 675 DEBUG_RET();
676 return 1; 676 return 1;
677 } 677 }
678 678
679 #define DESC_BLOCK_SIZE 520 679 #define DESC_BLOCK_SIZE 520
680 int32_t _pst_build_desc_ptr (pst_file *pf, int32_t offset, int32_t depth, int32_t *high_id, int32_t start_id, 680 int32_t _pst_build_desc_ptr (pst_file *pf, int32_t offset, int32_t depth, int32_t *high_id, int32_t start_id,
681 int32_t end_val) { 681 int32_t end_val) {
682 struct _pst_table_ptr_struct table, table2; 682 struct _pst_table_ptr_struct table, table2;
683 pst_desc desc_rec; 683 pst_desc desc_rec;
684 pst_desc_ll *d_ptr=NULL, *d_par=NULL; 684 pst_desc_ll *d_ptr=NULL, *d_par=NULL;
685 int32_t i = 0, y, prev_id=-1; 685 int32_t i = 0, y, prev_id=-1;
686 char *buf = NULL, *bptr; 686 char *buf = NULL, *bptr;
687 687
688 struct _pst_d_ptr_ll { 688 struct _pst_d_ptr_ll {
689 pst_desc_ll * ptr; 689 pst_desc_ll * ptr;
690 int32_t parent; // used for lost and found lists 690 int32_t parent; // used for lost and found lists
691 struct _pst_d_ptr_ll * next; 691 struct _pst_d_ptr_ll * next;
692 struct _pst_d_ptr_ll * prev; 692 struct _pst_d_ptr_ll * prev;
702 DEBUG_WARN(("I didn't get all the index that I wanted. _pst_read_block_size returned less than requested\n")); 702 DEBUG_WARN(("I didn't get all the index that I wanted. _pst_read_block_size returned less than requested\n"));
703 DEBUG_RET(); 703 DEBUG_RET();
704 return -1; 704 return -1;
705 } 705 }
706 bptr = buf; 706 bptr = buf;
707 707
708 //DEBUG_HEXDUMPC(buf, DESC_BLOCK_SIZE, 16); 708 //DEBUG_HEXDUMPC(buf, DESC_BLOCK_SIZE, 16);
709 709
710 memcpy(&desc_rec, bptr, sizeof(desc_rec)); 710 memcpy(&desc_rec, bptr, sizeof(desc_rec));
711 LE32_CPU(desc_rec.d_id); 711 LE32_CPU(desc_rec.d_id);
712 LE32_CPU(desc_rec.desc_id); 712 LE32_CPU(desc_rec.desc_id);
714 LE32_CPU(desc_rec.parent_id); 714 LE32_CPU(desc_rec.parent_id);
715 bptr+= sizeof(desc_rec); 715 bptr+= sizeof(desc_rec);
716 716
717 if (end_val <= start_id) { 717 if (end_val <= start_id) {
718 DEBUG_WARN(("The end value is BEFORE the start value. This function will quit. Soz. [start:%#x, end:%#x]\n", 718 DEBUG_WARN(("The end value is BEFORE the start value. This function will quit. Soz. [start:%#x, end:%#x]\n",
719 start_id, end_val)); 719 start_id, end_val));
720 } 720 }
721 721
722 while (i < 0x1F && desc_rec.d_id < end_val && (prev_id == -1 || desc_rec.d_id > prev_id)) { 722 while (i < 0x1F && desc_rec.d_id < end_val && (prev_id == -1 || desc_rec.d_id > prev_id)) {
723 DEBUG_INDEX(("[%i] Item(%#x) = [d_id = %#x, desc_id = %#x, " 723 DEBUG_INDEX(("[%i] Item(%#x) = [d_id = %#x, desc_id = %#x, "
724 "list_id = %#x, parent_id = %#x]\n", depth, i, desc_rec.d_id, 724 "list_id = %#x, parent_id = %#x]\n", depth, i, desc_rec.d_id,
725 desc_rec.desc_id, desc_rec.list_id, desc_rec.parent_id)); 725 desc_rec.desc_id, desc_rec.list_id, desc_rec.parent_id));
726 i++; 726 i++;
727 727
728 if (start_id != -1 && desc_rec.d_id != start_id) { 728 if (start_id != -1 && desc_rec.d_id != start_id) {
729 DEBUG_INDEX(("Error: This table appears to be corrupt. Perhaps" 729 DEBUG_INDEX(("Error: This table appears to be corrupt. Perhaps"
730 " we are looking too deep!\n")); 730 " we are looking too deep!\n"));
731 if (buf) free(buf); 731 if (buf) free(buf);
732 DEBUG_RET(); 732 DEBUG_RET();
733 return -1; 733 return -1;
734 } else { 734 } else {
735 start_id = -1; 735 start_id = -1;
736 pf->desc_depth_ok = 1; 736 pf->desc_depth_ok = 1;
737 } 737 }
738 738
739 if (desc_rec.d_id == 0) { 739 if (desc_rec.d_id == 0) {
740 memcpy(&desc_rec, bptr, sizeof(desc_rec)); 740 memcpy(&desc_rec, bptr, sizeof(desc_rec));
741 LE32_CPU(desc_rec.d_id); 741 LE32_CPU(desc_rec.d_id);
742 LE32_CPU(desc_rec.desc_id); 742 LE32_CPU(desc_rec.desc_id);
743 LE32_CPU(desc_rec.list_id); 743 LE32_CPU(desc_rec.list_id);
744 LE32_CPU(desc_rec.parent_id); 744 LE32_CPU(desc_rec.parent_id);
745 bptr+=sizeof(desc_rec); 745 bptr+=sizeof(desc_rec);
746 continue; 746 continue;
747 } 747 }
748 prev_id = desc_rec.d_id; 748 prev_id = desc_rec.d_id;
749 749
750 // When duplicates found, just update the info.... perhaps this is correct functionality 750 // When duplicates found, just update the info.... perhaps this is correct functionality
751 DEBUG_INDEX(("Searching for existing record\n")); 751 DEBUG_INDEX(("Searching for existing record\n"));
752 752
753 if (desc_rec.d_id <= *high_id && (d_ptr = _pst_getDptr(pf, desc_rec.d_id)) != NULL) { 753 if (desc_rec.d_id <= *high_id && (d_ptr = _pst_getDptr(pf, desc_rec.d_id)) != NULL) {
754 DEBUG_INDEX(("Updating Existing Values\n")); 754 DEBUG_INDEX(("Updating Existing Values\n"));
755 d_ptr->list_index = _pst_getID(pf, desc_rec.list_id); 755 d_ptr->list_index = _pst_getID(pf, desc_rec.list_id);
756 d_ptr->desc = _pst_getID(pf, desc_rec.desc_id); 756 d_ptr->desc = _pst_getID(pf, desc_rec.desc_id);
757 DEBUG_INDEX(("\tdesc = %#x\tlist_index=%#x\n", 757 DEBUG_INDEX(("\tdesc = %#x\tlist_index=%#x\n",
758 (d_ptr->desc==NULL?0:d_ptr->desc->id), 758 (d_ptr->desc==NULL?0:d_ptr->desc->id),
759 (d_ptr->list_index==NULL?0:d_ptr->list_index->id))); 759 (d_ptr->list_index==NULL?0:d_ptr->list_index->id)));
760 if (d_ptr->parent != NULL && desc_rec.parent_id != d_ptr->parent->id) { 760 if (d_ptr->parent != NULL && desc_rec.parent_id != d_ptr->parent->id) {
761 DEBUG_INDEX(("WARNING -- Parent of record has changed. Moving it\n")); 761 DEBUG_INDEX(("WARNING -- Parent of record has changed. Moving it\n"));
762 //hmmm, we must move the record. 762 //hmmm, we must move the record.
763 // first we must remove from current location 763 // first we must remove from current location
764 // change previous record to point next to our next 764 // change previous record to point next to our next
765 // if no previous, then use parent's child 765 // if no previous, then use parent's child
766 // if no parent then change pf->d_head; 766 // if no parent then change pf->d_head;
767 // change next's prev to our prev 767 // change next's prev to our prev
768 // if no next then change parent's child_tail 768 // if no next then change parent's child_tail
769 // if no parent then change pf->d_tail 769 // if no parent then change pf->d_tail
770 if (d_ptr->prev != NULL) 770 if (d_ptr->prev != NULL)
771 d_ptr->prev->next = d_ptr->next; 771 d_ptr->prev->next = d_ptr->next;
772 else if (d_ptr->parent != NULL) 772 else if (d_ptr->parent != NULL)
773 d_ptr->parent->child = d_ptr->next; 773 d_ptr->parent->child = d_ptr->next;
774 else 774 else
775 pf->d_head = d_ptr->next; 775 pf->d_head = d_ptr->next;
776 776
777 if (d_ptr->next != NULL) 777 if (d_ptr->next != NULL)
778 d_ptr->next->prev = d_ptr->prev; 778 d_ptr->next->prev = d_ptr->prev;
779 else if (d_ptr->parent != NULL) 779 else if (d_ptr->parent != NULL)
780 d_ptr->parent->child_tail = d_ptr->prev; 780 d_ptr->parent->child_tail = d_ptr->prev;
781 else 781 else
782 pf->d_tail = d_ptr->prev; 782 pf->d_tail = d_ptr->prev;
783 783
784 d_ptr->prev = NULL; 784 d_ptr->prev = NULL;
785 d_ptr->next = NULL; 785 d_ptr->next = NULL;
786 d_ptr->parent = NULL; 786 d_ptr->parent = NULL;
787 787
788 // ok, now place in correct place 788 // ok, now place in correct place
789 DEBUG_INDEX(("Searching for parent\n")); 789 DEBUG_INDEX(("Searching for parent\n"));
790 if (desc_rec.parent_id == 0) { 790 if (desc_rec.parent_id == 0) {
791 DEBUG_INDEX(("No Parent\n")); 791 DEBUG_INDEX(("No Parent\n"));
792 if (pf->d_tail != NULL) 792 if (pf->d_tail != NULL)
793 pf->d_tail->next = d_ptr; 793 pf->d_tail->next = d_ptr;
794 if (pf->d_head == NULL) 794 if (pf->d_head == NULL)
795 pf->d_head = d_ptr; 795 pf->d_head = d_ptr;
796 d_ptr->prev = pf->d_tail; 796 d_ptr->prev = pf->d_tail;
797 pf->d_tail = d_ptr; 797 pf->d_tail = d_ptr;
798 } else { 798 } else {
799 // check in the quick list 799 // check in the quick list
800 d_ptr_ptr = d_ptr_head; 800 d_ptr_ptr = d_ptr_head;
801 while (d_ptr_ptr != NULL && d_ptr_ptr->ptr->id != desc_rec.parent_id) { 801 while (d_ptr_ptr != NULL && d_ptr_ptr->ptr->id != desc_rec.parent_id) {
802 d_ptr_ptr = d_ptr_ptr->next; 802 d_ptr_ptr = d_ptr_ptr->next;
803 } 803 }
804 804
805 if (d_ptr_ptr == NULL && (d_par = _pst_getDptr(pf, desc_rec.parent_id)) == NULL) { 805 if (d_ptr_ptr == NULL && (d_par = _pst_getDptr(pf, desc_rec.parent_id)) == NULL) {
806 // check in the lost/found list 806 // check in the lost/found list
807 lf_ptr = lf_head; 807 lf_ptr = lf_head;
808 while (lf_ptr != NULL && lf_ptr->ptr->id != desc_rec.parent_id) { 808 while (lf_ptr != NULL && lf_ptr->ptr->id != desc_rec.parent_id) {
809 lf_ptr = lf_ptr->next; 809 lf_ptr = lf_ptr->next;
810 } 810 }
811 if (lf_ptr == NULL) { 811 if (lf_ptr == NULL) {
812 DEBUG_WARN(("ERROR -- not found parent with id %#x. Adding to lost/found\n", desc_rec.parent_id)); 812 DEBUG_WARN(("ERROR -- not found parent with id %#x. Adding to lost/found\n", desc_rec.parent_id));
813 lf_ptr = (struct _pst_d_ptr_ll*) xmalloc(sizeof(struct _pst_d_ptr_ll)); 813 lf_ptr = (struct _pst_d_ptr_ll*) xmalloc(sizeof(struct _pst_d_ptr_ll));
814 lf_ptr->prev = NULL; 814 lf_ptr->prev = NULL;
815 lf_ptr->next = lf_head; 815 lf_ptr->next = lf_head;
816 lf_ptr->parent = desc_rec.parent_id; 816 lf_ptr->parent = desc_rec.parent_id;
817 lf_ptr->ptr = d_ptr; 817 lf_ptr->ptr = d_ptr;
818 lf_head = lf_ptr; 818 lf_head = lf_ptr;
819 } else { 819 } else {
820 d_par = lf_ptr->ptr; 820 d_par = lf_ptr->ptr;
821 DEBUG_INDEX(("Found parent (%#x) in Lost and Found\n", d_par->id)); 821 DEBUG_INDEX(("Found parent (%#x) in Lost and Found\n", d_par->id));
822 } 822 }
823 } 823 }
824 824
825 if (d_ptr_ptr != NULL || d_par != NULL) { 825 if (d_ptr_ptr != NULL || d_par != NULL) {
826 if (d_ptr_ptr != NULL) 826 if (d_ptr_ptr != NULL)
827 d_par = d_ptr_ptr->ptr; 827 d_par = d_ptr_ptr->ptr;
828 else { 828 else {
829 //add the d_par to the cache 829 //add the d_par to the cache
830 DEBUG_INDEX(("Update - Cache addition\n")); 830 DEBUG_INDEX(("Update - Cache addition\n"));
831 d_ptr_ptr = (struct _pst_d_ptr_ll*) xmalloc(sizeof(struct _pst_d_ptr_ll)); 831 d_ptr_ptr = (struct _pst_d_ptr_ll*) xmalloc(sizeof(struct _pst_d_ptr_ll));
832 d_ptr_ptr->prev = NULL; 832 d_ptr_ptr->prev = NULL;
833 d_ptr_ptr->next = d_ptr_head; 833 d_ptr_ptr->next = d_ptr_head;
834 d_ptr_ptr->ptr = d_par; 834 d_ptr_ptr->ptr = d_par;
835 d_ptr_head = d_ptr_ptr; 835 d_ptr_head = d_ptr_ptr;
836 if (d_ptr_tail == NULL) 836 if (d_ptr_tail == NULL)
837 d_ptr_tail = d_ptr_ptr; 837 d_ptr_tail = d_ptr_ptr;
838 d_ptr_count++; 838 d_ptr_count++;
839 if (d_ptr_count > 100) { 839 if (d_ptr_count > 100) {
840 //remove on from the end 840 //remove on from the end
841 d_ptr_ptr = d_ptr_tail; 841 d_ptr_ptr = d_ptr_tail;
842 d_ptr_tail = d_ptr_ptr->prev; 842 d_ptr_tail = d_ptr_ptr->prev;
843 free (d_ptr_ptr); 843 free (d_ptr_ptr);
844 d_ptr_count--; 844 d_ptr_count--;
845 } 845 }
846 } 846 }
847 DEBUG_INDEX(("Found a parent\n")); 847 DEBUG_INDEX(("Found a parent\n"));
848 d_par->no_child++; 848 d_par->no_child++;
849 d_ptr->parent = d_par; 849 d_ptr->parent = d_par;
850 if (d_par->child_tail != NULL) 850 if (d_par->child_tail != NULL)
851 d_par->child_tail->next = d_ptr; 851 d_par->child_tail->next = d_ptr;
852 if (d_par->child == NULL) 852 if (d_par->child == NULL)
853 d_par->child = d_ptr; 853 d_par->child = d_ptr;
854 d_ptr->prev = d_par->child_tail; 854 d_ptr->prev = d_par->child_tail;
855 d_par->child_tail = d_ptr; 855 d_par->child_tail = d_ptr;
856 } 856 }
857 } 857 }
858 } 858 }
859 859
860 } else { 860 } else {
861 if (*high_id < desc_rec.d_id) { 861 if (*high_id < desc_rec.d_id) {
862 DEBUG_INDEX(("Updating New High\n")); 862 DEBUG_INDEX(("Updating New High\n"));
863 *high_id = desc_rec.d_id; 863 *high_id = desc_rec.d_id;
864 } 864 }
865 DEBUG_INDEX(("New Record\n")); 865 DEBUG_INDEX(("New Record\n"));
866 d_ptr = (pst_desc_ll*) xmalloc(sizeof(pst_desc_ll)); 866 d_ptr = (pst_desc_ll*) xmalloc(sizeof(pst_desc_ll));
867 // DEBUG_INDEX(("Item pointer is %p\n", d_ptr)); 867 // DEBUG_INDEX(("Item pointer is %p\n", d_ptr));
868 d_ptr->id = desc_rec.d_id; 868 d_ptr->id = desc_rec.d_id;
869 d_ptr->list_index = _pst_getID(pf, desc_rec.list_id); 869 d_ptr->list_index = _pst_getID(pf, desc_rec.list_id);
870 d_ptr->desc = _pst_getID(pf, desc_rec.desc_id); 870 d_ptr->desc = _pst_getID(pf, desc_rec.desc_id);
871 d_ptr->prev = NULL; 871 d_ptr->prev = NULL;
872 d_ptr->next = NULL; 872 d_ptr->next = NULL;
873 d_ptr->parent = NULL; 873 d_ptr->parent = NULL;
874 d_ptr->child = NULL; 874 d_ptr->child = NULL;
875 d_ptr->child_tail = NULL; 875 d_ptr->child_tail = NULL;
876 d_ptr->no_child = 0; 876 d_ptr->no_child = 0;
877 877
878 DEBUG_INDEX(("Searching for parent\n")); 878 DEBUG_INDEX(("Searching for parent\n"));
879 if (desc_rec.parent_id == 0 || desc_rec.parent_id == desc_rec.d_id) { 879 if (desc_rec.parent_id == 0 || desc_rec.parent_id == desc_rec.d_id) {
880 if (desc_rec.parent_id == 0) { 880 if (desc_rec.parent_id == 0) {
881 DEBUG_INDEX(("No Parent\n")); 881 DEBUG_INDEX(("No Parent\n"));
882 } else { 882 } else {
883 DEBUG_INDEX(("Record is its own parent. What is this world coming to?\n")); 883 DEBUG_INDEX(("Record is its own parent. What is this world coming to?\n"));
884 } 884 }
885 if (pf->d_tail != NULL) 885 if (pf->d_tail != NULL)
886 pf->d_tail->next = d_ptr; 886 pf->d_tail->next = d_ptr;
887 if (pf->d_head == NULL) 887 if (pf->d_head == NULL)
888 pf->d_head = d_ptr; 888 pf->d_head = d_ptr;
889 d_ptr->prev = pf->d_tail; 889 d_ptr->prev = pf->d_tail;
890 pf->d_tail = d_ptr; 890 pf->d_tail = d_ptr;
891 } else { 891 } else {
892 d_ptr_ptr = d_ptr_head; 892 d_ptr_ptr = d_ptr_head;
893 while (d_ptr_ptr != NULL && d_ptr_ptr->ptr->id != desc_rec.parent_id) { 893 while (d_ptr_ptr != NULL && d_ptr_ptr->ptr->id != desc_rec.parent_id) {
894 d_ptr_ptr = d_ptr_ptr->next; 894 d_ptr_ptr = d_ptr_ptr->next;
895 } 895 }
896 896
897 if (d_ptr_ptr == NULL && (d_par = _pst_getDptr(pf, desc_rec.parent_id)) == NULL) { 897 if (d_ptr_ptr == NULL && (d_par = _pst_getDptr(pf, desc_rec.parent_id)) == NULL) {
898 // check in the lost/found list 898 // check in the lost/found list
899 lf_ptr = lf_head; 899 lf_ptr = lf_head;
900 while (lf_ptr != NULL && lf_ptr->ptr->id != desc_rec.parent_id) { 900 while (lf_ptr != NULL && lf_ptr->ptr->id != desc_rec.parent_id) {
901 lf_ptr = lf_ptr->next; 901 lf_ptr = lf_ptr->next;
902 } 902 }
903 if (lf_ptr == NULL) { 903 if (lf_ptr == NULL) {
904 DEBUG_WARN(("ERROR -- not found parent with id %#x. Adding to lost/found\n", desc_rec.parent_id)); 904 DEBUG_WARN(("ERROR -- not found parent with id %#x. Adding to lost/found\n", desc_rec.parent_id));
905 lf_ptr = (struct _pst_d_ptr_ll*) xmalloc(sizeof(struct _pst_d_ptr_ll)); 905 lf_ptr = (struct _pst_d_ptr_ll*) xmalloc(sizeof(struct _pst_d_ptr_ll));
906 lf_ptr->prev = NULL; 906 lf_ptr->prev = NULL;
907 lf_ptr->next = lf_head; 907 lf_ptr->next = lf_head;
908 lf_ptr->parent = desc_rec.parent_id; 908 lf_ptr->parent = desc_rec.parent_id;
909 lf_ptr->ptr = d_ptr; 909 lf_ptr->ptr = d_ptr;
910 lf_head = lf_ptr; 910 lf_head = lf_ptr;
911 } else { 911 } else {
912 d_par = lf_ptr->ptr; 912 d_par = lf_ptr->ptr;
913 DEBUG_INDEX(("Found parent (%#x) in Lost and Found\n", d_par->id)); 913 DEBUG_INDEX(("Found parent (%#x) in Lost and Found\n", d_par->id));
914 } 914 }
915 } 915 }
916 916
917 if (d_ptr_ptr != NULL || d_par != NULL) { 917 if (d_ptr_ptr != NULL || d_par != NULL) {
918 if (d_ptr_ptr != NULL) 918 if (d_ptr_ptr != NULL)
919 d_par = d_ptr_ptr->ptr; 919 d_par = d_ptr_ptr->ptr;
920 else { 920 else {
921 //add the d_par to the cache 921 //add the d_par to the cache
922 DEBUG_INDEX(("Normal - Cache addition\n")); 922 DEBUG_INDEX(("Normal - Cache addition\n"));
923 d_ptr_ptr = (struct _pst_d_ptr_ll*) xmalloc(sizeof(struct _pst_d_ptr_ll)); 923 d_ptr_ptr = (struct _pst_d_ptr_ll*) xmalloc(sizeof(struct _pst_d_ptr_ll));
924 d_ptr_ptr->prev = NULL; 924 d_ptr_ptr->prev = NULL;
925 d_ptr_ptr->next = d_ptr_head; 925 d_ptr_ptr->next = d_ptr_head;
926 d_ptr_ptr->ptr = d_par; 926 d_ptr_ptr->ptr = d_par;
927 d_ptr_head = d_ptr_ptr; 927 d_ptr_head = d_ptr_ptr;
928 if (d_ptr_tail == NULL) 928 if (d_ptr_tail == NULL)
929 d_ptr_tail = d_ptr_ptr; 929 d_ptr_tail = d_ptr_ptr;
930 d_ptr_count++; 930 d_ptr_count++;
931 if (d_ptr_count > 100) { 931 if (d_ptr_count > 100) {
932 //remove one from the end 932 //remove one from the end
933 d_ptr_ptr = d_ptr_tail; 933 d_ptr_ptr = d_ptr_tail;
934 d_ptr_tail = d_ptr_ptr->prev; 934 d_ptr_tail = d_ptr_ptr->prev;
935 free (d_ptr_ptr); 935 free (d_ptr_ptr);
936 d_ptr_count--; 936 d_ptr_count--;
937 } 937 }
938 } 938 }
939 939
940 DEBUG_INDEX(("Found a parent\n")); 940 DEBUG_INDEX(("Found a parent\n"));
941 d_par->no_child++; 941 d_par->no_child++;
942 d_ptr->parent = d_par; 942 d_ptr->parent = d_par;
943 if (d_par->child_tail != NULL) 943 if (d_par->child_tail != NULL)
944 d_par->child_tail->next = d_ptr; 944 d_par->child_tail->next = d_ptr;
945 if (d_par->child == NULL) 945 if (d_par->child == NULL)
946 d_par->child = d_ptr; 946 d_par->child = d_ptr;
947 d_ptr->prev = d_par->child_tail; 947 d_ptr->prev = d_par->child_tail;
948 d_par->child_tail = d_ptr; 948 d_par->child_tail = d_ptr;
949 } 949 }
950 } 950 }
951 } 951 }
952 // check here to see if d_ptr is the parent of any of the items in the lost / found list 952 // check here to see if d_ptr is the parent of any of the items in the lost / found list
953 lf_ptr = lf_head; lf_shd = NULL; 953 lf_ptr = lf_head; lf_shd = NULL;
954 while (lf_ptr != NULL) { 954 while (lf_ptr != NULL) {
955 if (lf_ptr->parent == d_ptr->id) { 955 if (lf_ptr->parent == d_ptr->id) {
956 DEBUG_INDEX(("Found a child (%#x) of the current record. Joining to main structure.\n", lf_ptr->ptr->id)); 956 DEBUG_INDEX(("Found a child (%#x) of the current record. Joining to main structure.\n", lf_ptr->ptr->id));
957 d_par = d_ptr; 957 d_par = d_ptr;
958 d_ptr = lf_ptr->ptr; 958 d_ptr = lf_ptr->ptr;
959 959
960 d_par->no_child++; 960 d_par->no_child++;
961 d_ptr->parent = d_par; 961 d_ptr->parent = d_par;
962 if (d_par->child_tail != NULL) 962 if (d_par->child_tail != NULL)
963 d_par->child_tail->next = d_ptr; 963 d_par->child_tail->next = d_ptr;
964 if (d_par->child == NULL) 964 if (d_par->child == NULL)
965 d_par->child = d_ptr; 965 d_par->child = d_ptr;
966 d_ptr->prev = d_par->child_tail; 966 d_ptr->prev = d_par->child_tail;
967 d_par->child_tail = d_ptr; 967 d_par->child_tail = d_ptr;
968 if (lf_shd == NULL) 968 if (lf_shd == NULL)
969 lf_head = lf_ptr->next; 969 lf_head = lf_ptr->next;
970 else 970 else
971 lf_shd->next = lf_ptr->next; 971 lf_shd->next = lf_ptr->next;
972 lf_tmp = lf_ptr->next; 972 lf_tmp = lf_ptr->next;
973 free(lf_ptr); 973 free(lf_ptr);
974 lf_ptr = lf_tmp; 974 lf_ptr = lf_tmp;
975 } else { 975 } else {
976 lf_shd = lf_ptr; 976 lf_shd = lf_ptr;
977 lf_ptr = lf_ptr->next; 977 lf_ptr = lf_ptr->next;
978 } 978 }
979 } 979 }
980 memcpy(&desc_rec, bptr, sizeof(desc_rec)); 980 memcpy(&desc_rec, bptr, sizeof(desc_rec));
981 LE32_CPU(desc_rec.d_id); 981 LE32_CPU(desc_rec.d_id);
982 LE32_CPU(desc_rec.desc_id); 982 LE32_CPU(desc_rec.desc_id);
983 LE32_CPU(desc_rec.list_id); 983 LE32_CPU(desc_rec.list_id);
1012 return -1; 1012 return -1;
1013 } 1013 }
1014 1014
1015 y = 0; 1015 y = 0;
1016 while(table.start != 0 /*&& y < 0x1F && table.start < end_val*/) { 1016 while(table.start != 0 /*&& y < 0x1F && table.start < end_val*/) {
1017 DEBUG_INDEX(("[%i] %i Pointer Table = [start = %#x, u1 = %#x, offset = %#x]\n", 1017 DEBUG_INDEX(("[%i] %i Pointer Table = [start = %#x, u1 = %#x, offset = %#x]\n",
1018 depth, ++y, table.start, table.u1, table.offset)); 1018 depth, ++y, table.start, table.u1, table.offset));
1019 1019
1020 1020
1021 if (table2.start <= table.start) { 1021 if (table2.start <= table.start) {
1022 // for the end of our table, table2.start may equal 0 1022 // for the end of our table, table2.start may equal 0
1023 DEBUG_WARN(("2nd value in index table is less than current value. Setting to higher value [%#x, %#x, %#x]\n", 1023 DEBUG_WARN(("2nd value in index table is less than current value. Setting to higher value [%#x, %#x, %#x]\n",
1024 table.start, table2.start, INT32_MAX)); 1024 table.start, table2.start, INT32_MAX));
1025 table2.start = INT32_MAX; 1025 table2.start = INT32_MAX;
1026 } 1026 }
1027 1027
1028 if ((i = _pst_build_desc_ptr(pf, table.offset, depth+1, high_id, table.start, table2.start)) == -1 && pf->desc_depth_ok == 0) { //the table beneath isn't a table 1028 if ((i = _pst_build_desc_ptr(pf, table.offset, depth+1, high_id, table.start, table2.start)) == -1 && pf->desc_depth_ok == 0) { //the table beneath isn't a table
1029 pf->index2_depth = depth; //set the max depth to this level 1029 pf->index2_depth = depth; //set the max depth to this level
1030 if (buf) free(buf); 1030 if (buf) free(buf);
1031 DEBUG_RET(); 1031 DEBUG_RET();
1032 return 4; 1032 return 4;
1033 } else if (i == 4) { //repeat with last tried values, but lower depth 1033 } else if (i == 4) { //repeat with last tried values, but lower depth
1034 _pst_build_desc_ptr(pf, table.offset, depth+1, high_id, table.start, table2.start); 1034 _pst_build_desc_ptr(pf, table.offset, depth+1, high_id, table.start, table2.start);
1035 } 1035 }
1036 1036
1037 memcpy(&table, bptr, sizeof(table)); 1037 memcpy(&table, bptr, sizeof(table));
1038 LE32_CPU(table.start); 1038 LE32_CPU(table.start);
1039 LE32_CPU(table.u1); 1039 LE32_CPU(table.u1);
1142 // we must now read the secondary record for each based on the id2 val associated with 1142 // we must now read the secondary record for each based on the id2 val associated with
1143 // each attachment 1143 // each attachment
1144 attach = item->attach; 1144 attach = item->attach;
1145 while (attach != NULL) { 1145 while (attach != NULL) {
1146 if ((id_ptr = _pst_getID2(id2_head, attach->id2_val)) != NULL) { 1146 if ((id_ptr = _pst_getID2(id2_head, attach->id2_val)) != NULL) {
1147 // id_ptr is a record describing the attachment 1147 // id_ptr is a record describing the attachment
1148 // we pass NULL instead of id2_head cause we don't want it to 1148 // we pass NULL instead of id2_head cause we don't want it to
1149 // load all the extra stuff here. 1149 // load all the extra stuff here.
1150 if ((list = _pst_parse_block(pf, id_ptr->id, NULL)) == NULL) { 1150 if ((list = _pst_parse_block(pf, id_ptr->id, NULL)) == NULL) {
1151 DEBUG_WARN(("ERROR error processing an attachment record\n")); 1151 DEBUG_WARN(("ERROR error processing an attachment record\n"));
1152 attach = attach->next; 1152 attach = attach->next;
1153 continue; 1153 continue;
1154 } 1154 }
1155 item->current_attach = attach; 1155 item->current_attach = attach;
1156 if (_pst_process(list, item)) { 1156 if (_pst_process(list, item)) {
1157 DEBUG_WARN(("ERROR _pst_process() failed with an attachment\n")); 1157 DEBUG_WARN(("ERROR _pst_process() failed with an attachment\n"));
1158 _pst_free_list(list); 1158 _pst_free_list(list);
1159 attach = attach->next; 1159 attach = attach->next;
1160 continue; 1160 continue;
1161 } 1161 }
1162 _pst_free_list(list); 1162 _pst_free_list(list);
1163 if ((id_ptr = _pst_getID2(id2_head, attach->id2_val)) != NULL) { 1163 if ((id_ptr = _pst_getID2(id2_head, attach->id2_val)) != NULL) {
1164 // id2_val has been updated to the ID2 value of the datablock containing the 1164 // id2_val has been updated to the ID2 value of the datablock containing the
1165 // attachment data 1165 // attachment data
1166 attach->id_val = id_ptr->id; 1166 attach->id_val = id_ptr->id;
1167 } else { 1167 } else {
1168 DEBUG_WARN(("have not located the correct value for the attachment [%#x]\n", 1168 DEBUG_WARN(("have not located the correct value for the attachment [%#x]\n",
1169 attach->id2_val)); 1169 attach->id2_val));
1170 } 1170 }
1171 } else { 1171 } else {
1172 DEBUG_WARN(("ERROR cannot locate id2 value %#x\n", attach->id2_val)); 1172 DEBUG_WARN(("ERROR cannot locate id2 value %#x\n", attach->id2_val));
1173 } 1173 }
1174 attach = attach->next; 1174 attach = attach->next;
1175 } 1175 }
1176 item->current_attach = item->attach; //reset back to first 1176 item->current_attach = item->attach; //reset back to first
1177 } 1177 }
1252 LE16_CPU(block_hdr.type); 1252 LE16_CPU(block_hdr.type);
1253 LE16_CPU(block_hdr.offset); 1253 LE16_CPU(block_hdr.offset);
1254 DEBUG_EMAIL(("block header (index_offset=%#hx, type=%#hx, offset=%#hx\n", block_hdr.index_offset, block_hdr.type, block_hdr.offset)); 1254 DEBUG_EMAIL(("block header (index_offset=%#hx, type=%#hx, offset=%#hx\n", block_hdr.index_offset, block_hdr.type, block_hdr.offset));
1255 1255
1256 ind_ptr = block_hdr.index_offset; 1256 ind_ptr = block_hdr.index_offset;
1257 1257
1258 if (block_hdr.type == 0xBCEC) { //type 1 1258 if (block_hdr.type == 0xBCEC) { //type 1
1259 block_type = 1; 1259 block_type = 1;
1260 1260
1261 _pst_getBlockOffset(buf, ind_ptr, block_hdr.offset, &block_offset); 1261 _pst_getBlockOffset(buf, ind_ptr, block_hdr.offset, &block_offset);
1262 fr_ptr = block_offset.from; 1262 fr_ptr = block_offset.from;
1263 1263
1264 memcpy(&table_rec, &(buf[fr_ptr]), sizeof(table_rec)); 1264 memcpy(&table_rec, &(buf[fr_ptr]), sizeof(table_rec));
1265 LE16_CPU(table_rec.type); 1265 LE16_CPU(table_rec.type);
1266 LE16_CPU(table_rec.ref_type); 1266 LE16_CPU(table_rec.ref_type);
1267 LE32_CPU(table_rec.value); 1267 LE32_CPU(table_rec.value);
1268 DEBUG_EMAIL(("table_rec (type=%#hx, ref_type=%#hx, value=%#x\n", table_rec.type, table_rec.ref_type, table_rec.value)); 1268 DEBUG_EMAIL(("table_rec (type=%#hx, ref_type=%#hx, value=%#x\n", table_rec.type, table_rec.ref_type, table_rec.value));
1281 num_list = (to_ptr - fr_ptr)/sizeof(table_rec); 1281 num_list = (to_ptr - fr_ptr)/sizeof(table_rec);
1282 num_recs = 1; // only going to one object in these blocks 1282 num_recs = 1; // only going to one object in these blocks
1283 rec_size = 0; // doesn't matter cause there is only one object 1283 rec_size = 0; // doesn't matter cause there is only one object
1284 } else if (block_hdr.type == 0x7CEC) { //type 2 1284 } else if (block_hdr.type == 0x7CEC) { //type 2
1285 block_type = 2; 1285 block_type = 2;
1286 1286
1287 _pst_getBlockOffset(buf, ind_ptr, block_hdr.offset, &block_offset); 1287 _pst_getBlockOffset(buf, ind_ptr, block_hdr.offset, &block_offset);
1288 fr_ptr = block_offset.from; //now got pointer to "7C block" 1288 fr_ptr = block_offset.from; //now got pointer to "7C block"
1289 memset(&seven_c_blk, 0, sizeof(seven_c_blk)); 1289 memset(&seven_c_blk, 0, sizeof(seven_c_blk));
1290 memcpy(&seven_c_blk, &(buf[fr_ptr]), sizeof(seven_c_blk)); 1290 memcpy(&seven_c_blk, &(buf[fr_ptr]), sizeof(seven_c_blk));
1291 LE16_CPU(seven_c_blk.u1); 1291 LE16_CPU(seven_c_blk.u1);
1335 return NULL; 1335 return NULL;
1336 } 1336 }
1337 1337
1338 _pst_getBlockOffset(buf, ind_ptr, table_rec.value, &block_offset); 1338 _pst_getBlockOffset(buf, ind_ptr, table_rec.value, &block_offset);
1339 num_recs = (block_offset.to - block_offset.from) / 6; // this will give the number of records in this block 1339 num_recs = (block_offset.to - block_offset.from) / 6; // this will give the number of records in this block
1340 1340
1341 _pst_getBlockOffset(buf, ind_ptr, seven_c_blk.ind2_offset, &block_offset); 1341 _pst_getBlockOffset(buf, ind_ptr, seven_c_blk.ind2_offset, &block_offset);
1342 ind2_ptr = block_offset.from; 1342 ind2_ptr = block_offset.from;
1343 } else { 1343 } else {
1344 WARN(("ERROR: Unknown block constant - %#X for id %#x\n", block_hdr.type, block_id)); 1344 WARN(("ERROR: Unknown block constant - %#X for id %#x\n", block_hdr.type, block_id));
1345 DEBUG_HEXDUMPC(buf, read_size,0x10); 1345 DEBUG_HEXDUMPC(buf, read_size,0x10);
1371 fr_ptr = list_start; // init fr_ptr to the start of the list. 1371 fr_ptr = list_start; // init fr_ptr to the start of the list.
1372 cur_list = 0; 1372 cur_list = 0;
1373 stop = 0; 1373 stop = 0;
1374 while (!stop && cur_list < num_list) { //we will increase fr_ptr as we progress through index 1374 while (!stop && cur_list < num_list) { //we will increase fr_ptr as we progress through index
1375 if (block_type == 1) { 1375 if (block_type == 1) {
1376 memcpy(&table_rec, &(buf[fr_ptr]), sizeof(table_rec)); 1376 memcpy(&table_rec, &(buf[fr_ptr]), sizeof(table_rec));
1377 LE16_CPU(table_rec.type); 1377 LE16_CPU(table_rec.type);
1378 LE16_CPU(table_rec.ref_type); 1378 LE16_CPU(table_rec.ref_type);
1379 fr_ptr += sizeof(table_rec); 1379 fr_ptr += sizeof(table_rec);
1380 } else if (block_type == 2) { 1380 } else if (block_type == 2) {
1381 // we will copy the table2_rec values into a table_rec record so that we can keep the rest of the code 1381 // we will copy the table2_rec values into a table_rec record so that we can keep the rest of the code
1382 memcpy(&table2_rec, &(buf[fr_ptr]), sizeof(table2_rec)); 1382 memcpy(&table2_rec, &(buf[fr_ptr]), sizeof(table2_rec));
1383 LE16_CPU(table2_rec.ref_type); 1383 LE16_CPU(table2_rec.ref_type);
1384 LE16_CPU(table2_rec.type); 1384 LE16_CPU(table2_rec.type);
1385 LE16_CPU(table2_rec.ind2_off); 1385 LE16_CPU(table2_rec.ind2_off);
1386 LE16_CPU(table2_rec.u1); 1386 LE16_CPU(table2_rec.u1);
1387 1387
1388 // table_rec and table2_rec are arranged differently, so assign the values across 1388 // table_rec and table2_rec are arranged differently, so assign the values across
1389 table_rec.type = table2_rec.type; 1389 table_rec.type = table2_rec.type;
1390 table_rec.ref_type = table2_rec.ref_type; 1390 table_rec.ref_type = table2_rec.ref_type;
1391 if (ind2_ptr+table2_rec.ind2_off > 0 && 1391 if (ind2_ptr+table2_rec.ind2_off > 0 &&
1392 ind2_ptr+table2_rec.ind2_off < read_size-sizeof(table_rec.value)) 1392 ind2_ptr+table2_rec.ind2_off < read_size-sizeof(table_rec.value))
1393 memcpy(&(table_rec.value), &(buf[ind2_ptr+table2_rec.ind2_off]), sizeof(table_rec.value)); 1393 memcpy(&(table_rec.value), &(buf[ind2_ptr+table2_rec.ind2_off]), sizeof(table_rec.value));
1394 else { 1394 else {
1395 DEBUG_WARN (("trying to read more than blocks size. Size=%#x, Req.=%#x," 1395 DEBUG_WARN (("trying to read more than blocks size. Size=%#x, Req.=%#x,"
1396 " Req Size=%#x\n", read_size, ind2_ptr+table2_rec.ind2_off, 1396 " Req Size=%#x\n", read_size, ind2_ptr+table2_rec.ind2_off,
1397 sizeof(table_rec.value))); 1397 sizeof(table_rec.value)));
1398 } 1398 }
1399 1399
1400 fr_ptr += sizeof(table2_rec); 1400 fr_ptr += sizeof(table2_rec);
1401 } else { 1401 } else {
1402 WARN(("Missing code for block_type %i\n", block_type)); 1402 WARN(("Missing code for block_type %i\n", block_type));
1403 if (buf) free(buf); 1403 if (buf) free(buf);
1404 DEBUG_RET(); 1404 DEBUG_RET();
1405 return NULL; 1405 return NULL;
1406 } 1406 }
1407 cur_list++; // get ready to read next bit from list 1407 cur_list++; // get ready to read next bit from list
1408 DEBUG_EMAIL(("reading block %i (type=%#x, ref_type=%#x, value=%#x)\n", 1408 DEBUG_EMAIL(("reading block %i (type=%#x, ref_type=%#x, value=%#x)\n",
1409 x, table_rec.type, table_rec.ref_type, table_rec.value)); 1409 x, table_rec.type, table_rec.ref_type, table_rec.value));
1410 1410
1411 na_ptr->items[x] = (struct _pst_num_item*) xmalloc(sizeof(struct _pst_num_item)); 1411 na_ptr->items[x] = (struct _pst_num_item*) xmalloc(sizeof(struct _pst_num_item));
1412 // DEBUG_EMAIL(("_pst_parse_block: record address = %p\n", na_ptr->items[x])); 1412 // DEBUG_EMAIL(("_pst_parse_block: record address = %p\n", na_ptr->items[x]));
1413 memset(na_ptr->items[x], 0, sizeof(struct _pst_num_item)); //init it 1413 memset(na_ptr->items[x], 0, sizeof(struct _pst_num_item)); //init it
1414 1414
1415 // check here to see if the id of the attribute is a mapped one 1415 // check here to see if the id of the attribute is a mapped one
1416 mapptr = pf->x_head; 1416 mapptr = pf->x_head;
1417 while (mapptr != NULL && mapptr->map < table_rec.type) 1417 while (mapptr != NULL && mapptr->map < table_rec.type)
1418 mapptr = mapptr->next; 1418 mapptr = mapptr->next;
1419 if (mapptr != NULL && mapptr->map == table_rec.type) { 1419 if (mapptr != NULL && mapptr->map == table_rec.type) {
1420 if (mapptr->mytype == PST_MAP_ATTRIB) { 1420 if (mapptr->mytype == PST_MAP_ATTRIB) {
1421 na_ptr->items[x]->id = *((int*)mapptr->data); 1421 na_ptr->items[x]->id = *((int*)mapptr->data);
1422 DEBUG_EMAIL(("Mapped attrib %#x to %#x\n", table_rec.type, na_ptr->items[x]->id)); 1422 DEBUG_EMAIL(("Mapped attrib %#x to %#x\n", table_rec.type, na_ptr->items[x]->id));
1423 } else if (mapptr->mytype == PST_MAP_HEADER) { 1423 } else if (mapptr->mytype == PST_MAP_HEADER) {
1424 DEBUG_EMAIL(("Internet Header mapping found %#x\n", table_rec.type)); 1424 DEBUG_EMAIL(("Internet Header mapping found %#x\n", table_rec.type));
1425 na_ptr->items[x]->id = PST_ATTRIB_HEADER; 1425 na_ptr->items[x]->id = PST_ATTRIB_HEADER;
1426 na_ptr->items[x]->extra = mapptr->data; 1426 na_ptr->items[x]->extra = mapptr->data;
1427 } 1427 }
1428 } else { 1428 } else {
1429 na_ptr->items[x]->id = table_rec.type; 1429 na_ptr->items[x]->id = table_rec.type;
1430 } 1430 }
1431 na_ptr->items[x]->type = 0; // checked later before it is set 1431 na_ptr->items[x]->type = 0; // checked later before it is set
1432 /* Reference Types 1432 /* Reference Types
1433 1433
1434 2 - 0x0002 - Signed 16bit value 1434 2 - 0x0002 - Signed 16bit value
1435 3 - 0x0003 - Signed 32bit value 1435 3 - 0x0003 - Signed 32bit value
1436 4 - 0x0004 - 4-byte floating point 1436 4 - 0x0004 - 4-byte floating point
1437 5 - 0x0005 - Floating point double 1437 5 - 0x0005 - Floating point double
1438 6 - 0x0006 - Signed 64-bit int 1438 6 - 0x0006 - Signed 64-bit int
1439 7 - 0x0007 - Application Time 1439 7 - 0x0007 - Application Time
1440 10 - 0x000A - 32-bit error value 1440 10 - 0x000A - 32-bit error value
1441 11 - 0x000B - Boolean (non-zero = true) 1441 11 - 0x000B - Boolean (non-zero = true)
1442 13 - 0x000D - Embedded Object 1442 13 - 0x000D - Embedded Object
1443 20 - 0x0014 - 8-byte signed integer (64-bit) 1443 20 - 0x0014 - 8-byte signed integer (64-bit)
1444 30 - 0x001E - Null terminated String 1444 30 - 0x001E - Null terminated String
1445 31 - 0x001F - Unicode string 1445 31 - 0x001F - Unicode string
1446 64 - 0x0040 - Systime - Filetime structure 1446 64 - 0x0040 - Systime - Filetime structure
1447 72 - 0x0048 - OLE Guid 1447 72 - 0x0048 - OLE Guid
1448 258 - 0x0102 - Binary data 1448 258 - 0x0102 - Binary data
1449 1449
1450 - 0x1003 - Array of 32bit values 1450 - 0x1003 - Array of 32bit values
1451 - 0x1014 - Array of 64bit values 1451 - 0x1014 - Array of 64bit values
1452 - 0x101E - Array of Strings 1452 - 0x101E - Array of Strings
1453 - 0x1102 - Array of Binary data 1453 - 0x1102 - Array of Binary data
1454 */ 1454 */
1455 1455
1456 if (table_rec.ref_type == 0x0003 || table_rec.ref_type == 0x000b 1456 if (table_rec.ref_type == 0x0003 || table_rec.ref_type == 0x000b
1457 || table_rec.ref_type == 0x0002) { //contains data 1457 || table_rec.ref_type == 0x0002) { //contains data
1458 na_ptr->items[x]->data = xmalloc(sizeof(int32_t)); 1458 na_ptr->items[x]->data = xmalloc(sizeof(int32_t));
1459 memcpy(na_ptr->items[x]->data, &(table_rec.value), sizeof(int32_t)); 1459 memcpy(na_ptr->items[x]->data, &(table_rec.value), sizeof(int32_t));
1460 1460
1461 na_ptr->items[x]->size = sizeof(int32_t); 1461 na_ptr->items[x]->size = sizeof(int32_t);
1462 na_ptr->items[x]->type = table_rec.ref_type; 1462 na_ptr->items[x]->type = table_rec.ref_type;
1463 1463
1464 } else if (table_rec.ref_type == 0x0005 || table_rec.ref_type == 0x000D 1464 } else if (table_rec.ref_type == 0x0005 || table_rec.ref_type == 0x000D
1465 || table_rec.ref_type == 0x1003 || table_rec.ref_type == 0x0014 1465 || table_rec.ref_type == 0x1003 || table_rec.ref_type == 0x0014
1466 || table_rec.ref_type == 0x001E || table_rec.ref_type == 0x0102 1466 || table_rec.ref_type == 0x001E || table_rec.ref_type == 0x0102
1467 || table_rec.ref_type == 0x0040 || table_rec.ref_type == 0x101E 1467 || table_rec.ref_type == 0x0040 || table_rec.ref_type == 0x101E
1468 || table_rec.ref_type == 0x0048 || table_rec.ref_type == 0x1102 1468 || table_rec.ref_type == 0x0048 || table_rec.ref_type == 0x1102
1469 || table_rec.ref_type == 0x1014) { 1469 || table_rec.ref_type == 0x1014) {
1470 //contains index_ref to data 1470 //contains index_ref to data
1471 LE32_CPU(table_rec.value); 1471 LE32_CPU(table_rec.value);
1472 if ((table_rec.value & 0x0000000F) == 0xF) { 1472 if ((table_rec.value & 0x0000000F) == 0xF) {
1473 // if value ends in 'F' then this should be an id2 value 1473 // if value ends in 'F' then this should be an id2 value
1474 DEBUG_EMAIL(("Found id2 [%#x] value. Will follow it\n", 1474 DEBUG_EMAIL(("Found id2 [%#x] value. Will follow it\n",
1475 table_rec.value)); 1475 table_rec.value));
1476 if ((na_ptr->items[x]->size = _pst_ff_getID2block(pf, table_rec.value, i2_head, 1476 if ((na_ptr->items[x]->size = _pst_ff_getID2block(pf, table_rec.value, i2_head,
1477 &(na_ptr->items[x]->data)))==0) { 1477 &(na_ptr->items[x]->data)))==0) {
1478 DEBUG_WARN(("not able to read the ID2 data. Setting to be read later. %#x\n", 1478 DEBUG_WARN(("not able to read the ID2 data. Setting to be read later. %#x\n",
1479 table_rec.value)); 1479 table_rec.value));
1480 na_ptr->items[x]->size = 0; 1480 na_ptr->items[x]->size = 0;
1481 na_ptr->items[x]->data = NULL; 1481 na_ptr->items[x]->data = NULL;
1482 na_ptr->items[x]->type = table_rec.value; 1482 na_ptr->items[x]->type = table_rec.value;
1483 } 1483 }
1484 DEBUG_EMAIL(("Read %i bytes to a buffer at %p\n", 1484 DEBUG_EMAIL(("Read %i bytes to a buffer at %p\n",
1485 na_ptr->items[x]->size, na_ptr->items[x]->data)); 1485 na_ptr->items[x]->size, na_ptr->items[x]->data));
1486 } else if (table_rec.value != 0) { 1486 } else if (table_rec.value != 0) {
1487 if ((table_rec.value >> 4)+ind_ptr > read_size) { 1487 if ((table_rec.value >> 4)+ind_ptr > read_size) {
1488 // check that we will not be outside the buffer we have read 1488 // check that we will not be outside the buffer we have read
1489 DEBUG_WARN(("table_rec.value [%#x] is outside of block [%#x]\n", 1489 DEBUG_WARN(("table_rec.value [%#x] is outside of block [%#x]\n",
1490 table_rec.value, read_size)); 1490 table_rec.value, read_size));
1491 na_ptr->count_item --; 1491 na_ptr->count_item --;
1492 continue; 1492 continue;
1493 } 1493 }
1494 if (_pst_getBlockOffset(buf, ind_ptr, table_rec.value, &block_offset)) { 1494 if (_pst_getBlockOffset(buf, ind_ptr, table_rec.value, &block_offset)) {
1495 DEBUG_WARN(("failed to get block offset for table_rec.value of %#x\n", 1495 DEBUG_WARN(("failed to get block offset for table_rec.value of %#x\n",
1496 table_rec.value)); 1496 table_rec.value));
1497 na_ptr->count_item --; //we will be skipping a row 1497 na_ptr->count_item --; //we will be skipping a row
1498 continue; 1498 continue;
1499 } 1499 }
1500 t_ptr = block_offset.from; 1500 t_ptr = block_offset.from;
1501 if (t_ptr <= block_offset.to) { 1501 if (t_ptr <= block_offset.to) {
1502 na_ptr->items[x]->size = size = block_offset.to - t_ptr; 1502 na_ptr->items[x]->size = size = block_offset.to - t_ptr;
1503 } else {
1504 DEBUG_WARN(("I don't want to malloc less than zero sized block. from=%#x, to=%#x."
1505 "Will change to 1 byte\n", block_offset.from, block_offset.to));
1506 na_ptr->items[x]->size = size = 0; // the malloc statement will add one to this
1507 }
1508
1509 // plus one for good luck (and strings) we will null terminate all reads
1510 na_ptr->items[x]->data = (char*) xmalloc(size+1);
1511 memcpy(na_ptr->items[x]->data, &(buf[t_ptr]), size);
1512 na_ptr->items[x]->data[size] = '\0'; // null terminate buffer
1513
1514 if (table_rec.ref_type == 0xd) {
1515 // there is still more to do for the type of 0xD
1516 type_d_rec = (struct _type_d_rec*) na_ptr->items[x]->data;
1517 LE32_CPU(type_d_rec->id);
1518 if ((na_ptr->items[x]->size =
1519 _pst_ff_getID2block(pf, type_d_rec->id, i2_head,
1520 &(na_ptr->items[x]->data)))==0){
1521 DEBUG_WARN(("not able to read the ID2 data. Setting to be read later. %#x\n",
1522 type_d_rec->id));
1523 na_ptr->items[x]->size = 0;
1524 na_ptr->items[x]->data = NULL;
1525 na_ptr->items[x]->type = type_d_rec->id;
1526 }
1527 DEBUG_EMAIL(("Read %i bytes into a buffer at %p\n",
1528 na_ptr->items[x]->size, na_ptr->items[x]->data));
1529 // }
1530 }
1531 } else {
1532 DEBUG_EMAIL(("Ignoring 0 value in offset\n"));
1533 if (na_ptr->items[x]->data)
1534 free (na_ptr->items[x]->data);
1535 na_ptr->items[x]->data = NULL;
1536
1537 free(na_ptr->items[x]);
1538
1539 na_ptr->count_item--; // remove this item from the destination list
1540 continue;
1541 }
1542 if (na_ptr->items[x]->type == 0) //it can be used to convey information
1543 // to later functions
1544 na_ptr->items[x]->type = table_rec.ref_type;
1545 } else { 1503 } else {
1546 WARN(("ERROR Unknown ref_type %#x\n", table_rec.ref_type)); 1504 DEBUG_WARN(("I don't want to malloc less than zero sized block. from=%#x, to=%#x."
1547 DEBUG_RET(); 1505 "Will change to 1 byte\n", block_offset.from, block_offset.to));
1548 return NULL; 1506 na_ptr->items[x]->size = size = 0; // the malloc statement will add one to this
1507 }
1508
1509 // plus one for good luck (and strings) we will null terminate all reads
1510 na_ptr->items[x]->data = (char*) xmalloc(size+1);
1511 memcpy(na_ptr->items[x]->data, &(buf[t_ptr]), size);
1512 na_ptr->items[x]->data[size] = '\0'; // null terminate buffer
1513
1514 if (table_rec.ref_type == 0xd) {
1515 // there is still more to do for the type of 0xD
1516 type_d_rec = (struct _type_d_rec*) na_ptr->items[x]->data;
1517 LE32_CPU(type_d_rec->id);
1518 if ((na_ptr->items[x]->size =
1519 _pst_ff_getID2block(pf, type_d_rec->id, i2_head,
1520 &(na_ptr->items[x]->data)))==0){
1521 DEBUG_WARN(("not able to read the ID2 data. Setting to be read later. %#x\n",
1522 type_d_rec->id));
1523 na_ptr->items[x]->size = 0;
1524 na_ptr->items[x]->data = NULL;
1525 na_ptr->items[x]->type = type_d_rec->id;
1526 }
1527 DEBUG_EMAIL(("Read %i bytes into a buffer at %p\n",
1528 na_ptr->items[x]->size, na_ptr->items[x]->data));
1529 // }
1530 }
1531 } else {
1532 DEBUG_EMAIL(("Ignoring 0 value in offset\n"));
1533 if (na_ptr->items[x]->data)
1534 free (na_ptr->items[x]->data);
1535 na_ptr->items[x]->data = NULL;
1536
1537 free(na_ptr->items[x]);
1538
1539 na_ptr->count_item--; // remove this item from the destination list
1540 continue;
1541 }
1542 if (na_ptr->items[x]->type == 0) //it can be used to convey information
1543 // to later functions
1544 na_ptr->items[x]->type = table_rec.ref_type;
1545 } else {
1546 WARN(("ERROR Unknown ref_type %#x\n", table_rec.ref_type));
1547 DEBUG_RET();
1548 return NULL;
1549 } 1549 }
1550 x++; 1550 x++;
1551 } 1551 }
1552 DEBUG_EMAIL(("increasing ind2_ptr by %i [%#x] bytes. Was %#x, Now %#x\n", 1552 DEBUG_EMAIL(("increasing ind2_ptr by %i [%#x] bytes. Was %#x, Now %#x\n",
1553 rec_size, rec_size, ind2_ptr, 1553 rec_size, rec_size, ind2_ptr,
1554 ind2_ptr+rec_size)); 1554 ind2_ptr+rec_size));
1555 ind2_ptr += rec_size; 1555 ind2_ptr += rec_size;
1556 count_rec++; 1556 count_rec++;
1557 } 1557 }
1558 if (buf != NULL) 1558 if (buf != NULL)
1559 free(buf); 1559 free(buf);
1593 break;\ 1593 break;\
1594 }\ 1594 }\
1595 next=0;\ 1595 next=0;\
1596 }\ 1596 }\
1597 } 1597 }
1598 1598
1599 int32_t _pst_process(pst_num_array *list , pst_item *item) { 1599 int32_t _pst_process(pst_num_array *list , pst_item *item) {
1600 int32_t x, t; 1600 int32_t x, t;
1601 int32_t next = 0; 1601 int32_t next = 0;
1602 pst_item_attach *attach; 1602 pst_item_attach *attach;
1603 pst_item_extra_field *ef; 1603 pst_item_extra_field *ef;
1613 1613
1614 while (list != NULL) { 1614 while (list != NULL) {
1615 x = 0; 1615 x = 0;
1616 while (x < list->count_item) { 1616 while (x < list->count_item) {
1617 // check here to see if the id is one that is mapped. 1617 // check here to see if the id is one that is mapped.
1618 DEBUG_EMAIL(("#%d - id: %#x type: %#x length: %#x\n", x, list->items[x]->id, list->items[x]->type, 1618 DEBUG_EMAIL(("#%d - id: %#x type: %#x length: %#x\n", x, list->items[x]->id, list->items[x]->type,
1619 list->items[x]->size)); 1619 list->items[x]->size));
1620 1620
1621 switch (list->items[x]->id) { 1621 switch (list->items[x]->id) {
1622 case PST_ATTRIB_HEADER: // CUSTOM attribute for saying the Extra Headers 1622 case PST_ATTRIB_HEADER: // CUSTOM attribute for saying the Extra Headers
1623 DEBUG_EMAIL(("Extra Field - ")); 1623 DEBUG_EMAIL(("Extra Field - "));
1624 ef = (pst_item_extra_field*) xmalloc(sizeof(pst_item_extra_field)); 1624 ef = (pst_item_extra_field*) xmalloc(sizeof(pst_item_extra_field));
1625 memset(ef, 0, sizeof(pst_item_extra_field)); 1625 memset(ef, 0, sizeof(pst_item_extra_field));
1626 ef->field_name = (char*) xmalloc(strlen(list->items[x]->extra)+1); 1626 ef->field_name = (char*) xmalloc(strlen(list->items[x]->extra)+1);
1627 strcpy(ef->field_name, list->items[x]->extra); 1627 strcpy(ef->field_name, list->items[x]->extra);
1628 LIST_COPY(ef->value, (char*)); 1628 LIST_COPY(ef->value, (char*));
1629 ef->next = item->extra_fields; 1629 ef->next = item->extra_fields;
1630 item->extra_fields = ef; 1630 item->extra_fields = ef;
1631 DEBUG_EMAIL(("\"%s\" = \"%s\"\n", ef->field_name, ef->value)); 1631 DEBUG_EMAIL(("\"%s\" = \"%s\"\n", ef->field_name, ef->value));
1632 break; 1632 break;
1633 case 0x0002: // PR_ALTERNATE_RECIPIENT_ALLOWED 1633 case 0x0002: // PR_ALTERNATE_RECIPIENT_ALLOWED
1634 // If set to true, the sender allows this email to be autoforwarded 1634 // If set to true, the sender allows this email to be autoforwarded
1635 DEBUG_EMAIL(("AutoForward allowed - ")); 1635 DEBUG_EMAIL(("AutoForward allowed - "));
1636 MALLOC_EMAIL(item); 1636 MALLOC_EMAIL(item);
1637 if (*((short int*)list->items[x]->data) != 0) { 1637 if (*((short int*)list->items[x]->data) != 0) {
1638 DEBUG_EMAIL(("True\n")); 1638 DEBUG_EMAIL(("True\n"));
1639 item->email->autoforward = 1; 1639 item->email->autoforward = 1;
1640 } else { 1640 } else {
1641 DEBUG_EMAIL(("False\n")); 1641 DEBUG_EMAIL(("False\n"));
1642 item->email->autoforward = -1; 1642 item->email->autoforward = -1;
1643 } 1643 }
1644 // INC_CHECK_X(); 1644 // INC_CHECK_X();
1645 break; 1645 break;
1646 case 0x0003: // Extended Attributes table 1646 case 0x0003: // Extended Attributes table
1647 DEBUG_EMAIL(("Extended Attributes Table - NOT PROCESSED\n")); 1647 DEBUG_EMAIL(("Extended Attributes Table - NOT PROCESSED\n"));
1648 break; 1648 break;
1649 case 0x0017: // PR_IMPORTANCE 1649 case 0x0017: // PR_IMPORTANCE
1650 // How important the sender deems it to be 1650 // How important the sender deems it to be
1651 // 0 - Low 1651 // 0 - Low
1652 // 1 - Normal 1652 // 1 - Normal
1653 // 2 - High 1653 // 2 - High
1654 1654
1655 DEBUG_EMAIL(("Importance Level - ")); 1655 DEBUG_EMAIL(("Importance Level - "));
1656 MALLOC_EMAIL(item); 1656 MALLOC_EMAIL(item);
1657 memcpy(&(item->email->importance), list->items[x]->data, sizeof(item->email->importance)); 1657 memcpy(&(item->email->importance), list->items[x]->data, sizeof(item->email->importance));
1658 LE32_CPU(item->email->importance); 1658 LE32_CPU(item->email->importance);
1659 t = item->email->importance; 1659 t = item->email->importance;
1660 DEBUG_EMAIL(("%s [%i]\n", (t==0?"Low":(t==1?"Normal":"High")), t)); 1660 DEBUG_EMAIL(("%s [%i]\n", (t==0?"Low":(t==1?"Normal":"High")), t));
1661 // INC_CHECK_X(); 1661 // INC_CHECK_X();
1662 break; 1662 break;
1663 case 0x001A: // PR_MESSAGE_CLASS Ascii type of messages - NOT FOLDERS 1663 case 0x001A: // PR_MESSAGE_CLASS Ascii type of messages - NOT FOLDERS
1664 // must be case insensitive 1664 // must be case insensitive
1665 DEBUG_EMAIL(("IPM.x - ")); 1665 DEBUG_EMAIL(("IPM.x - "));
1666 LIST_COPY(item->ascii_type, (char*)); 1666 LIST_COPY(item->ascii_type, (char*));
1667 if (pst_strincmp("IPM.Note", item->ascii_type, 8) == 0) 1667 if (pst_strincmp("IPM.Note", item->ascii_type, 8) == 0)
1668 // the string begins with IPM.Note... 1668 // the string begins with IPM.Note...
1669 item->type = PST_TYPE_NOTE; 1669 item->type = PST_TYPE_NOTE;
1670 else if (pst_stricmp("IPM", item->ascii_type) == 0) 1670 else if (pst_stricmp("IPM", item->ascii_type) == 0)
1671 // the whole string is just IPM 1671 // the whole string is just IPM
1672 item->type = PST_TYPE_NOTE; 1672 item->type = PST_TYPE_NOTE;
1673 else if (pst_strincmp("IPM.Contact", item->ascii_type, 11) == 0) 1673 else if (pst_strincmp("IPM.Contact", item->ascii_type, 11) == 0)
1674 // the string begins with IPM.Contact... 1674 // the string begins with IPM.Contact...
1675 item->type = PST_TYPE_CONTACT; 1675 item->type = PST_TYPE_CONTACT;
1676 else if (pst_strincmp("REPORT.IPM.Note", item->ascii_type, 15) == 0) 1676 else if (pst_strincmp("REPORT.IPM.Note", item->ascii_type, 15) == 0)
1677 // the string begins with the above 1677 // the string begins with the above
1678 item->type = PST_TYPE_REPORT; 1678 item->type = PST_TYPE_REPORT;
1679 else if (pst_strincmp("IPM.Activity", item->ascii_type, 12) == 0) 1679 else if (pst_strincmp("IPM.Activity", item->ascii_type, 12) == 0)
1680 item->type = PST_TYPE_JOURNAL; 1680 item->type = PST_TYPE_JOURNAL;
1681 else if (pst_strincmp("IPM.Appointment", item->ascii_type, 15) == 0) 1681 else if (pst_strincmp("IPM.Appointment", item->ascii_type, 15) == 0)
1682 item->type = PST_TYPE_APPOINTMENT; 1682 item->type = PST_TYPE_APPOINTMENT;
1683 else 1683 else
1684 item->type = PST_TYPE_OTHER; 1684 item->type = PST_TYPE_OTHER;
1685 1685
1686 DEBUG_EMAIL(("%s\n", item->ascii_type)); 1686 DEBUG_EMAIL(("%s\n", item->ascii_type));
1687 // INC_CHECK_X(); //increment x here so that the next if statement has a chance of matching the next item 1687 // INC_CHECK_X(); //increment x here so that the next if statement has a chance of matching the next item
1688 break; 1688 break;
1689 case 0x0023: // PR_ORIGINATOR_DELIVERY_REPORT_REQUESTED 1689 case 0x0023: // PR_ORIGINATOR_DELIVERY_REPORT_REQUESTED
1690 // set if the sender wants a delivery report from all recipients 1690 // set if the sender wants a delivery report from all recipients
1691 DEBUG_EMAIL(("Global Delivery Report - ")); 1691 DEBUG_EMAIL(("Global Delivery Report - "));
1692 MALLOC_EMAIL(item); 1692 MALLOC_EMAIL(item);
1693 if (*(int16_t*)list->items[x]->data != 0) { 1693 if (*(int16_t*)list->items[x]->data != 0) {
1694 DEBUG_EMAIL(("True\n")); 1694 DEBUG_EMAIL(("True\n"));
1695 item->email->delivery_report = 1; 1695 item->email->delivery_report = 1;
1696 } else { 1696 } else {
1697 DEBUG_EMAIL(("False\n")); 1697 DEBUG_EMAIL(("False\n"));
1698 item->email->delivery_report = 0; 1698 item->email->delivery_report = 0;
1699 } 1699 }
1700 // INC_CHECK_X(); 1700 // INC_CHECK_X();
1701 break; 1701 break;
1702 case 0x0026: // PR_PRIORITY 1702 case 0x0026: // PR_PRIORITY
1703 // Priority of a message 1703 // Priority of a message
1704 // -1 NonUrgent 1704 // -1 NonUrgent
1705 // 0 Normal 1705 // 0 Normal
1706 // 1 Urgent 1706 // 1 Urgent
1707 DEBUG_EMAIL(("Priority - ")); 1707 DEBUG_EMAIL(("Priority - "));
1708 MALLOC_EMAIL(item); 1708 MALLOC_EMAIL(item);
1709 memcpy(&(item->email->priority), list->items[x]->data, sizeof(item->email->priority)); 1709 memcpy(&(item->email->priority), list->items[x]->data, sizeof(item->email->priority));
1710 LE32_CPU(item->email->priority); 1710 LE32_CPU(item->email->priority);
1711 t = item->email->priority; 1711 t = item->email->priority;
1712 DEBUG_EMAIL(("%s [%i]\n", (t<0?"NonUrgent":(t==0?"Normal":"Urgent")), t)); 1712 DEBUG_EMAIL(("%s [%i]\n", (t<0?"NonUrgent":(t==0?"Normal":"Urgent")), t));
1713 // INC_CHECK_X(); 1713 // INC_CHECK_X();
1714 break; 1714 break;
1715 case 0x0029:// PR_READ_RECEIPT_REQUESTED 1715 case 0x0029:// PR_READ_RECEIPT_REQUESTED
1716 DEBUG_EMAIL(("Read Receipt - ")); 1716 DEBUG_EMAIL(("Read Receipt - "));
1717 MALLOC_EMAIL(item); 1717 MALLOC_EMAIL(item);
1718 if (*(short int*)list->items[x]->data != 0) { 1718 if (*(short int*)list->items[x]->data != 0) {
1719 DEBUG_EMAIL(("True\n")); 1719 DEBUG_EMAIL(("True\n"));
1720 item->email->read_receipt = 1; 1720 item->email->read_receipt = 1;
1721 } else { 1721 } else {
1722 DEBUG_EMAIL(("False\n")); 1722 DEBUG_EMAIL(("False\n"));
1723 item->email->read_receipt = 0; 1723 item->email->read_receipt = 0;
1724 } 1724 }
1725 // INC_CHECK_X(); 1725 // INC_CHECK_X();
1726 break; 1726 break;
1727 case 0x002B: // PR_RECIPIENT_REASSIGNMENT_PROHIBITED 1727 case 0x002B: // PR_RECIPIENT_REASSIGNMENT_PROHIBITED
1728 DEBUG_EMAIL(("Reassignment Prohibited (Private) - ")); 1728 DEBUG_EMAIL(("Reassignment Prohibited (Private) - "));
1729 if (*(short int*)list->items[x]->data != 0) { 1729 if (*(short int*)list->items[x]->data != 0) {
1730 DEBUG_EMAIL(("True\n")); 1730 DEBUG_EMAIL(("True\n"));
1731 item->private = 1; 1731 item->private_member = 1;
1732 } else { 1732 } else {
1733 DEBUG_EMAIL(("False\n")); 1733 DEBUG_EMAIL(("False\n"));
1734 item->private = 0; 1734 item->private_member = 0;
1735 } 1735 }
1736 break; 1736 break;
1737 case 0x002E: // PR_ORIGINAL_SENSITIVITY 1737 case 0x002E: // PR_ORIGINAL_SENSITIVITY
1738 // the sensitivity of the message before being replied to or forwarded 1738 // the sensitivity of the message before being replied to or forwarded
1739 // 0 - None 1739 // 0 - None
1740 // 1 - Personal 1740 // 1 - Personal
1741 // 2 - Private 1741 // 2 - Private
1742 // 3 - Company Confidential 1742 // 3 - Company Confidential
1743 DEBUG_EMAIL(("Original Sensitivity - ")); 1743 DEBUG_EMAIL(("Original Sensitivity - "));
1744 MALLOC_EMAIL(item); 1744 MALLOC_EMAIL(item);
1745 memcpy(&(item->email->orig_sensitivity), list->items[x]->data, sizeof(item->email->orig_sensitivity)); 1745 memcpy(&(item->email->orig_sensitivity), list->items[x]->data, sizeof(item->email->orig_sensitivity));
1746 LE32_CPU(item->email->orig_sensitivity); 1746 LE32_CPU(item->email->orig_sensitivity);
1747 t = item->email->orig_sensitivity; 1747 t = item->email->orig_sensitivity;
1748 DEBUG_EMAIL(("%s [%i]\n", (t==0?"None":(t==1?"Personal": 1748 DEBUG_EMAIL(("%s [%i]\n", (t==0?"None":(t==1?"Personal":
1749 (t==2?"Private":"Company Confidential"))), t)); 1749 (t==2?"Private":"Company Confidential"))), t));
1750 // INC_CHECK_X(); 1750 // INC_CHECK_X();
1751 break; 1751 break;
1752 case 0x0036: // PR_SENSITIVITY 1752 case 0x0036: // PR_SENSITIVITY
1753 // sender's opinion of the sensitivity of an email 1753 // sender's opinion of the sensitivity of an email
1754 // 0 - None 1754 // 0 - None
1755 // 1 - Personal 1755 // 1 - Personal
1756 // 2 - Private 1756 // 2 - Private
1757 // 3 - Company Confidiential 1757 // 3 - Company Confidiential
1758 DEBUG_EMAIL(("Sensitivity - ")); 1758 DEBUG_EMAIL(("Sensitivity - "));
1759 MALLOC_EMAIL(item); 1759 MALLOC_EMAIL(item);
1760 memcpy(&(item->email->sensitivity), list->items[x]->data, sizeof(item->email->sensitivity)); 1760 memcpy(&(item->email->sensitivity), list->items[x]->data, sizeof(item->email->sensitivity));
1761 LE32_CPU(item->email->sensitivity); 1761 LE32_CPU(item->email->sensitivity);
1762 t = item->email->sensitivity; 1762 t = item->email->sensitivity;
1763 DEBUG_EMAIL(("%s [%i]\n", (t==0?"None":(t==1?"Personal": 1763 DEBUG_EMAIL(("%s [%i]\n", (t==0?"None":(t==1?"Personal":
1764 (t==2?"Private":"Company Confidential"))), t)); 1764 (t==2?"Private":"Company Confidential"))), t));
1765 // INC_CHECK_X(); 1765 // INC_CHECK_X();
1766 break; 1766 break;
1767 case 0x0037: // PR_SUBJECT raw subject 1767 case 0x0037: // PR_SUBJECT raw subject
1768 // if (list->items[x]->id == 0x0037) { 1768 // if (list->items[x]->id == 0x0037) {
1769 DEBUG_EMAIL(("Raw Subject - ")); 1769 DEBUG_EMAIL(("Raw Subject - "));
1770 MALLOC_EMAIL(item); 1770 MALLOC_EMAIL(item);
1771 item->email->subject = (pst_item_email_subject*) realloc(item->email->subject, sizeof(pst_item_email_subject)); 1771 item->email->subject = (pst_item_email_subject*) realloc(item->email->subject, sizeof(pst_item_email_subject));
1772 memset(item->email->subject, 0, sizeof(pst_item_email_subject)); 1772 memset(item->email->subject, 0, sizeof(pst_item_email_subject));
1773 DEBUG_EMAIL((" [size = %i] ", list->items[x]->size)); 1773 DEBUG_EMAIL((" [size = %i] ", list->items[x]->size));
1774 if (list->items[x]->size > 0) { 1774 if (list->items[x]->size > 0) {
1775 if (isprint(list->items[x]->data[0])) { 1775 if (isprint(list->items[x]->data[0])) {
1776 // then there are no control bytes at the front 1776 // then there are no control bytes at the front
1777 item->email->subject->off1 = 0; 1777 item->email->subject->off1 = 0;
1778 item->email->subject->off2 = 0; 1778 item->email->subject->off2 = 0;
1779 item->email->subject->subj = realloc(item->email->subject->subj, list->items[x]->size+1); 1779 item->email->subject->subj = realloc(item->email->subject->subj, list->items[x]->size+1);
1780 memset(item->email->subject->subj, 0, list->items[x]->size+1); 1780 memset(item->email->subject->subj, 0, list->items[x]->size+1);
1781 memcpy(item->email->subject->subj, list->items[x]->data, list->items[x]->size); 1781 memcpy(item->email->subject->subj, list->items[x]->data, list->items[x]->size);
1782 } else { 1782 } else {
1783 DEBUG_EMAIL(("Raw Subject has control codes\n")); 1783 DEBUG_EMAIL(("Raw Subject has control codes\n"));
1784 // there might be some control bytes in the first and second bytes 1784 // there might be some control bytes in the first and second bytes
1785 item->email->subject->off1 = list->items[x]->data[0]; 1785 item->email->subject->off1 = list->items[x]->data[0];
1786 item->email->subject->off2 = list->items[x]->data[1]; 1786 item->email->subject->off2 = list->items[x]->data[1];
1787 item->email->subject->subj = realloc(item->email->subject->subj, (list->items[x]->size-2)+1); 1787 item->email->subject->subj = realloc(item->email->subject->subj, (list->items[x]->size-2)+1);
1788 memset(item->email->subject->subj, 0, list->items[x]->size-1); 1788 memset(item->email->subject->subj, 0, list->items[x]->size-1);
1789 memcpy(item->email->subject->subj, &(list->items[x]->data[2]), list->items[x]->size-2); 1789 memcpy(item->email->subject->subj, &(list->items[x]->data[2]), list->items[x]->size-2);
1790 } 1790 }
1791 DEBUG_EMAIL(("%s\n", item->email->subject->subj)); 1791 DEBUG_EMAIL(("%s\n", item->email->subject->subj));
1792 } else { 1792 } else {
1793 // obviously outlook has decided not to be straight with this one. 1793 // obviously outlook has decided not to be straight with this one.
1794 item->email->subject->off1 = 0; 1794 item->email->subject->off1 = 0;
1795 item->email->subject->off2 = 0; 1795 item->email->subject->off2 = 0;
1796 item->email->subject = NULL; 1796 item->email->subject = NULL;
1797 DEBUG_EMAIL(("NULL subject detected\n")); 1797 DEBUG_EMAIL(("NULL subject detected\n"));
1798 } 1798 }
1799 break; 1799 break;
1800 // INC_CHECK_X(); 1800 // INC_CHECK_X();
1801 case 0x0039: // PR_CLIENT_SUBMIT_TIME Date Email Sent/Created 1801 case 0x0039: // PR_CLIENT_SUBMIT_TIME Date Email Sent/Created
1802 DEBUG_EMAIL(("Date sent - ")); 1802 DEBUG_EMAIL(("Date sent - "));
1803 MALLOC_EMAIL(item); 1803 MALLOC_EMAIL(item);
1804 LIST_COPY(item->email->sent_date, (FILETIME*)); 1804 LIST_COPY(item->email->sent_date, (FILETIME*));
1805 LE32_CPU(item->email->sent_date->dwLowDateTime); 1805 LE32_CPU(item->email->sent_date->dwLowDateTime);
1806 LE32_CPU(item->email->sent_date->dwHighDateTime); 1806 LE32_CPU(item->email->sent_date->dwHighDateTime);
1807 DEBUG_EMAIL(("%s", fileTimeToAscii(item->email->sent_date))); 1807 DEBUG_EMAIL(("%s", fileTimeToAscii(item->email->sent_date)));
1808 // INC_CHECK_X(); 1808 // INC_CHECK_X();
1809 break; 1809 break;
1810 case 0x003B: // PR_SENT_REPRESENTING_SEARCH_KEY Sender address 1 1810 case 0x003B: // PR_SENT_REPRESENTING_SEARCH_KEY Sender address 1
1811 DEBUG_EMAIL(("Sent on behalf of address 1 - ")); 1811 DEBUG_EMAIL(("Sent on behalf of address 1 - "));
1812 MALLOC_EMAIL(item); 1812 MALLOC_EMAIL(item);
1813 LIST_COPY(item->email->outlook_sender, (char*)); 1813 LIST_COPY(item->email->outlook_sender, (char*));
1814 DEBUG_EMAIL(("%s\n", item->email->outlook_sender)); 1814 DEBUG_EMAIL(("%s\n", item->email->outlook_sender));
1815 // INC_CHECK_X(); 1815 // INC_CHECK_X();
1816 break; 1816 break;
1817 case 0x003F: // PR_RECEIVED_BY_ENTRYID Structure containing Recipient 1817 case 0x003F: // PR_RECEIVED_BY_ENTRYID Structure containing Recipient
1818 DEBUG_EMAIL(("Recipient Structure 1 -- NOT HANDLED\n")); 1818 DEBUG_EMAIL(("Recipient Structure 1 -- NOT HANDLED\n"));
1819 // INC_CHECK_X(); 1819 // INC_CHECK_X();
1820 break; 1820 break;
1821 case 0x0040: // PR_RECEIVED_BY_NAME Name of Recipient Structure 1821 case 0x0040: // PR_RECEIVED_BY_NAME Name of Recipient Structure
1822 DEBUG_EMAIL(("Received By Name 1 -- NOT HANDLED\n")); 1822 DEBUG_EMAIL(("Received By Name 1 -- NOT HANDLED\n"));
1823 //INC_CHECK_X(); 1823 //INC_CHECK_X();
1824 break; 1824 break;
1825 case 0x0041: // PR_SENT_REPRESENTING_ENTRYID Structure containing Sender 1825 case 0x0041: // PR_SENT_REPRESENTING_ENTRYID Structure containing Sender
1826 DEBUG_EMAIL(("Sent on behalf of Structure 1 -- NOT HANDLED\n")); 1826 DEBUG_EMAIL(("Sent on behalf of Structure 1 -- NOT HANDLED\n"));
1827 //INC_CHECK_X(); 1827 //INC_CHECK_X();
1828 break; 1828 break;
1829 case 0x0042: // PR_SENT_REPRESENTING_NAME Name of Sender Structure 1829 case 0x0042: // PR_SENT_REPRESENTING_NAME Name of Sender Structure
1830 DEBUG_EMAIL(("Sent on behalf of Structure Name - ")); 1830 DEBUG_EMAIL(("Sent on behalf of Structure Name - "));
1831 MALLOC_EMAIL(item); 1831 MALLOC_EMAIL(item);
1832 LIST_COPY(item->email->outlook_sender_name, (char*)); 1832 LIST_COPY(item->email->outlook_sender_name, (char*));
1833 DEBUG_EMAIL(("%s\n", item->email->outlook_sender_name)); 1833 DEBUG_EMAIL(("%s\n", item->email->outlook_sender_name));
1834 //INC_CHECK_X(); 1834 //INC_CHECK_X();
1835 break; 1835 break;
1836 case 0x0043: // PR_RCVD_REPRESENTING_ENTRYID Recipient Structure 2 1836 case 0x0043: // PR_RCVD_REPRESENTING_ENTRYID Recipient Structure 2
1837 DEBUG_EMAIL(("Received on behalf of Structure -- NOT HANDLED\n")); 1837 DEBUG_EMAIL(("Received on behalf of Structure -- NOT HANDLED\n"));
1838 //INC_CHECK_X(); 1838 //INC_CHECK_X();
1839 break; 1839 break;
1840 case 0x0044: // PR_RCVD_REPRESENTING_NAME Name of Recipient Structure 2 1840 case 0x0044: // PR_RCVD_REPRESENTING_NAME Name of Recipient Structure 2
1841 DEBUG_EMAIL(("Received on behalf of Structure Name -- NOT HANDLED\n")); 1841 DEBUG_EMAIL(("Received on behalf of Structure Name -- NOT HANDLED\n"));
1842 //INC_CHECK_X(); 1842 //INC_CHECK_X();
1843 break; 1843 break;
1844 case 0x004F: // PR_REPLY_RECIPIENT_ENTRIES Reply-To Structure 1844 case 0x004F: // PR_REPLY_RECIPIENT_ENTRIES Reply-To Structure
1845 DEBUG_EMAIL(("Reply-To Structure -- NOT HANDLED\n")); 1845 DEBUG_EMAIL(("Reply-To Structure -- NOT HANDLED\n"));
1846 //INC_CHECK_X(); 1846 //INC_CHECK_X();
1847 break; 1847 break;
1848 case 0x0050: // PR_REPLY_RECIPIENT_NAMES Name of Reply-To Structure 1848 case 0x0050: // PR_REPLY_RECIPIENT_NAMES Name of Reply-To Structure
1849 DEBUG_EMAIL(("Name of Reply-To Structure -")); 1849 DEBUG_EMAIL(("Name of Reply-To Structure -"));
1850 MALLOC_EMAIL(item); 1850 MALLOC_EMAIL(item);
1851 LIST_COPY(item->email->reply_to, (char*)); 1851 LIST_COPY(item->email->reply_to, (char*));
1852 DEBUG_EMAIL(("%s\n", item->email->reply_to)); 1852 DEBUG_EMAIL(("%s\n", item->email->reply_to));
1853 //INC_CHECK_X(); 1853 //INC_CHECK_X();
1854 break; 1854 break;
1855 case 0x0051: // PR_RECEIVED_BY_SEARCH_KEY Recipient Address 1 1855 case 0x0051: // PR_RECEIVED_BY_SEARCH_KEY Recipient Address 1
1856 DEBUG_EMAIL(("Recipient's Address 1 (Search Key) - ")); 1856 DEBUG_EMAIL(("Recipient's Address 1 (Search Key) - "));
1857 MALLOC_EMAIL(item); 1857 MALLOC_EMAIL(item);
1858 LIST_COPY (item->email->outlook_recipient, (char*)); 1858 LIST_COPY (item->email->outlook_recipient, (char*));
1859 DEBUG_EMAIL(("%s\n", item->email->outlook_recipient)); 1859 DEBUG_EMAIL(("%s\n", item->email->outlook_recipient));
1860 //INC_CHECK_X(); 1860 //INC_CHECK_X();
1861 break; 1861 break;
1862 case 0x0052: // PR_RCVD_REPRESENTING_SEARCH_KEY Recipient Address 2 1862 case 0x0052: // PR_RCVD_REPRESENTING_SEARCH_KEY Recipient Address 2
1863 DEBUG_EMAIL(("Received on behalf of Address (Search Key) - ")); 1863 DEBUG_EMAIL(("Received on behalf of Address (Search Key) - "));
1864 MALLOC_EMAIL(item); 1864 MALLOC_EMAIL(item);
1865 LIST_COPY(item->email->outlook_recipient2, (char*)); 1865 LIST_COPY(item->email->outlook_recipient2, (char*));
1866 DEBUG_EMAIL(("%s\n", item->email->outlook_recipient2)); 1866 DEBUG_EMAIL(("%s\n", item->email->outlook_recipient2));
1867 //INC_CHECK_X(); 1867 //INC_CHECK_X();
1868 break; 1868 break;
1869 case 0x0057: // PR_MESSAGE_TO_ME 1869 case 0x0057: // PR_MESSAGE_TO_ME
1870 // this user is listed explicitly in the TO address 1870 // this user is listed explicitly in the TO address
1871 DEBUG_EMAIL(("My address in TO field - ")); 1871 DEBUG_EMAIL(("My address in TO field - "));
1872 MALLOC_EMAIL(item); 1872 MALLOC_EMAIL(item);
1873 if (*(int16_t*)list->items[x]->data != 0) { 1873 if (*(int16_t*)list->items[x]->data != 0) {
1874 DEBUG_EMAIL(("True\n")); 1874 DEBUG_EMAIL(("True\n"));
1875 item->email->message_to_me = 1; 1875 item->email->message_to_me = 1;
1876 } else { 1876 } else {
1877 DEBUG_EMAIL(("False\n")); 1877 DEBUG_EMAIL(("False\n"));
1878 item->email->message_to_me = 0; 1878 item->email->message_to_me = 0;
1879 } 1879 }
1880 //INC_CHECK_X(); 1880 //INC_CHECK_X();
1881 break; 1881 break;
1882 case 0x0058: // PR_MESSAGE_CC_ME 1882 case 0x0058: // PR_MESSAGE_CC_ME
1883 // this user is listed explicitly in the CC address 1883 // this user is listed explicitly in the CC address
1884 DEBUG_EMAIL(("My address in CC field - ")); 1884 DEBUG_EMAIL(("My address in CC field - "));
1885 MALLOC_EMAIL(item); 1885 MALLOC_EMAIL(item);
1886 if (*(int16_t*)list->items[x]->data != 0) { 1886 if (*(int16_t*)list->items[x]->data != 0) {
1887 DEBUG_EMAIL(("True\n")); 1887 DEBUG_EMAIL(("True\n"));
1888 item->email->message_cc_me = 1; 1888 item->email->message_cc_me = 1;
1889 } else { 1889 } else {
1890 DEBUG_EMAIL(("False\n")); 1890 DEBUG_EMAIL(("False\n"));
1891 item->email->message_cc_me = 0; 1891 item->email->message_cc_me = 0;
1892 } 1892 }
1893 //INC_CHECK_X(); 1893 //INC_CHECK_X();
1894 break; 1894 break;
1895 case 0x0059: //PR_MESSAGE_RECIP_ME 1895 case 0x0059: //PR_MESSAGE_RECIP_ME
1896 // this user appears in TO, CC or BCC address list 1896 // this user appears in TO, CC or BCC address list
1897 DEBUG_EMAIL(("Message addressed to me - ")); 1897 DEBUG_EMAIL(("Message addressed to me - "));
1898 MALLOC_EMAIL(item); 1898 MALLOC_EMAIL(item);
1899 if (*(int16_t*)list->items[x]->data != 0) { 1899 if (*(int16_t*)list->items[x]->data != 0) {
1900 DEBUG_EMAIL(("True\n")); 1900 DEBUG_EMAIL(("True\n"));
1901 item->email->message_recip_me = 1; 1901 item->email->message_recip_me = 1;
1902 } else { 1902 } else {
1903 DEBUG_EMAIL(("False\n")); 1903 DEBUG_EMAIL(("False\n"));
1904 item->email->message_recip_me = 0; 1904 item->email->message_recip_me = 0;
1905 } 1905 }
1906 //INC_CHECK_X(); 1906 //INC_CHECK_X();
1907 break; 1907 break;
1908 case 0x0063: // PR_RESPONSE_REQUESTED 1908 case 0x0063: // PR_RESPONSE_REQUESTED
1909 DEBUG_EMAIL(("Response requested - ")); 1909 DEBUG_EMAIL(("Response requested - "));
1910 if (*(int16_t*)list->items[x]->data != 0) { 1910 if (*(int16_t*)list->items[x]->data != 0) {
1911 DEBUG_EMAIL(("True\n")); 1911 DEBUG_EMAIL(("True\n"));
1912 item->response_requested = 1; 1912 item->response_requested = 1;
1913 } else { 1913 } else {
1914 DEBUG_EMAIL(("False\n")); 1914 DEBUG_EMAIL(("False\n"));
1915 item->response_requested = 0; 1915 item->response_requested = 0;
1916 } 1916 }
1917 break; 1917 break;
1918 case 0x0064: // PR_SENT_REPRESENTING_ADDRTYPE Access method for Sender Address 1918 case 0x0064: // PR_SENT_REPRESENTING_ADDRTYPE Access method for Sender Address
1919 DEBUG_EMAIL(("Sent on behalf of address type - ")); 1919 DEBUG_EMAIL(("Sent on behalf of address type - "));
1920 MALLOC_EMAIL(item); 1920 MALLOC_EMAIL(item);
1921 LIST_COPY(item->email->sender_access, (char*)); 1921 LIST_COPY(item->email->sender_access, (char*));
1922 DEBUG_EMAIL(("%s\n", item->email->sender_access)); 1922 DEBUG_EMAIL(("%s\n", item->email->sender_access));
1923 //INC_CHECK_X(); 1923 //INC_CHECK_X();
1924 break; 1924 break;
1925 case 0x0065: // PR_SENT_REPRESENTING_EMAIL_ADDRESS Sender Address 1925 case 0x0065: // PR_SENT_REPRESENTING_EMAIL_ADDRESS Sender Address
1926 DEBUG_EMAIL(("Sent on behalf of Address - ")); 1926 DEBUG_EMAIL(("Sent on behalf of Address - "));
1927 MALLOC_EMAIL(item); 1927 MALLOC_EMAIL(item);
1928 LIST_COPY(item->email->sender_address, (char*)); 1928 LIST_COPY(item->email->sender_address, (char*));
1929 DEBUG_EMAIL(("%s\n", item->email->sender_address)); 1929 DEBUG_EMAIL(("%s\n", item->email->sender_address));
1930 //INC_CHECK_X(); 1930 //INC_CHECK_X();
1931 break; 1931 break;
1932 case 0x0070: // PR_CONVERSATION_TOPIC Processed Subject 1932 case 0x0070: // PR_CONVERSATION_TOPIC Processed Subject
1933 DEBUG_EMAIL(("Processed Subject (Conversation Topic) - ")); 1933 DEBUG_EMAIL(("Processed Subject (Conversation Topic) - "));
1934 MALLOC_EMAIL(item); 1934 MALLOC_EMAIL(item);
1935 LIST_COPY(item->email->proc_subject, (char*)); 1935 LIST_COPY(item->email->proc_subject, (char*));
1936 DEBUG_EMAIL(("%s\n", item->email->proc_subject)); 1936 DEBUG_EMAIL(("%s\n", item->email->proc_subject));
1937 //INC_CHECK_X(); 1937 //INC_CHECK_X();
1938 break; 1938 break;
1939 case 0x0071: // PR_CONVERSATION_INDEX Date 2 1939 case 0x0071: // PR_CONVERSATION_INDEX Date 2
1940 DEBUG_EMAIL(("Conversation Index - ")); 1940 DEBUG_EMAIL(("Conversation Index - "));
1941 MALLOC_EMAIL(item); 1941 MALLOC_EMAIL(item);
1942 memcpy(&(item->email->conv_index), list->items[x]->data, sizeof(item->email->conv_index)); 1942 memcpy(&(item->email->conv_index), list->items[x]->data, sizeof(item->email->conv_index));
1943 DEBUG_EMAIL(("%i\n", item->email->conv_index)); 1943 DEBUG_EMAIL(("%i\n", item->email->conv_index));
1944 //INC_CHECK_X(); 1944 //INC_CHECK_X();
1945 break; 1945 break;
1946 case 0x0075: // PR_RECEIVED_BY_ADDRTYPE Recipient Access Method 1946 case 0x0075: // PR_RECEIVED_BY_ADDRTYPE Recipient Access Method
1947 DEBUG_EMAIL(("Received by Address type - ")); 1947 DEBUG_EMAIL(("Received by Address type - "));
1948 MALLOC_EMAIL(item); 1948 MALLOC_EMAIL(item);
1949 LIST_COPY(item->email->recip_access, (char*)); 1949 LIST_COPY(item->email->recip_access, (char*));
1950 DEBUG_EMAIL(("%s\n", item->email->recip_access)); 1950 DEBUG_EMAIL(("%s\n", item->email->recip_access));
1951 //INC_CHECK_X(); 1951 //INC_CHECK_X();
1952 break; 1952 break;
1953 case 0x0076: // PR_RECEIVED_BY_EMAIL_ADDRESS Recipient Address 1953 case 0x0076: // PR_RECEIVED_BY_EMAIL_ADDRESS Recipient Address
1954 DEBUG_EMAIL(("Received by Address - ")); 1954 DEBUG_EMAIL(("Received by Address - "));
1955 MALLOC_EMAIL(item); 1955 MALLOC_EMAIL(item);
1956 LIST_COPY(item->email->recip_address, (char*)); 1956 LIST_COPY(item->email->recip_address, (char*));
1957 DEBUG_EMAIL(("%s\n", item->email->recip_address)); 1957 DEBUG_EMAIL(("%s\n", item->email->recip_address));
1958 //INC_CHECK_X(); 1958 //INC_CHECK_X();
1959 break; 1959 break;
1960 case 0x0077: // PR_RCVD_REPRESENTING_ADDRTYPE Recipient Access Method 2 1960 case 0x0077: // PR_RCVD_REPRESENTING_ADDRTYPE Recipient Access Method 2
1961 DEBUG_EMAIL(("Received on behalf of Address type - ")); 1961 DEBUG_EMAIL(("Received on behalf of Address type - "));
1962 MALLOC_EMAIL(item); 1962 MALLOC_EMAIL(item);
1963 LIST_COPY(item->email->recip2_access, (char*)); 1963 LIST_COPY(item->email->recip2_access, (char*));
1964 DEBUG_EMAIL(("%s\n", item->email->recip2_access)); 1964 DEBUG_EMAIL(("%s\n", item->email->recip2_access));
1965 //INC_CHECK_X(); 1965 //INC_CHECK_X();
1966 break; 1966 break;
1967 case 0x0078: // PR_RCVD_REPRESENTING_EMAIL_ADDRESS Recipient Address 2 1967 case 0x0078: // PR_RCVD_REPRESENTING_EMAIL_ADDRESS Recipient Address 2
1968 DEBUG_EMAIL(("Received on behalf of Address -")); 1968 DEBUG_EMAIL(("Received on behalf of Address -"));
1969 MALLOC_EMAIL(item); 1969 MALLOC_EMAIL(item);
1970 LIST_COPY(item->email->recip2_address, (char*)); 1970 LIST_COPY(item->email->recip2_address, (char*));
1971 DEBUG_EMAIL(("%s\n", item->email->recip2_address)); 1971 DEBUG_EMAIL(("%s\n", item->email->recip2_address));
1972 //INC_CHECK_X(); 1972 //INC_CHECK_X();
1973 break; 1973 break;
1974 case 0x007D: // PR_TRANSPORT_MESSAGE_HEADERS Internet Header 1974 case 0x007D: // PR_TRANSPORT_MESSAGE_HEADERS Internet Header
1975 DEBUG_EMAIL(("Internet Header - ")); 1975 DEBUG_EMAIL(("Internet Header - "));
1976 MALLOC_EMAIL(item); 1976 MALLOC_EMAIL(item);
1977 LIST_COPY(item->email->header, (char*)); 1977 LIST_COPY(item->email->header, (char*));
1978 //DEBUG_EMAIL(("%s\n", item->email->header)); 1978 //DEBUG_EMAIL(("%s\n", item->email->header));
1979 DEBUG_EMAIL(("NOT PRINTED\n")); 1979 DEBUG_EMAIL(("NOT PRINTED\n"));
1980 //INC_CHECK_X(); 1980 //INC_CHECK_X();
1981 break; 1981 break;
1982 case 0x0C17: // PR_REPLY_REQUESTED 1982 case 0x0C17: // PR_REPLY_REQUESTED
1983 DEBUG_EMAIL(("Reply Requested - ")); 1983 DEBUG_EMAIL(("Reply Requested - "));
1984 MALLOC_EMAIL(item); 1984 MALLOC_EMAIL(item);
1985 if (*(int16_t*)list->items[x]->data != 0) { 1985 if (*(int16_t*)list->items[x]->data != 0) {
1986 DEBUG_EMAIL(("True\n")); 1986 DEBUG_EMAIL(("True\n"));
1987 item->email->reply_requested = 1; 1987 item->email->reply_requested = 1;
1988 } else { 1988 } else {
1989 DEBUG_EMAIL(("False\n")); 1989 DEBUG_EMAIL(("False\n"));
1990 item->email->reply_requested = 0; 1990 item->email->reply_requested = 0;
1991 } 1991 }
1992 break; 1992 break;
1993 case 0x0C19: // PR_SENDER_ENTRYID Sender Structure 2 1993 case 0x0C19: // PR_SENDER_ENTRYID Sender Structure 2
1994 DEBUG_EMAIL(("Sender Structure 2 -- NOT HANDLED\n")); 1994 DEBUG_EMAIL(("Sender Structure 2 -- NOT HANDLED\n"));
1995 //INC_CHECK_X(); 1995 //INC_CHECK_X();
1996 break; 1996 break;
1997 case 0x0C1A: // PR_SENDER_NAME Name of Sender Structure 2 1997 case 0x0C1A: // PR_SENDER_NAME Name of Sender Structure 2
1998 DEBUG_EMAIL(("Name of Sender Structure 2 -- NOT HANDLED\n")); 1998 DEBUG_EMAIL(("Name of Sender Structure 2 -- NOT HANDLED\n"));
1999 //INC_CHECK_X(); 1999 //INC_CHECK_X();
2000 break; 2000 break;
2001 case 0x0C1D: // PR_SENDER_SEARCH_KEY Name of Sender Address 2 2001 case 0x0C1D: // PR_SENDER_SEARCH_KEY Name of Sender Address 2
2002 DEBUG_EMAIL(("Name of Sender Address 2 (Sender search key) - ")); 2002 DEBUG_EMAIL(("Name of Sender Address 2 (Sender search key) - "));
2003 MALLOC_EMAIL(item); 2003 MALLOC_EMAIL(item);
2004 LIST_COPY(item->email->outlook_sender2, (char*)); 2004 LIST_COPY(item->email->outlook_sender2, (char*));
2005 DEBUG_EMAIL(("%s\n", item->email->outlook_sender2)); 2005 DEBUG_EMAIL(("%s\n", item->email->outlook_sender2));
2006 //INC_CHECK_X(); 2006 //INC_CHECK_X();
2007 break; 2007 break;
2008 case 0x0C1E: // PR_SENDER_ADDRTYPE Sender Address 2 access method 2008 case 0x0C1E: // PR_SENDER_ADDRTYPE Sender Address 2 access method
2009 DEBUG_EMAIL(("Sender Address type - ")); 2009 DEBUG_EMAIL(("Sender Address type - "));
2010 MALLOC_EMAIL(item); 2010 MALLOC_EMAIL(item);
2011 LIST_COPY(item->email->sender2_access, (char*)); 2011 LIST_COPY(item->email->sender2_access, (char*));
2012 DEBUG_EMAIL(("%s\n", item->email->sender2_access)); 2012 DEBUG_EMAIL(("%s\n", item->email->sender2_access));
2013 //INC_CHECK_X(); 2013 //INC_CHECK_X();
2014 break; 2014 break;
2015 case 0x0C1F: // PR_SENDER_EMAIL_ADDRESS Sender Address 2 2015 case 0x0C1F: // PR_SENDER_EMAIL_ADDRESS Sender Address 2
2016 DEBUG_EMAIL(("Sender Address - ")); 2016 DEBUG_EMAIL(("Sender Address - "));
2017 MALLOC_EMAIL(item); 2017 MALLOC_EMAIL(item);
2018 LIST_COPY(item->email->sender2_address, (char*)); 2018 LIST_COPY(item->email->sender2_address, (char*));
2019 DEBUG_EMAIL(("%s\n", item->email->sender2_address)); 2019 DEBUG_EMAIL(("%s\n", item->email->sender2_address));
2020 //INC_CHECK_X(); 2020 //INC_CHECK_X();
2021 break; 2021 break;
2022 case 0x0E01: // PR_DELETE_AFTER_SUBMIT 2022 case 0x0E01: // PR_DELETE_AFTER_SUBMIT
2023 // I am not too sure how this works 2023 // I am not too sure how this works
2024 DEBUG_EMAIL(("Delete after submit - ")); 2024 DEBUG_EMAIL(("Delete after submit - "));
2025 MALLOC_EMAIL(item); 2025 MALLOC_EMAIL(item);
2026 if (*(int16_t*) list->items[x]->data != 0) { 2026 if (*(int16_t*) list->items[x]->data != 0) {
2027 DEBUG_EMAIL(("True\n")); 2027 DEBUG_EMAIL(("True\n"));
2028 item->email->delete_after_submit = 1; 2028 item->email->delete_after_submit = 1;
2029 } else { 2029 } else {
2030 DEBUG_EMAIL(("False\n")); 2030 DEBUG_EMAIL(("False\n"));
2031 item->email->delete_after_submit = 0; 2031 item->email->delete_after_submit = 0;
2032 } 2032 }
2033 //INC_CHECK_X(); 2033 //INC_CHECK_X();
2034 break; 2034 break;
2035 case 0x0E03: // PR_DISPLAY_CC CC Addresses 2035 case 0x0E03: // PR_DISPLAY_CC CC Addresses
2036 DEBUG_EMAIL(("Display CC Addresses - ")); 2036 DEBUG_EMAIL(("Display CC Addresses - "));
2037 MALLOC_EMAIL(item); 2037 MALLOC_EMAIL(item);
2038 LIST_COPY(item->email->cc_address, (char*)); 2038 LIST_COPY(item->email->cc_address, (char*));
2039 DEBUG_EMAIL(("%s\n", item->email->cc_address)); 2039 DEBUG_EMAIL(("%s\n", item->email->cc_address));
2040 //INC_CHECK_X(); 2040 //INC_CHECK_X();
2041 break; 2041 break;
2042 case 0x0E04: // PR_DISPLAY_TO Address Sent-To 2042 case 0x0E04: // PR_DISPLAY_TO Address Sent-To
2043 DEBUG_EMAIL(("Display Sent-To Address - ")); 2043 DEBUG_EMAIL(("Display Sent-To Address - "));
2044 MALLOC_EMAIL(item); 2044 MALLOC_EMAIL(item);
2045 LIST_COPY(item->email->sentto_address, (char*)); 2045 LIST_COPY(item->email->sentto_address, (char*));
2046 DEBUG_EMAIL(("%s\n", item->email->sentto_address)); 2046 DEBUG_EMAIL(("%s\n", item->email->sentto_address));
2047 //INC_CHECK_X(); 2047 //INC_CHECK_X();
2048 break; 2048 break;
2049 case 0x0E06: // PR_MESSAGE_DELIVERY_TIME Date 3 - Email Arrival Date 2049 case 0x0E06: // PR_MESSAGE_DELIVERY_TIME Date 3 - Email Arrival Date
2050 DEBUG_EMAIL(("Date 3 (Delivery Time) - ")); 2050 DEBUG_EMAIL(("Date 3 (Delivery Time) - "));
2051 MALLOC_EMAIL(item); 2051 MALLOC_EMAIL(item);
2052 LIST_COPY(item->email->arrival_date, (FILETIME*)); 2052 LIST_COPY(item->email->arrival_date, (FILETIME*));
2053 DEBUG_EMAIL(("%s", fileTimeToAscii(item->email->arrival_date))); 2053 DEBUG_EMAIL(("%s", fileTimeToAscii(item->email->arrival_date)));
2054 //INC_CHECK_X(); 2054 //INC_CHECK_X();
2055 break; 2055 break;
2056 case 0x0E07: // PR_MESSAGE_FLAGS Email Flag 2056 case 0x0E07: // PR_MESSAGE_FLAGS Email Flag
2057 // 0x01 - Read 2057 // 0x01 - Read
2058 // 0x02 - Unmodified 2058 // 0x02 - Unmodified
2059 // 0x04 - Submit 2059 // 0x04 - Submit
2060 // 0x08 - Unsent 2060 // 0x08 - Unsent
2061 // 0x10 - Has Attachments 2061 // 0x10 - Has Attachments
2062 // 0x20 - From Me 2062 // 0x20 - From Me
2063 // 0x40 - Associated 2063 // 0x40 - Associated
2064 // 0x80 - Resend 2064 // 0x80 - Resend
2065 // 0x100 - RN Pending 2065 // 0x100 - RN Pending
2066 // 0x200 - NRN Pending 2066 // 0x200 - NRN Pending
2067 DEBUG_EMAIL(("Message Flags - ")); 2067 DEBUG_EMAIL(("Message Flags - "));
2068 MALLOC_EMAIL(item); 2068 MALLOC_EMAIL(item);
2069 memcpy(&(item->email->flag), list->items[x]->data, sizeof(item->email->flag)); 2069 memcpy(&(item->email->flag), list->items[x]->data, sizeof(item->email->flag));
2070 LE32_CPU(item->email->flag); 2070 LE32_CPU(item->email->flag);
2071 DEBUG_EMAIL(("%i\n", item->email->flag)); 2071 DEBUG_EMAIL(("%i\n", item->email->flag));
2072 //INC_CHECK_X(); 2072 //INC_CHECK_X();
2073 break; 2073 break;
2074 case 0x0E08: // PR_MESSAGE_SIZE Total size of a message object 2074 case 0x0E08: // PR_MESSAGE_SIZE Total size of a message object
2075 DEBUG_EMAIL(("Message Size - ")); 2075 DEBUG_EMAIL(("Message Size - "));
2076 memcpy(&(item->message_size), list->items[x]->data, sizeof(item->message_size)); 2076 memcpy(&(item->message_size), list->items[x]->data, sizeof(item->message_size));
2077 LE32_CPU(item->message_size); 2077 LE32_CPU(item->message_size);
2078 DEBUG_EMAIL(("%i [%#x]\n", item->message_size, item->message_size)); 2078 DEBUG_EMAIL(("%i [%#x]\n", item->message_size, item->message_size));
2079 //INC_CHECK_X(); 2079 //INC_CHECK_X();
2080 break; 2080 break;
2081 case 0x0E0A: // PR_SENTMAIL_ENTRYID 2081 case 0x0E0A: // PR_SENTMAIL_ENTRYID
2082 // folder that this message is sent to after submission 2082 // folder that this message is sent to after submission
2083 DEBUG_EMAIL(("Sentmail EntryID - ")); 2083 DEBUG_EMAIL(("Sentmail EntryID - "));
2084 MALLOC_EMAIL(item); 2084 MALLOC_EMAIL(item);
2085 LIST_COPY(item->email->sentmail_folder, (pst_entryid*)); 2085 LIST_COPY(item->email->sentmail_folder, (pst_entryid*));
2086 LE32_CPU(item->email->sentmail_folder->id); 2086 LE32_CPU(item->email->sentmail_folder->id);
2087 DEBUG_EMAIL(("[id = %#x]\n", item->email->sentmail_folder->id)); 2087 DEBUG_EMAIL(("[id = %#x]\n", item->email->sentmail_folder->id));
2088 //INC_CHECK_X(); 2088 //INC_CHECK_X();
2089 break; 2089 break;
2090 case 0x0E1F: // PR_RTF_IN_SYNC 2090 case 0x0E1F: // PR_RTF_IN_SYNC
2091 // True means that the rtf version is same as text body 2091 // True means that the rtf version is same as text body
2092 // False means rtf version is more up-to-date than text body 2092 // False means rtf version is more up-to-date than text body
2093 // if this value doesn't exist, text body is more up-to-date than rtf and 2093 // if this value doesn't exist, text body is more up-to-date than rtf and
2094 // cannot update to the rtf 2094 // cannot update to the rtf
2095 DEBUG_EMAIL(("Compressed RTF in Sync - ")); 2095 DEBUG_EMAIL(("Compressed RTF in Sync - "));
2096 MALLOC_EMAIL(item); 2096 MALLOC_EMAIL(item);
2097 if (*(int16_t*)list->items[x]->data != 0) { 2097 if (*(int16_t*)list->items[x]->data != 0) {
2098 DEBUG_EMAIL(("True\n")); 2098 DEBUG_EMAIL(("True\n"));
2099 item->email->rtf_in_sync = 1; 2099 item->email->rtf_in_sync = 1;
2100 } else { 2100 } else {
2101 DEBUG_EMAIL(("False\n")); 2101 DEBUG_EMAIL(("False\n"));
2102 item->email->rtf_in_sync = 0; 2102 item->email->rtf_in_sync = 0;
2103 } 2103 }
2104 //INC_CHECK_X(); 2104 //INC_CHECK_X();
2105 break; 2105 break;
2106 case 0x0E20: // PR_ATTACH_SIZE binary Attachment data in record 2106 case 0x0E20: // PR_ATTACH_SIZE binary Attachment data in record
2107 DEBUG_EMAIL(("Attachment Size - ")); 2107 DEBUG_EMAIL(("Attachment Size - "));
2108 NULL_CHECK(attach); 2108 NULL_CHECK(attach);
2109 MOVE_NEXT(attach); 2109 MOVE_NEXT(attach);
2110 memcpy(&(attach->size), list->items[x]->data, 2110 memcpy(&(attach->size), list->items[x]->data,
2111 sizeof(attach->size)); 2111 sizeof(attach->size));
2112 DEBUG_EMAIL(("%i\n", attach->size)); 2112 DEBUG_EMAIL(("%i\n", attach->size));
2113 //INC_CHECK_X(); 2113 //INC_CHECK_X();
2114 break; 2114 break;
2115 case 0x0FF9: // PR_RECORD_KEY Record Header 1 2115 case 0x0FF9: // PR_RECORD_KEY Record Header 1
2116 DEBUG_EMAIL(("Record Key 1 - ")); 2116 DEBUG_EMAIL(("Record Key 1 - "));
2117 LIST_COPY(item->record_key, (char*)); 2117 LIST_COPY(item->record_key, (char*));
2118 item->record_key_size = list->items[x]->size; 2118 item->record_key_size = list->items[x]->size;
2119 DEBUG_EMAIL_HEXPRINT(item->record_key, item->record_key_size); 2119 DEBUG_EMAIL_HEXPRINT(item->record_key, item->record_key_size);
2120 DEBUG_EMAIL(("\n")); 2120 DEBUG_EMAIL(("\n"));
2121 //INC_CHECK_X(); 2121 //INC_CHECK_X();
2122 break; 2122 break;
2123 case 0x1000: // PR_BODY Plain Text body 2123 case 0x1000: // PR_BODY Plain Text body
2124 DEBUG_EMAIL(("Plain Text body - ")); 2124 DEBUG_EMAIL(("Plain Text body - "));
2125 MALLOC_EMAIL(item); 2125 MALLOC_EMAIL(item);
2126 LIST_COPY(item->email->body, (char*)); 2126 LIST_COPY(item->email->body, (char*));
2127 //DEBUG_EMAIL("%s\n", item->email->body); 2127 //DEBUG_EMAIL("%s\n", item->email->body);
2128 DEBUG_EMAIL(("NOT PRINTED\n")); 2128 DEBUG_EMAIL(("NOT PRINTED\n"));
2129 //INC_CHECK_X(); 2129 //INC_CHECK_X();
2130 break; 2130 break;
2131 case 0x1006: // PR_RTF_SYNC_BODY_CRC 2131 case 0x1006: // PR_RTF_SYNC_BODY_CRC
2132 DEBUG_EMAIL(("RTF Sync Body CRC - ")); 2132 DEBUG_EMAIL(("RTF Sync Body CRC - "));
2133 MALLOC_EMAIL(item); 2133 MALLOC_EMAIL(item);
2134 memcpy(&(item->email->rtf_body_crc), list->items[x]->data, 2134 memcpy(&(item->email->rtf_body_crc), list->items[x]->data,
2135 sizeof(item->email->rtf_body_crc)); 2135 sizeof(item->email->rtf_body_crc));
2136 LE32_CPU(item->email->rtf_body_crc); 2136 LE32_CPU(item->email->rtf_body_crc);
2137 DEBUG_EMAIL(("%#x\n", item->email->rtf_body_crc)); 2137 DEBUG_EMAIL(("%#x\n", item->email->rtf_body_crc));
2138 //INC_CHECK_X(); 2138 //INC_CHECK_X();
2139 break; 2139 break;
2140 case 0x1007: // PR_RTF_SYNC_BODY_COUNT 2140 case 0x1007: // PR_RTF_SYNC_BODY_COUNT
2141 // a count of the *significant* charcters in the rtf body. Doesn't count 2141 // a count of the *significant* charcters in the rtf body. Doesn't count
2142 // whitespace and other ignorable characters 2142 // whitespace and other ignorable characters
2143 DEBUG_EMAIL(("RTF Sync Body character count - ")); 2143 DEBUG_EMAIL(("RTF Sync Body character count - "));
2144 MALLOC_EMAIL(item); 2144 MALLOC_EMAIL(item);
2145 memcpy(&(item->email->rtf_body_char_count), list->items[x]->data, 2145 memcpy(&(item->email->rtf_body_char_count), list->items[x]->data,
2146 sizeof(item->email->rtf_body_char_count)); 2146 sizeof(item->email->rtf_body_char_count));
2147 LE32_CPU(item->email->rtf_body_char_count); 2147 LE32_CPU(item->email->rtf_body_char_count);
2148 DEBUG_EMAIL(("%i [%#x]\n", item->email->rtf_body_char_count, 2148 DEBUG_EMAIL(("%i [%#x]\n", item->email->rtf_body_char_count,
2149 item->email->rtf_body_char_count)); 2149 item->email->rtf_body_char_count));
2150 //INC_CHECK_X(); 2150 //INC_CHECK_X();
2151 break; 2151 break;
2152 case 0x1008: // PR_RTF_SYNC_BODY_TAG 2152 case 0x1008: // PR_RTF_SYNC_BODY_TAG
2153 // the first couple of lines of RTF body so that after modification, then beginning can 2153 // the first couple of lines of RTF body so that after modification, then beginning can
2154 // once again be found 2154 // once again be found
2155 DEBUG_EMAIL(("RTF Sync body tag - ")); 2155 DEBUG_EMAIL(("RTF Sync body tag - "));
2156 MALLOC_EMAIL(item); 2156 MALLOC_EMAIL(item);
2157 LIST_COPY(item->email->rtf_body_tag, (char*)); 2157 LIST_COPY(item->email->rtf_body_tag, (char*));
2158 DEBUG_EMAIL(("%s\n", item->email->rtf_body_tag)); 2158 DEBUG_EMAIL(("%s\n", item->email->rtf_body_tag));
2159 //INC_CHECK_X(); 2159 //INC_CHECK_X();
2160 break; 2160 break;
2161 case 0x1009: // PR_RTF_COMPRESSED 2161 case 0x1009: // PR_RTF_COMPRESSED
2162 // some compression algorithm has been applied to this. At present 2162 // some compression algorithm has been applied to this. At present
2163 // it is unknown 2163 // it is unknown
2164 DEBUG_EMAIL(("RTF Compressed body - ")); 2164 DEBUG_EMAIL(("RTF Compressed body - "));
2165 MALLOC_EMAIL(item); 2165 MALLOC_EMAIL(item);
2166 LIST_COPY(item->email->rtf_compressed, (char*)); 2166 LIST_COPY(item->email->rtf_compressed, (char*));
2167 // DEBUG_EMAIL(("Pointer: %p\n", item->email->rtf_compressed)); 2167 // DEBUG_EMAIL(("Pointer: %p\n", item->email->rtf_compressed));
2168 DEBUG_EMAIL(("NOT PRINTED\n")); 2168 DEBUG_EMAIL(("NOT PRINTED\n"));
2169 //INC_CHECK_X(); 2169 //INC_CHECK_X();
2170 break; 2170 break;
2171 case 0x1010: // PR_RTF_SYNC_PREFIX_COUNT 2171 case 0x1010: // PR_RTF_SYNC_PREFIX_COUNT
2172 // a count of the ignored characters before the first significant character 2172 // a count of the ignored characters before the first significant character
2173 DEBUG_EMAIL(("RTF whitespace prefix count - ")); 2173 DEBUG_EMAIL(("RTF whitespace prefix count - "));
2174 MALLOC_EMAIL(item); 2174 MALLOC_EMAIL(item);
2175 memcpy(&(item->email->rtf_ws_prefix_count), list->items[x]->data, 2175 memcpy(&(item->email->rtf_ws_prefix_count), list->items[x]->data,
2176 sizeof(item->email->rtf_ws_prefix_count)); 2176 sizeof(item->email->rtf_ws_prefix_count));
2177 DEBUG_EMAIL(("%i\n", item->email->rtf_ws_prefix_count)); 2177 DEBUG_EMAIL(("%i\n", item->email->rtf_ws_prefix_count));
2178 //INC_CHECK_X(); 2178 //INC_CHECK_X();
2179 break; 2179 break;
2180 case 0x1011: // PR_RTF_SYNC_TRAILING_COUNT 2180 case 0x1011: // PR_RTF_SYNC_TRAILING_COUNT
2181 // a count of the ignored characters after the last significant character 2181 // a count of the ignored characters after the last significant character
2182 DEBUG_EMAIL(("RTF whitespace tailing count - ")); 2182 DEBUG_EMAIL(("RTF whitespace tailing count - "));
2183 MALLOC_EMAIL(item); 2183 MALLOC_EMAIL(item);
2184 memcpy(&(item->email->rtf_ws_trailing_count), list->items[x]->data, 2184 memcpy(&(item->email->rtf_ws_trailing_count), list->items[x]->data,
2185 sizeof(item->email->rtf_ws_trailing_count)); 2185 sizeof(item->email->rtf_ws_trailing_count));
2186 DEBUG_EMAIL(("%i\n", item->email->rtf_ws_trailing_count)); 2186 DEBUG_EMAIL(("%i\n", item->email->rtf_ws_trailing_count));
2187 //INC_CHECK_X(); 2187 //INC_CHECK_X();
2188 break; 2188 break;
2189 case 0x1013: // HTML body 2189 case 0x1013: // HTML body
2190 DEBUG_EMAIL(("HTML body - ")); 2190 DEBUG_EMAIL(("HTML body - "));
2191 MALLOC_EMAIL(item); 2191 MALLOC_EMAIL(item);
2192 LIST_COPY(item->email->htmlbody, (char*)); 2192 LIST_COPY(item->email->htmlbody, (char*));
2193 // DEBUG_EMAIL(("%s\n", item->email->htmlbody)); 2193 // DEBUG_EMAIL(("%s\n", item->email->htmlbody));
2194 DEBUG_EMAIL(("NOT PRINTED\n")); 2194 DEBUG_EMAIL(("NOT PRINTED\n"));
2195 //INC_CHECK_X(); 2195 //INC_CHECK_X();
2196 break; 2196 break;
2197 case 0x1035: // Message ID 2197 case 0x1035: // Message ID
2198 DEBUG_EMAIL(("Message ID - ")); 2198 DEBUG_EMAIL(("Message ID - "));
2199 MALLOC_EMAIL(item); 2199 MALLOC_EMAIL(item);
2200 LIST_COPY(item->email->messageid, (char*)); 2200 LIST_COPY(item->email->messageid, (char*));
2201 DEBUG_EMAIL(("%s\n", item->email->messageid)); 2201 DEBUG_EMAIL(("%s\n", item->email->messageid));
2202 //INC_CHECK_X(); 2202 //INC_CHECK_X();
2203 break; 2203 break;
2204 case 0x1042: // in-reply-to 2204 case 0x1042: // in-reply-to
2205 DEBUG_EMAIL(("In-Reply-To - ")); 2205 DEBUG_EMAIL(("In-Reply-To - "));
2206 MALLOC_EMAIL(item); 2206 MALLOC_EMAIL(item);
2207 LIST_COPY(item->email->in_reply_to, (char*)); 2207 LIST_COPY(item->email->in_reply_to, (char*));
2208 DEBUG_EMAIL(("%s\n", item->email->in_reply_to)); 2208 DEBUG_EMAIL(("%s\n", item->email->in_reply_to));
2209 //INC_CHECK_X(); 2209 //INC_CHECK_X();
2210 break; 2210 break;
2211 case 0x1046: // Return Path 2211 case 0x1046: // Return Path
2212 DEBUG_EMAIL(("Return Path - ")); 2212 DEBUG_EMAIL(("Return Path - "));
2213 MALLOC_EMAIL(item); 2213 MALLOC_EMAIL(item);
2214 LIST_COPY(item->email->return_path_address, (char*)); 2214 LIST_COPY(item->email->return_path_address, (char*));
2215 DEBUG_EMAIL(("%s\n", item->email->return_path_address)); 2215 DEBUG_EMAIL(("%s\n", item->email->return_path_address));
2216 //INC_CHECK_X(); 2216 //INC_CHECK_X();
2217 break; 2217 break;
2218 case 0x3001: // PR_DISPLAY_NAME File As 2218 case 0x3001: // PR_DISPLAY_NAME File As
2219 DEBUG_EMAIL(("Display Name - ")); 2219 DEBUG_EMAIL(("Display Name - "));
2220 LIST_COPY(item->file_as, (char*)); 2220 LIST_COPY(item->file_as, (char*));
2221 DEBUG_EMAIL(("%s\n", item->file_as)); 2221 DEBUG_EMAIL(("%s\n", item->file_as));
2222 //INC_CHECK_X(); 2222 //INC_CHECK_X();
2223 break; 2223 break;
2224 case 0x3002: // PR_ADDRTYPE 2224 case 0x3002: // PR_ADDRTYPE
2225 DEBUG_EMAIL(("Address Type - ")); 2225 DEBUG_EMAIL(("Address Type - "));
2226 MALLOC_CONTACT(item); 2226 MALLOC_CONTACT(item);
2227 LIST_COPY(item->contact->address1_transport, (char*)); 2227 LIST_COPY(item->contact->address1_transport, (char*));
2228 DEBUG_EMAIL(("%s\n", item->contact->address1_transport)); 2228 DEBUG_EMAIL(("%s\n", item->contact->address1_transport));
2229 //INC_CHECK_X(); 2229 //INC_CHECK_X();
2230 break; 2230 break;
2231 case 0x3003: // PR_EMAIL_ADDRESS 2231 case 0x3003: // PR_EMAIL_ADDRESS
2232 // Contact's email address 2232 // Contact's email address
2233 DEBUG_EMAIL(("Contact Address - ")); 2233 DEBUG_EMAIL(("Contact Address - "));
2234 MALLOC_CONTACT(item); 2234 MALLOC_CONTACT(item);
2235 LIST_COPY(item->contact->address1, (char*)); 2235 LIST_COPY(item->contact->address1, (char*));
2236 DEBUG_EMAIL(("%s\n", item->contact->address1)); 2236 DEBUG_EMAIL(("%s\n", item->contact->address1));
2237 //INC_CHECK_X(); 2237 //INC_CHECK_X();
2238 break; 2238 break;
2239 case 0x3004: // PR_COMMENT Comment for item - usually folders 2239 case 0x3004: // PR_COMMENT Comment for item - usually folders
2240 DEBUG_EMAIL(("Comment - ")); 2240 DEBUG_EMAIL(("Comment - "));
2241 LIST_COPY(item->comment, (char*)); 2241 LIST_COPY(item->comment, (char*));
2242 DEBUG_EMAIL(("%s\n", item->comment)); 2242 DEBUG_EMAIL(("%s\n", item->comment));
2243 //INC_CHECK_X(); 2243 //INC_CHECK_X();
2244 break; 2244 break;
2245 case 0x3007: // PR_CREATION_TIME Date 4 - Creation Date? 2245 case 0x3007: // PR_CREATION_TIME Date 4 - Creation Date?
2246 DEBUG_EMAIL(("Date 4 (Item Creation Date) - ")); 2246 DEBUG_EMAIL(("Date 4 (Item Creation Date) - "));
2247 LIST_COPY(item->create_date, (FILETIME*)); 2247 LIST_COPY(item->create_date, (FILETIME*));
2248 DEBUG_EMAIL(("%s", fileTimeToAscii(item->create_date))); 2248 DEBUG_EMAIL(("%s", fileTimeToAscii(item->create_date)));
2249 //INC_CHECK_X(); 2249 //INC_CHECK_X();
2250 break; 2250 break;
2251 case 0x3008: // PR_LAST_MODIFICATION_TIME Date 5 - Modify Date 2251 case 0x3008: // PR_LAST_MODIFICATION_TIME Date 5 - Modify Date
2252 DEBUG_EMAIL(("Date 5 (Modify Date) - ")); 2252 DEBUG_EMAIL(("Date 5 (Modify Date) - "));
2253 LIST_COPY(item->modify_date, (FILETIME*)); 2253 LIST_COPY(item->modify_date, (FILETIME*));
2254 DEBUG_EMAIL(("%s", fileTimeToAscii(item->modify_date))); 2254 DEBUG_EMAIL(("%s", fileTimeToAscii(item->modify_date)));
2255 //INC_CHECK_X(); 2255 //INC_CHECK_X();
2256 break; 2256 break;
2257 case 0x300B: // PR_SEARCH_KEY Record Header 2 2257 case 0x300B: // PR_SEARCH_KEY Record Header 2
2258 DEBUG_EMAIL(("Record Search 2 -- NOT HANDLED\n")); 2258 DEBUG_EMAIL(("Record Search 2 -- NOT HANDLED\n"));
2259 //INC_CHECK_X(); 2259 //INC_CHECK_X();
2260 break; 2260 break;
2261 case 0x35DF: // PR_VALID_FOLDER_MASK 2261 case 0x35DF: // PR_VALID_FOLDER_MASK
2262 // States which folders are valid for this message store 2262 // States which folders are valid for this message store
2263 // FOLDER_IPM_SUBTREE_VALID 0x1 2263 // FOLDER_IPM_SUBTREE_VALID 0x1
2264 // FOLDER_IPM_INBOX_VALID 0x2 2264 // FOLDER_IPM_INBOX_VALID 0x2
2265 // FOLDER_IPM_OUTBOX_VALID 0x4 2265 // FOLDER_IPM_OUTBOX_VALID 0x4
2266 // FOLDER_IPM_WASTEBOX_VALID 0x8 2266 // FOLDER_IPM_WASTEBOX_VALID 0x8
2267 // FOLDER_IPM_SENTMAIL_VALID 0x10 2267 // FOLDER_IPM_SENTMAIL_VALID 0x10
2268 // FOLDER_VIEWS_VALID 0x20 2268 // FOLDER_VIEWS_VALID 0x20
2269 // FOLDER_COMMON_VIEWS_VALID 0x40 2269 // FOLDER_COMMON_VIEWS_VALID 0x40
2270 // FOLDER_FINDER_VALID 0x80 2270 // FOLDER_FINDER_VALID 0x80
2271 DEBUG_EMAIL(("Valid Folder Mask - ")); 2271 DEBUG_EMAIL(("Valid Folder Mask - "));
2272 MALLOC_MESSAGESTORE(item); 2272 MALLOC_MESSAGESTORE(item);
2273 memcpy(&(item->message_store->valid_mask), list->items[x]->data, sizeof(int)); 2273 memcpy(&(item->message_store->valid_mask), list->items[x]->data, sizeof(int));
2274 LE32_CPU(item->message_store->valid_mask); 2274 LE32_CPU(item->message_store->valid_mask);
2275 DEBUG_EMAIL(("%i\n", item->message_store->valid_mask)); 2275 DEBUG_EMAIL(("%i\n", item->message_store->valid_mask));
2276 //INC_CHECK_X(); 2276 //INC_CHECK_X();
2277 break; 2277 break;
2278 case 0x35E0: // PR_IPM_SUBTREE_ENTRYID Top of Personal Folder Record 2278 case 0x35E0: // PR_IPM_SUBTREE_ENTRYID Top of Personal Folder Record
2279 DEBUG_EMAIL(("Top of Personal Folder Record - ")); 2279 DEBUG_EMAIL(("Top of Personal Folder Record - "));
2280 MALLOC_MESSAGESTORE(item); 2280 MALLOC_MESSAGESTORE(item);
2281 LIST_COPY(item->message_store->top_of_personal_folder, (pst_entryid*)); 2281 LIST_COPY(item->message_store->top_of_personal_folder, (pst_entryid*));
2282 LE32_CPU(item->message_store->top_of_personal_folder->id); 2282 LE32_CPU(item->message_store->top_of_personal_folder->id);
2283 DEBUG_EMAIL(("[id = %#x]\n", item->message_store->top_of_personal_folder->id)); 2283 DEBUG_EMAIL(("[id = %#x]\n", item->message_store->top_of_personal_folder->id));
2284 //INC_CHECK_X(); 2284 //INC_CHECK_X();
2285 break; 2285 break;
2286 case 0x35E3: // PR_IPM_WASTEBASKET_ENTRYID Deleted Items Folder Record 2286 case 0x35E3: // PR_IPM_WASTEBASKET_ENTRYID Deleted Items Folder Record
2287 DEBUG_EMAIL(("Deleted Items Folder record - ")); 2287 DEBUG_EMAIL(("Deleted Items Folder record - "));
2288 MALLOC_MESSAGESTORE(item); 2288 MALLOC_MESSAGESTORE(item);
2289 LIST_COPY(item->message_store->deleted_items_folder, (pst_entryid*)); 2289 LIST_COPY(item->message_store->deleted_items_folder, (pst_entryid*));
2290 LE32_CPU(item->message_store->deleted_items_folder->id); 2290 LE32_CPU(item->message_store->deleted_items_folder->id);
2291 DEBUG_EMAIL(("[id = %#x]\n", item->message_store->deleted_items_folder->id)); 2291 DEBUG_EMAIL(("[id = %#x]\n", item->message_store->deleted_items_folder->id));
2292 //INC_CHECK_X(); 2292 //INC_CHECK_X();
2293 break; 2293 break;
2294 case 0x35E7: // PR_FINDER_ENTRYID Search Root Record 2294 case 0x35E7: // PR_FINDER_ENTRYID Search Root Record
2295 DEBUG_EMAIL(("Search Root record - ")); 2295 DEBUG_EMAIL(("Search Root record - "));
2296 MALLOC_MESSAGESTORE(item); 2296 MALLOC_MESSAGESTORE(item);
2297 LIST_COPY(item->message_store->search_root_folder, (pst_entryid*)); 2297 LIST_COPY(item->message_store->search_root_folder, (pst_entryid*));
2298 LE32_CPU(item->message_store->search_root_folder->id); 2298 LE32_CPU(item->message_store->search_root_folder->id);
2299 DEBUG_EMAIL(("[id = %#x]\n", item->message_store->search_root_folder->id)); 2299 DEBUG_EMAIL(("[id = %#x]\n", item->message_store->search_root_folder->id));
2300 //INC_CHECK_X(); 2300 //INC_CHECK_X();
2301 break; 2301 break;
2302 case 0x3602: // PR_CONTENT_COUNT Number of emails stored in a folder 2302 case 0x3602: // PR_CONTENT_COUNT Number of emails stored in a folder
2303 DEBUG_EMAIL(("Folder Email Count - ")); 2303 DEBUG_EMAIL(("Folder Email Count - "));
2304 MALLOC_FOLDER(item); 2304 MALLOC_FOLDER(item);
2305 memcpy(&(item->folder->email_count), list->items[x]->data, sizeof(item->folder->email_count)); 2305 memcpy(&(item->folder->email_count), list->items[x]->data, sizeof(item->folder->email_count));
2306 LE32_CPU(item->folder->email_count); 2306 LE32_CPU(item->folder->email_count);
2307 DEBUG_EMAIL(("%i\n", item->folder->email_count)); 2307 DEBUG_EMAIL(("%i\n", item->folder->email_count));
2308 //INC_CHECK_X(); 2308 //INC_CHECK_X();
2309 break; 2309 break;
2310 case 0x3603: // PR_CONTENT_UNREAD Number of unread emails 2310 case 0x3603: // PR_CONTENT_UNREAD Number of unread emails
2311 DEBUG_EMAIL(("Unread Email Count - ")); 2311 DEBUG_EMAIL(("Unread Email Count - "));
2312 MALLOC_FOLDER(item); 2312 MALLOC_FOLDER(item);
2313 memcpy(&(item->folder->unseen_email_count), list->items[x]->data, sizeof(item->folder->unseen_email_count)); 2313 memcpy(&(item->folder->unseen_email_count), list->items[x]->data, sizeof(item->folder->unseen_email_count));
2314 LE32_CPU(item->folder->unseen_email_count); 2314 LE32_CPU(item->folder->unseen_email_count);
2315 DEBUG_EMAIL(("%i\n", item->folder->unseen_email_count)); 2315 DEBUG_EMAIL(("%i\n", item->folder->unseen_email_count));
2316 //INC_CHECK_X(); 2316 //INC_CHECK_X();
2317 break; 2317 break;
2318 case 0x360A: // PR_SUBFOLDERS Has children 2318 case 0x360A: // PR_SUBFOLDERS Has children
2319 DEBUG_EMAIL(("Has Subfolders - ")); 2319 DEBUG_EMAIL(("Has Subfolders - "));
2320 MALLOC_FOLDER(item); 2320 MALLOC_FOLDER(item);
2321 if (*((int32_t*)list->items[x]->data) != 0) { 2321 if (*((int32_t*)list->items[x]->data) != 0) {
2322 DEBUG_EMAIL(("True\n")); 2322 DEBUG_EMAIL(("True\n"));
2323 item->folder->subfolder = 1; 2323 item->folder->subfolder = 1;
2324 } else { 2324 } else {
2325 DEBUG_EMAIL(("False\n")); 2325 DEBUG_EMAIL(("False\n"));
2326 item->folder->subfolder = 0; 2326 item->folder->subfolder = 0;
2327 } 2327 }
2328 //INC_CHECK_X(); 2328 //INC_CHECK_X();
2329 break; 2329 break;
2330 case 0x3613: // PR_CONTAINER_CLASS IPF.x 2330 case 0x3613: // PR_CONTAINER_CLASS IPF.x
2331 DEBUG_EMAIL(("IPF.x - ")); 2331 DEBUG_EMAIL(("IPF.x - "));
2332 LIST_COPY(item->ascii_type, (char*)); 2332 LIST_COPY(item->ascii_type, (char*));
2333 if (strncmp("IPF.Note", item->ascii_type, 8) == 0) 2333 if (strncmp("IPF.Note", item->ascii_type, 8) == 0)
2334 item->type = PST_TYPE_NOTE; 2334 item->type = PST_TYPE_NOTE;
2335 else if (strncmp("IPF.Contact", item->ascii_type, 11) == 0) 2335 else if (strncmp("IPF.Contact", item->ascii_type, 11) == 0)
2336 item->type = PST_TYPE_CONTACT; 2336 item->type = PST_TYPE_CONTACT;
2337 else if (strncmp("IPF.Journal", item->ascii_type, 11) == 0) 2337 else if (strncmp("IPF.Journal", item->ascii_type, 11) == 0)
2338 item->type = PST_TYPE_JOURNAL; 2338 item->type = PST_TYPE_JOURNAL;
2339 else if (strncmp("IPF.Appointment", item->ascii_type, 15) == 0) 2339 else if (strncmp("IPF.Appointment", item->ascii_type, 15) == 0)
2340 item->type = PST_TYPE_APPOINTMENT; 2340 item->type = PST_TYPE_APPOINTMENT;
2341 else if (strncmp("IPF.StickyNote", item->ascii_type, 14) == 0) 2341 else if (strncmp("IPF.StickyNote", item->ascii_type, 14) == 0)
2342 item->type = PST_TYPE_STICKYNOTE; 2342 item->type = PST_TYPE_STICKYNOTE;
2343 else if (strncmp("IPF.Task", item->ascii_type, 8) == 0) 2343 else if (strncmp("IPF.Task", item->ascii_type, 8) == 0)
2344 item->type = PST_TYPE_TASK; 2344 item->type = PST_TYPE_TASK;
2345 else 2345 else
2346 item->type = PST_TYPE_OTHER; 2346 item->type = PST_TYPE_OTHER;
2347 2347
2348 DEBUG_EMAIL(("%s [%i]\n", item->ascii_type, item->type)); 2348 DEBUG_EMAIL(("%s [%i]\n", item->ascii_type, item->type));
2349 //INC_CHECK_X(); 2349 //INC_CHECK_X();
2350 break; 2350 break;
2351 case 0x3617: // PR_ASSOC_CONTENT_COUNT 2351 case 0x3617: // PR_ASSOC_CONTENT_COUNT
2352 // associated content are items that are attached to this folder 2352 // associated content are items that are attached to this folder
2353 // but are hidden from users 2353 // but are hidden from users
2354 DEBUG_EMAIL(("Associate Content count - ")); 2354 DEBUG_EMAIL(("Associate Content count - "));
2355 MALLOC_FOLDER(item); 2355 MALLOC_FOLDER(item);
2356 memcpy(&(item->folder->assoc_count), list->items[x]->data, sizeof(item->folder->assoc_count)); 2356 memcpy(&(item->folder->assoc_count), list->items[x]->data, sizeof(item->folder->assoc_count));
2357 LE32_CPU(item->folder->assoc_count); 2357 LE32_CPU(item->folder->assoc_count);
2358 DEBUG_EMAIL(("%i [%#x]\n", item->folder->assoc_count, item->folder->assoc_count)); 2358 DEBUG_EMAIL(("%i [%#x]\n", item->folder->assoc_count, item->folder->assoc_count));
2359 //INC_CHECK_X(); 2359 //INC_CHECK_X();
2360 break; 2360 break;
2361 case 0x3701: // PR_ATTACH_DATA_OBJ binary data of attachment 2361 case 0x3701: // PR_ATTACH_DATA_OBJ binary data of attachment
2362 DEBUG_EMAIL(("Binary Data [Size %i] - ", 2362 DEBUG_EMAIL(("Binary Data [Size %i] - ",
2363 list->items[x]->size)); 2363 list->items[x]->size));
2364 NULL_CHECK(attach); 2364 NULL_CHECK(attach);
2365 MOVE_NEXT(attach); 2365 MOVE_NEXT(attach);
2366 if (list->items[x]->data == NULL) { //special case 2366 if (list->items[x]->data == NULL) { //special case
2367 attach->id2_val = list->items[x]->type; 2367 attach->id2_val = list->items[x]->type;
2368 DEBUG_EMAIL(("Seen a Reference. The data hasn't been loaded yet. [%#x][%#x]\n", 2368 DEBUG_EMAIL(("Seen a Reference. The data hasn't been loaded yet. [%#x][%#x]\n",
2369 attach->id2_val, list->items[x]->type)); 2369 attach->id2_val, list->items[x]->type));
2370 } else { 2370 } else {
2371 LIST_COPY(attach->data, (char*)); 2371 LIST_COPY(attach->data, (char*));
2372 attach->size = list->items[x]->size; 2372 attach->size = list->items[x]->size;
2373 DEBUG_EMAIL(("NOT PRINTED\n")); 2373 DEBUG_EMAIL(("NOT PRINTED\n"));
2374 } 2374 }
2375 //INC_CHECK_X(); 2375 //INC_CHECK_X();
2376 break; 2376 break;
2377 case 0x3704: // PR_ATTACH_FILENAME Attachment filename (8.3) 2377 case 0x3704: // PR_ATTACH_FILENAME Attachment filename (8.3)
2378 DEBUG_EMAIL(("Attachment Filename - ")); 2378 DEBUG_EMAIL(("Attachment Filename - "));
2379 NULL_CHECK(attach); 2379 NULL_CHECK(attach);
2380 MOVE_NEXT(attach); 2380 MOVE_NEXT(attach);
2381 LIST_COPY(attach->filename1, (char*)); 2381 LIST_COPY(attach->filename1, (char*));
2382 DEBUG_EMAIL(("%s\n", attach->filename1)); 2382 DEBUG_EMAIL(("%s\n", attach->filename1));
2383 //INC_CHECK_X(); 2383 //INC_CHECK_X();
2384 break; 2384 break;
2385 case 0x3705: // PR_ATTACH_METHOD 2385 case 0x3705: // PR_ATTACH_METHOD
2386 // 0 - No Attachment 2386 // 0 - No Attachment
2387 // 1 - Attach by Value 2387 // 1 - Attach by Value
2388 // 2 - Attach by reference 2388 // 2 - Attach by reference
2389 // 3 - Attach by ref resolve 2389 // 3 - Attach by ref resolve
2390 // 4 - Attach by ref only 2390 // 4 - Attach by ref only
2391 // 5 - Embedded Message 2391 // 5 - Embedded Message
2392 // 6 - OLE 2392 // 6 - OLE
2393 DEBUG_EMAIL(("Attachement method - ")); 2393 DEBUG_EMAIL(("Attachement method - "));
2394 NULL_CHECK(attach); 2394 NULL_CHECK(attach);
2395 MOVE_NEXT(attach); 2395 MOVE_NEXT(attach);
2396 memcpy(&(attach->method), list->items[x]->data, sizeof(attach->method)); 2396 memcpy(&(attach->method), list->items[x]->data, sizeof(attach->method));
2397 LE32_CPU(attach->method); 2397 LE32_CPU(attach->method);
2398 t = attach->method; 2398 t = attach->method;
2399 DEBUG_EMAIL(("%s [%i]\n", (t==0?"No Attachment": 2399 DEBUG_EMAIL(("%s [%i]\n", (t==0?"No Attachment":
2400 (t==1?"Attach By Value": 2400 (t==1?"Attach By Value":
2401 (t==2?"Attach By Reference": 2401 (t==2?"Attach By Reference":
2402 (t==3?"Attach by Ref. Resolve": 2402 (t==3?"Attach by Ref. Resolve":
2403 (t==4?"Attach by Ref. Only": 2403 (t==4?"Attach by Ref. Only":
2404 (t==5?"Embedded Message":"OLE")))))),t)); 2404 (t==5?"Embedded Message":"OLE")))))),t));
2405 //INC_CHECK_X(); 2405 //INC_CHECK_X();
2406 break; 2406 break;
2407 case 0x370B: // PR_RENDERING_POSITION 2407 case 0x370B: // PR_RENDERING_POSITION
2408 // position in characters that the attachment appears in the plain text body 2408 // position in characters that the attachment appears in the plain text body
2409 DEBUG_EMAIL(("Attachment Position - ")); 2409 DEBUG_EMAIL(("Attachment Position - "));
2410 NULL_CHECK(attach); 2410 NULL_CHECK(attach);
2411 MOVE_NEXT(attach); 2411 MOVE_NEXT(attach);
2412 memcpy(&(attach->position), list->items[x]->data, sizeof(attach->position)); 2412 memcpy(&(attach->position), list->items[x]->data, sizeof(attach->position));
2413 LE32_CPU(attach->position); 2413 LE32_CPU(attach->position);
2414 DEBUG_EMAIL(("%i [%#x]\n", attach->position)); 2414 DEBUG_EMAIL(("%i [%#x]\n", attach->position));
2415 //INC_CHECK_X(); 2415 //INC_CHECK_X();
2416 break; 2416 break;
2417 case 0x3707: // PR_ATTACH_LONG_FILENAME Attachment filename (long?) 2417 case 0x3707: // PR_ATTACH_LONG_FILENAME Attachment filename (long?)
2418 DEBUG_EMAIL(("Attachment Filename long - ")); 2418 DEBUG_EMAIL(("Attachment Filename long - "));
2419 NULL_CHECK(attach); 2419 NULL_CHECK(attach);
2420 MOVE_NEXT(attach); 2420 MOVE_NEXT(attach);
2421 LIST_COPY(attach->filename2, (char*)); 2421 LIST_COPY(attach->filename2, (char*));
2422 DEBUG_EMAIL(("%s\n", attach->filename2)); 2422 DEBUG_EMAIL(("%s\n", attach->filename2));
2423 //INC_CHECK_X(); 2423 //INC_CHECK_X();
2424 break; 2424 break;
2425 case 0x370E: // PR_ATTACH_MIME_TAG Mime type of encoding 2425 case 0x370E: // PR_ATTACH_MIME_TAG Mime type of encoding
2426 DEBUG_EMAIL(("Attachment mime encoding - ")); 2426 DEBUG_EMAIL(("Attachment mime encoding - "));
2427 NULL_CHECK(attach); 2427 NULL_CHECK(attach);
2428 MOVE_NEXT(attach); 2428 MOVE_NEXT(attach);
2429 LIST_COPY(attach->mimetype, (char*)); 2429 LIST_COPY(attach->mimetype, (char*));
2430 DEBUG_EMAIL(("%s\n", attach->mimetype)); 2430 DEBUG_EMAIL(("%s\n", attach->mimetype));
2431 //INC_CHECK_X(); 2431 //INC_CHECK_X();
2432 break; 2432 break;
2433 case 0x3710: // PR_ATTACH_MIME_SEQUENCE 2433 case 0x3710: // PR_ATTACH_MIME_SEQUENCE
2434 // sequence number for mime parts. Includes body 2434 // sequence number for mime parts. Includes body
2435 DEBUG_EMAIL(("Attachment Mime Sequence - ")); 2435 DEBUG_EMAIL(("Attachment Mime Sequence - "));
2436 NULL_CHECK(attach); 2436 NULL_CHECK(attach);
2437 MOVE_NEXT(attach); 2437 MOVE_NEXT(attach);
2438 memcpy(&(attach->sequence), list->items[x]->data, sizeof(attach->sequence)); 2438 memcpy(&(attach->sequence), list->items[x]->data, sizeof(attach->sequence));
2439 LE32_CPU(attach->sequence); 2439 LE32_CPU(attach->sequence);
2440 DEBUG_EMAIL(("%i\n", attach->sequence)); 2440 DEBUG_EMAIL(("%i\n", attach->sequence));
2441 //INC_CHECK_X(); 2441 //INC_CHECK_X();
2442 break; 2442 break;
2443 case 0x3A00: // PR_ACCOUNT 2443 case 0x3A00: // PR_ACCOUNT
2444 DEBUG_EMAIL(("Contact's Account name - ")); 2444 DEBUG_EMAIL(("Contact's Account name - "));
2445 MALLOC_CONTACT(item); 2445 MALLOC_CONTACT(item);
2446 LIST_COPY(item->contact->account_name, (char*)); 2446 LIST_COPY(item->contact->account_name, (char*));
2447 DEBUG_EMAIL(("%s\n", item->contact->account_name)); 2447 DEBUG_EMAIL(("%s\n", item->contact->account_name));
2448 break; 2448 break;
2449 case 0x3A01: // PR_ALTERNATE_RECIPIENT 2449 case 0x3A01: // PR_ALTERNATE_RECIPIENT
2450 DEBUG_EMAIL(("Contact Alternate Recipient - NOT PROCESSED\n")); 2450 DEBUG_EMAIL(("Contact Alternate Recipient - NOT PROCESSED\n"));
2451 break; 2451 break;
2452 case 0x3A02: // PR_CALLBACK_TELEPHONE_NUMBER 2452 case 0x3A02: // PR_CALLBACK_TELEPHONE_NUMBER
2453 DEBUG_EMAIL(("Callback telephone number - ")); 2453 DEBUG_EMAIL(("Callback telephone number - "));
2454 MALLOC_CONTACT(item); 2454 MALLOC_CONTACT(item);
2455 LIST_COPY(item->contact->callback_phone, (char*)); 2455 LIST_COPY(item->contact->callback_phone, (char*));
2456 DEBUG_EMAIL(("%s\n", item->contact->callback_phone)); 2456 DEBUG_EMAIL(("%s\n", item->contact->callback_phone));
2457 break; 2457 break;
2458 case 0x3A03: // PR_CONVERSION_PROHIBITED 2458 case 0x3A03: // PR_CONVERSION_PROHIBITED
2459 DEBUG_EMAIL(("Message Conversion Prohibited - ")); 2459 DEBUG_EMAIL(("Message Conversion Prohibited - "));
2460 MALLOC_EMAIL(item); 2460 MALLOC_EMAIL(item);
2461 if (*(int16_t*)list->items[x]->data != 0) { 2461 if (*(int16_t*)list->items[x]->data != 0) {
2462 DEBUG_EMAIL(("True\n")); 2462 DEBUG_EMAIL(("True\n"));
2463 item->email->conversion_prohib = 1; 2463 item->email->conversion_prohib = 1;
2464 } else { 2464 } else {
2465 DEBUG_EMAIL(("False\n")); 2465 DEBUG_EMAIL(("False\n"));
2466 item->email->conversion_prohib = 0; 2466 item->email->conversion_prohib = 0;
2467 } 2467 }
2468 break; 2468 break;
2469 case 0x3A05: // PR_GENERATION suffix 2469 case 0x3A05: // PR_GENERATION suffix
2470 DEBUG_EMAIL(("Contacts Suffix - ")); 2470 DEBUG_EMAIL(("Contacts Suffix - "));
2471 MALLOC_CONTACT(item); 2471 MALLOC_CONTACT(item);
2472 LIST_COPY(item->contact->suffix, (char*)); 2472 LIST_COPY(item->contact->suffix, (char*));
2473 DEBUG_EMAIL(("%s\n", item->contact->suffix)); 2473 DEBUG_EMAIL(("%s\n", item->contact->suffix));
2474 break; 2474 break;
2475 case 0x3A06: // PR_GIVEN_NAME Contact's first name 2475 case 0x3A06: // PR_GIVEN_NAME Contact's first name
2476 DEBUG_EMAIL(("Contacts First Name - ")); 2476 DEBUG_EMAIL(("Contacts First Name - "));
2477 MALLOC_CONTACT(item); 2477 MALLOC_CONTACT(item);
2478 LIST_COPY(item->contact->first_name, (char*)); 2478 LIST_COPY(item->contact->first_name, (char*));
2479 DEBUG_EMAIL(("%s\n", item->contact->first_name)); 2479 DEBUG_EMAIL(("%s\n", item->contact->first_name));
2480 //INC_CHECK_X(); 2480 //INC_CHECK_X();
2481 break; 2481 break;
2482 case 0x3A07: // PR_GOVERNMENT_ID_NUMBER 2482 case 0x3A07: // PR_GOVERNMENT_ID_NUMBER
2483 DEBUG_EMAIL(("Contacts Government ID Number - ")); 2483 DEBUG_EMAIL(("Contacts Government ID Number - "));
2484 MALLOC_CONTACT(item); 2484 MALLOC_CONTACT(item);
2485 LIST_COPY(item->contact->gov_id, (char*)); 2485 LIST_COPY(item->contact->gov_id, (char*));
2486 DEBUG_EMAIL(("%s\n", item->contact->gov_id)); 2486 DEBUG_EMAIL(("%s\n", item->contact->gov_id));
2487 break; 2487 break;
2488 case 0x3A08: // PR_BUSINESS_TELEPHONE_NUMBER 2488 case 0x3A08: // PR_BUSINESS_TELEPHONE_NUMBER
2489 DEBUG_EMAIL(("Business Telephone Number - ")); 2489 DEBUG_EMAIL(("Business Telephone Number - "));
2490 MALLOC_CONTACT(item); 2490 MALLOC_CONTACT(item);
2491 LIST_COPY(item->contact->business_phone, (char*)); 2491 LIST_COPY(item->contact->business_phone, (char*));
2492 DEBUG_EMAIL(("%s\n", item->contact->business_phone)); 2492 DEBUG_EMAIL(("%s\n", item->contact->business_phone));
2493 break; 2493 break;
2494 case 0x3A09: // PR_HOME_TELEPHONE_NUMBER 2494 case 0x3A09: // PR_HOME_TELEPHONE_NUMBER
2495 DEBUG_EMAIL(("Home Telephone Number - ")); 2495 DEBUG_EMAIL(("Home Telephone Number - "));
2496 MALLOC_CONTACT(item); 2496 MALLOC_CONTACT(item);
2497 LIST_COPY(item->contact->home_phone, (char*)); 2497 LIST_COPY(item->contact->home_phone, (char*));
2498 DEBUG_EMAIL(("%s\n", item->contact->home_phone)); 2498 DEBUG_EMAIL(("%s\n", item->contact->home_phone));
2499 break; 2499 break;
2500 case 0x3A0A: // PR_INITIALS Contact's Initials 2500 case 0x3A0A: // PR_INITIALS Contact's Initials
2501 DEBUG_EMAIL(("Contacts Initials - ")); 2501 DEBUG_EMAIL(("Contacts Initials - "));
2502 MALLOC_CONTACT(item); 2502 MALLOC_CONTACT(item);
2503 LIST_COPY(item->contact->initials, (char*)); 2503 LIST_COPY(item->contact->initials, (char*));
2504 DEBUG_EMAIL(("%s\n", item->contact->initials)); 2504 DEBUG_EMAIL(("%s\n", item->contact->initials));
2505 //INC_CHECK_X(); 2505 //INC_CHECK_X();
2506 break; 2506 break;
2507 case 0x3A0B: // PR_KEYWORD 2507 case 0x3A0B: // PR_KEYWORD
2508 DEBUG_EMAIL(("Keyword - ")); 2508 DEBUG_EMAIL(("Keyword - "));
2509 MALLOC_CONTACT(item); 2509 MALLOC_CONTACT(item);
2510 LIST_COPY(item->contact->keyword, (char*)); 2510 LIST_COPY(item->contact->keyword, (char*));
2511 DEBUG_EMAIL(("%s\n", item->contact->keyword)); 2511 DEBUG_EMAIL(("%s\n", item->contact->keyword));
2512 break; 2512 break;
2513 case 0x3A0C: // PR_LANGUAGE 2513 case 0x3A0C: // PR_LANGUAGE
2514 DEBUG_EMAIL(("Contact's Language - ")); 2514 DEBUG_EMAIL(("Contact's Language - "));
2515 MALLOC_CONTACT(item); 2515 MALLOC_CONTACT(item);
2516 LIST_COPY(item->contact->language, (char*)); 2516 LIST_COPY(item->contact->language, (char*));
2517 DEBUG_EMAIL(("%s\n", item->contact->language)); 2517 DEBUG_EMAIL(("%s\n", item->contact->language));
2518 break; 2518 break;
2519 case 0x3A0D: // PR_LOCATION 2519 case 0x3A0D: // PR_LOCATION
2520 DEBUG_EMAIL(("Contact's Location - ")); 2520 DEBUG_EMAIL(("Contact's Location - "));
2521 MALLOC_CONTACT(item); 2521 MALLOC_CONTACT(item);
2522 LIST_COPY(item->contact->location, (char*)); 2522 LIST_COPY(item->contact->location, (char*));
2523 DEBUG_EMAIL(("%s\n", item->contact->location)); 2523 DEBUG_EMAIL(("%s\n", item->contact->location));
2524 break; 2524 break;
2525 case 0x3A0E: // PR_MAIL_PERMISSION - Can the recipient receive and send email 2525 case 0x3A0E: // PR_MAIL_PERMISSION - Can the recipient receive and send email
2526 DEBUG_EMAIL(("Mail Permission - ")); 2526 DEBUG_EMAIL(("Mail Permission - "));
2527 MALLOC_CONTACT(item); 2527 MALLOC_CONTACT(item);
2528 if (*(int16_t*)list->items[x]->data != 0) { 2528 if (*(int16_t*)list->items[x]->data != 0) {
2529 DEBUG_EMAIL(("True\n")); 2529 DEBUG_EMAIL(("True\n"));
2530 item->contact->mail_permission = 1; 2530 item->contact->mail_permission = 1;
2531 } else { 2531 } else {
2532 DEBUG_EMAIL(("False\n")); 2532 DEBUG_EMAIL(("False\n"));
2533 item->contact->mail_permission = 0; 2533 item->contact->mail_permission = 0;
2534 } 2534 }
2535 break; 2535 break;
2536 case 0x3A0F: // PR_MHS_COMMON_NAME 2536 case 0x3A0F: // PR_MHS_COMMON_NAME
2537 DEBUG_EMAIL(("MHS Common Name - ")); 2537 DEBUG_EMAIL(("MHS Common Name - "));
2538 MALLOC_EMAIL(item); 2538 MALLOC_EMAIL(item);
2539 LIST_COPY(item->email->common_name, (char*)); 2539 LIST_COPY(item->email->common_name, (char*));
2540 DEBUG_EMAIL(("%s\n", item->email->common_name)); 2540 DEBUG_EMAIL(("%s\n", item->email->common_name));
2541 break; 2541 break;
2542 case 0x3A10: // PR_ORGANIZATIONAL_ID_NUMBER 2542 case 0x3A10: // PR_ORGANIZATIONAL_ID_NUMBER
2543 DEBUG_EMAIL(("Organizational ID # - ")); 2543 DEBUG_EMAIL(("Organizational ID # - "));
2544 MALLOC_CONTACT(item); 2544 MALLOC_CONTACT(item);
2545 LIST_COPY(item->contact->org_id, (char*)); 2545 LIST_COPY(item->contact->org_id, (char*));
2546 DEBUG_EMAIL(("%s\n", item->contact->org_id)); 2546 DEBUG_EMAIL(("%s\n", item->contact->org_id));
2547 break; 2547 break;
2548 case 0x3A11: // PR_SURNAME Contact's Surname 2548 case 0x3A11: // PR_SURNAME Contact's Surname
2549 DEBUG_EMAIL(("Contacts Surname - ")); 2549 DEBUG_EMAIL(("Contacts Surname - "));
2550 MALLOC_CONTACT(item); 2550 MALLOC_CONTACT(item);
2551 LIST_COPY(item->contact->surname, (char*)); 2551 LIST_COPY(item->contact->surname, (char*));
2552 DEBUG_EMAIL(("%s\n", item->contact->surname)); 2552 DEBUG_EMAIL(("%s\n", item->contact->surname));
2553 //INC_CHECK_X(); 2553 //INC_CHECK_X();
2554 break; 2554 break;
2555 case 0x3A12: // PR_ORIGINAL_ENTRY_ID 2555 case 0x3A12: // PR_ORIGINAL_ENTRY_ID
2556 DEBUG_EMAIL(("Original Entry ID - NOT PROCESSED\n")); 2556 DEBUG_EMAIL(("Original Entry ID - NOT PROCESSED\n"));
2557 break; 2557 break;
2558 case 0x3A13: // PR_ORIGINAL_DISPLAY_NAME 2558 case 0x3A13: // PR_ORIGINAL_DISPLAY_NAME
2559 DEBUG_EMAIL(("Original Display Name - NOT PROCESSED\n")); 2559 DEBUG_EMAIL(("Original Display Name - NOT PROCESSED\n"));
2560 break; 2560 break;
2561 case 0x3A14: // PR_ORIGINAL_SEARCH_KEY 2561 case 0x3A14: // PR_ORIGINAL_SEARCH_KEY
2562 DEBUG_EMAIL(("Original Search Key - NOT PROCESSED\n")); 2562 DEBUG_EMAIL(("Original Search Key - NOT PROCESSED\n"));
2563 break; 2563 break;
2564 case 0x3A15: // PR_POSTAL_ADDRESS 2564 case 0x3A15: // PR_POSTAL_ADDRESS
2565 DEBUG_EMAIL(("Default Postal Address - ")); 2565 DEBUG_EMAIL(("Default Postal Address - "));
2566 MALLOC_CONTACT(item); 2566 MALLOC_CONTACT(item);
2567 LIST_COPY(item->contact->def_postal_address, (char*)); 2567 LIST_COPY(item->contact->def_postal_address, (char*));
2568 DEBUG_EMAIL(("%s\n", item->contact->def_postal_address)); 2568 DEBUG_EMAIL(("%s\n", item->contact->def_postal_address));
2569 break; 2569 break;
2570 case 0x3A16: // PR_COMPANY_NAME 2570 case 0x3A16: // PR_COMPANY_NAME
2571 DEBUG_EMAIL(("Company Name - ")); 2571 DEBUG_EMAIL(("Company Name - "));
2572 MALLOC_CONTACT(item); 2572 MALLOC_CONTACT(item);
2573 LIST_COPY(item->contact->company_name, (char*)); 2573 LIST_COPY(item->contact->company_name, (char*));
2574 DEBUG_EMAIL(("%s\n", item->contact->company_name)); 2574 DEBUG_EMAIL(("%s\n", item->contact->company_name));
2575 break; 2575 break;
2576 case 0x3A17: // PR_TITLE - Job Title 2576 case 0x3A17: // PR_TITLE - Job Title
2577 DEBUG_EMAIL(("Job Title - ")); 2577 DEBUG_EMAIL(("Job Title - "));
2578 MALLOC_CONTACT(item); 2578 MALLOC_CONTACT(item);
2579 LIST_COPY(item->contact->job_title, (char*)); 2579 LIST_COPY(item->contact->job_title, (char*));
2580 DEBUG_EMAIL(("%s\n", item->contact->job_title)); 2580 DEBUG_EMAIL(("%s\n", item->contact->job_title));
2581 break; 2581 break;
2582 case 0x3A18: // PR_DEPARTMENT_NAME 2582 case 0x3A18: // PR_DEPARTMENT_NAME
2583 DEBUG_EMAIL(("Department Name - ")); 2583 DEBUG_EMAIL(("Department Name - "));
2584 MALLOC_CONTACT(item); 2584 MALLOC_CONTACT(item);
2585 LIST_COPY(item->contact->department, (char*)); 2585 LIST_COPY(item->contact->department, (char*));
2586 DEBUG_EMAIL(("%s\n", item->contact->department)); 2586 DEBUG_EMAIL(("%s\n", item->contact->department));
2587 break; 2587 break;
2588 case 0x3A19: // PR_OFFICE_LOCATION 2588 case 0x3A19: // PR_OFFICE_LOCATION
2589 DEBUG_EMAIL(("Office Location - ")); 2589 DEBUG_EMAIL(("Office Location - "));
2590 MALLOC_CONTACT(item); 2590 MALLOC_CONTACT(item);
2591 LIST_COPY(item->contact->office_loc, (char*)); 2591 LIST_COPY(item->contact->office_loc, (char*));
2592 DEBUG_EMAIL(("%s\n", item->contact->office_loc)); 2592 DEBUG_EMAIL(("%s\n", item->contact->office_loc));
2593 break; 2593 break;
2594 case 0x3A1A: // PR_PRIMARY_TELEPHONE_NUMBER 2594 case 0x3A1A: // PR_PRIMARY_TELEPHONE_NUMBER
2595 DEBUG_EMAIL(("Primary Telephone - ")); 2595 DEBUG_EMAIL(("Primary Telephone - "));
2596 MALLOC_CONTACT(item); 2596 MALLOC_CONTACT(item);
2597 LIST_COPY(item->contact->primary_phone, (char*)); 2597 LIST_COPY(item->contact->primary_phone, (char*));
2598 DEBUG_EMAIL(("%s\n", item->contact->primary_phone)); 2598 DEBUG_EMAIL(("%s\n", item->contact->primary_phone));
2599 break; 2599 break;
2600 case 0x3A1B: // PR_BUSINESS2_TELEPHONE_NUMBER 2600 case 0x3A1B: // PR_BUSINESS2_TELEPHONE_NUMBER
2601 DEBUG_EMAIL(("Business Phone Number 2 - ")); 2601 DEBUG_EMAIL(("Business Phone Number 2 - "));
2602 MALLOC_CONTACT(item); 2602 MALLOC_CONTACT(item);
2603 LIST_COPY(item->contact->business_phone2, (char*)); 2603 LIST_COPY(item->contact->business_phone2, (char*));
2604 DEBUG_EMAIL(("%s\n", item->contact->business_phone2)); 2604 DEBUG_EMAIL(("%s\n", item->contact->business_phone2));
2605 break; 2605 break;
2606 case 0x3A1C: // PR_MOBILE_TELEPHONE_NUMBER 2606 case 0x3A1C: // PR_MOBILE_TELEPHONE_NUMBER
2607 DEBUG_EMAIL(("Mobile Phone Number - ")); 2607 DEBUG_EMAIL(("Mobile Phone Number - "));
2608 MALLOC_CONTACT(item); 2608 MALLOC_CONTACT(item);
2609 LIST_COPY(item->contact->mobile_phone, (char*)); 2609 LIST_COPY(item->contact->mobile_phone, (char*));
2610 DEBUG_EMAIL(("%s\n", item->contact->mobile_phone)); 2610 DEBUG_EMAIL(("%s\n", item->contact->mobile_phone));
2611 break; 2611 break;
2612 case 0x3A1D: // PR_RADIO_TELEPHONE_NUMBER 2612 case 0x3A1D: // PR_RADIO_TELEPHONE_NUMBER
2613 DEBUG_EMAIL(("Radio Phone Number - ")); 2613 DEBUG_EMAIL(("Radio Phone Number - "));
2614 MALLOC_CONTACT(item); 2614 MALLOC_CONTACT(item);
2615 LIST_COPY(item->contact->radio_phone, (char*)); 2615 LIST_COPY(item->contact->radio_phone, (char*));
2616 DEBUG_EMAIL(("%s\n", item->contact->radio_phone)); 2616 DEBUG_EMAIL(("%s\n", item->contact->radio_phone));
2617 break; 2617 break;
2618 case 0x3A1E: // PR_CAR_TELEPHONE_NUMBER 2618 case 0x3A1E: // PR_CAR_TELEPHONE_NUMBER
2619 DEBUG_EMAIL(("Car Phone Number - ")); 2619 DEBUG_EMAIL(("Car Phone Number - "));
2620 MALLOC_CONTACT(item); 2620 MALLOC_CONTACT(item);
2621 LIST_COPY(item->contact->car_phone, (char*)); 2621 LIST_COPY(item->contact->car_phone, (char*));
2622 DEBUG_EMAIL(("%s\n", item->contact->car_phone)); 2622 DEBUG_EMAIL(("%s\n", item->contact->car_phone));
2623 break; 2623 break;
2624 case 0x3A1F: // PR_OTHER_TELEPHONE_NUMBER 2624 case 0x3A1F: // PR_OTHER_TELEPHONE_NUMBER
2625 DEBUG_EMAIL(("Other Phone Number - ")); 2625 DEBUG_EMAIL(("Other Phone Number - "));
2626 MALLOC_CONTACT(item); 2626 MALLOC_CONTACT(item);
2627 LIST_COPY(item->contact->other_phone, (char*)); 2627 LIST_COPY(item->contact->other_phone, (char*));
2628 DEBUG_EMAIL(("%s\n", item->contact->other_phone)); 2628 DEBUG_EMAIL(("%s\n", item->contact->other_phone));
2629 break; 2629 break;
2630 case 0x3A20: // PR_TRANSMITTABLE_DISPLAY_NAME 2630 case 0x3A20: // PR_TRANSMITTABLE_DISPLAY_NAME
2631 DEBUG_EMAIL(("Transmittable Display Name - ")); 2631 DEBUG_EMAIL(("Transmittable Display Name - "));
2632 MALLOC_CONTACT(item); 2632 MALLOC_CONTACT(item);
2633 LIST_COPY(item->contact->transmittable_display_name, (char*)); 2633 LIST_COPY(item->contact->transmittable_display_name, (char*));
2634 DEBUG_EMAIL(("%s\n", item->contact->transmittable_display_name)); 2634 DEBUG_EMAIL(("%s\n", item->contact->transmittable_display_name));
2635 break; 2635 break;
2636 case 0x3A21: // PR_PAGER_TELEPHONE_NUMBER 2636 case 0x3A21: // PR_PAGER_TELEPHONE_NUMBER
2637 DEBUG_EMAIL(("Pager Phone Number - ")); 2637 DEBUG_EMAIL(("Pager Phone Number - "));
2638 MALLOC_CONTACT(item); 2638 MALLOC_CONTACT(item);
2639 LIST_COPY(item->contact->pager_phone, (char*)); 2639 LIST_COPY(item->contact->pager_phone, (char*));
2640 DEBUG_EMAIL(("%s\n", item->contact->pager_phone)); 2640 DEBUG_EMAIL(("%s\n", item->contact->pager_phone));
2641 break; 2641 break;
2642 case 0x3A22: // PR_USER_CERTIFICATE 2642 case 0x3A22: // PR_USER_CERTIFICATE
2643 DEBUG_EMAIL(("User Certificate - NOT PROCESSED")); 2643 DEBUG_EMAIL(("User Certificate - NOT PROCESSED"));
2644 break; 2644 break;
2645 case 0x3A23: // PR_PRIMARY_FAX_NUMBER 2645 case 0x3A23: // PR_PRIMARY_FAX_NUMBER
2646 DEBUG_EMAIL(("Primary Fax Number - ")); 2646 DEBUG_EMAIL(("Primary Fax Number - "));
2647 MALLOC_CONTACT(item); 2647 MALLOC_CONTACT(item);
2648 LIST_COPY(item->contact->primary_fax, (char*)); 2648 LIST_COPY(item->contact->primary_fax, (char*));
2649 DEBUG_EMAIL(("%s\n", item->contact->primary_fax)); 2649 DEBUG_EMAIL(("%s\n", item->contact->primary_fax));
2650 break; 2650 break;
2651 case 0x3A24: // PR_BUSINESS_FAX_NUMBER 2651 case 0x3A24: // PR_BUSINESS_FAX_NUMBER
2652 DEBUG_EMAIL(("Business Fax Number - ")); 2652 DEBUG_EMAIL(("Business Fax Number - "));
2653 MALLOC_CONTACT(item); 2653 MALLOC_CONTACT(item);
2654 LIST_COPY(item->contact->business_fax, (char*)); 2654 LIST_COPY(item->contact->business_fax, (char*));
2655 DEBUG_EMAIL(("%s\n", item->contact->business_fax)); 2655 DEBUG_EMAIL(("%s\n", item->contact->business_fax));
2656 break; 2656 break;
2657 case 0x3A25: // PR_HOME_FAX_NUMBER 2657 case 0x3A25: // PR_HOME_FAX_NUMBER
2658 DEBUG_EMAIL(("Home Fax Number - ")); 2658 DEBUG_EMAIL(("Home Fax Number - "));
2659 MALLOC_CONTACT(item); 2659 MALLOC_CONTACT(item);
2660 LIST_COPY(item->contact->home_fax, (char*)); 2660 LIST_COPY(item->contact->home_fax, (char*));
2661 DEBUG_EMAIL(("%s\n", item->contact->home_fax)); 2661 DEBUG_EMAIL(("%s\n", item->contact->home_fax));
2662 break; 2662 break;
2663 case 0x3A26: // PR_BUSINESS_ADDRESS_COUNTRY 2663 case 0x3A26: // PR_BUSINESS_ADDRESS_COUNTRY
2664 DEBUG_EMAIL(("Business Address Country - ")); 2664 DEBUG_EMAIL(("Business Address Country - "));
2665 MALLOC_CONTACT(item); 2665 MALLOC_CONTACT(item);
2666 LIST_COPY(item->contact->business_country, (char*)); 2666 LIST_COPY(item->contact->business_country, (char*));
2667 DEBUG_EMAIL(("%s\n", item->contact->business_country)); 2667 DEBUG_EMAIL(("%s\n", item->contact->business_country));
2668 break; 2668 break;
2669 case 0x3A27: // PR_BUSINESS_ADDRESS_CITY 2669 case 0x3A27: // PR_BUSINESS_ADDRESS_CITY
2670 DEBUG_EMAIL(("Business Address City - ")); 2670 DEBUG_EMAIL(("Business Address City - "));
2671 MALLOC_CONTACT(item); 2671 MALLOC_CONTACT(item);
2672 LIST_COPY(item->contact->business_city, (char*)); 2672 LIST_COPY(item->contact->business_city, (char*));
2673 DEBUG_EMAIL(("%s\n", item->contact->business_city)); 2673 DEBUG_EMAIL(("%s\n", item->contact->business_city));
2674 break; 2674 break;
2675 case 0x3A28: // PR_BUSINESS_ADDRESS_STATE_OR_PROVINCE 2675 case 0x3A28: // PR_BUSINESS_ADDRESS_STATE_OR_PROVINCE
2676 DEBUG_EMAIL(("Business Address State - ")); 2676 DEBUG_EMAIL(("Business Address State - "));
2677 MALLOC_CONTACT(item); 2677 MALLOC_CONTACT(item);
2678 LIST_COPY(item->contact->business_state, (char*)); 2678 LIST_COPY(item->contact->business_state, (char*));
2679 DEBUG_EMAIL(("%s\n", item->contact->business_state)); 2679 DEBUG_EMAIL(("%s\n", item->contact->business_state));
2680 break; 2680 break;
2681 case 0x3A29: // PR_BUSINESS_ADDRESS_STREET 2681 case 0x3A29: // PR_BUSINESS_ADDRESS_STREET
2682 DEBUG_EMAIL(("Business Address Street - ")); 2682 DEBUG_EMAIL(("Business Address Street - "));
2683 MALLOC_CONTACT(item); 2683 MALLOC_CONTACT(item);
2684 LIST_COPY(item->contact->business_street, (char*)); 2684 LIST_COPY(item->contact->business_street, (char*));
2685 DEBUG_EMAIL(("%s\n", item->contact->business_street)); 2685 DEBUG_EMAIL(("%s\n", item->contact->business_street));
2686 break; 2686 break;
2687 case 0x3A2A: // PR_BUSINESS_POSTAL_CODE 2687 case 0x3A2A: // PR_BUSINESS_POSTAL_CODE
2688 DEBUG_EMAIL(("Business Postal Code - ")); 2688 DEBUG_EMAIL(("Business Postal Code - "));
2689 MALLOC_CONTACT(item); 2689 MALLOC_CONTACT(item);
2690 LIST_COPY(item->contact->business_postal_code, (char*)); 2690 LIST_COPY(item->contact->business_postal_code, (char*));
2691 DEBUG_EMAIL(("%s\n", item->contact->business_postal_code)); 2691 DEBUG_EMAIL(("%s\n", item->contact->business_postal_code));
2692 break; 2692 break;
2693 case 0x3A2B: // PR_BUSINESS_PO_BOX 2693 case 0x3A2B: // PR_BUSINESS_PO_BOX
2694 DEBUG_EMAIL(("Business PO Box - ")); 2694 DEBUG_EMAIL(("Business PO Box - "));
2695 MALLOC_CONTACT(item); 2695 MALLOC_CONTACT(item);
2696 LIST_COPY(item->contact->business_po_box, (char*)); 2696 LIST_COPY(item->contact->business_po_box, (char*));
2697 DEBUG_EMAIL(("%s\n", item->contact->business_po_box)); 2697 DEBUG_EMAIL(("%s\n", item->contact->business_po_box));
2698 break; 2698 break;
2699 case 0x3A2C: // PR_TELEX_NUMBER 2699 case 0x3A2C: // PR_TELEX_NUMBER
2700 DEBUG_EMAIL(("Telex Number - ")); 2700 DEBUG_EMAIL(("Telex Number - "));
2701 MALLOC_CONTACT(item); 2701 MALLOC_CONTACT(item);
2702 LIST_COPY(item->contact->telex, (char*)); 2702 LIST_COPY(item->contact->telex, (char*));
2703 DEBUG_EMAIL(("%s\n", item->contact->telex)); 2703 DEBUG_EMAIL(("%s\n", item->contact->telex));
2704 break; 2704 break;
2705 case 0x3A2D: // PR_ISDN_NUMBER 2705 case 0x3A2D: // PR_ISDN_NUMBER
2706 DEBUG_EMAIL(("ISDN Number - ")); 2706 DEBUG_EMAIL(("ISDN Number - "));
2707 MALLOC_CONTACT(item); 2707 MALLOC_CONTACT(item);
2708 LIST_COPY(item->contact->isdn_phone, (char*)); 2708 LIST_COPY(item->contact->isdn_phone, (char*));
2709 DEBUG_EMAIL(("%s\n", item->contact->isdn_phone)); 2709 DEBUG_EMAIL(("%s\n", item->contact->isdn_phone));
2710 break; 2710 break;
2711 case 0x3A2E: // PR_ASSISTANT_TELEPHONE_NUMBER 2711 case 0x3A2E: // PR_ASSISTANT_TELEPHONE_NUMBER
2712 DEBUG_EMAIL(("Assistant Phone Number - ")); 2712 DEBUG_EMAIL(("Assistant Phone Number - "));
2713 MALLOC_CONTACT(item); 2713 MALLOC_CONTACT(item);
2714 LIST_COPY(item->contact->assistant_phone, (char*)); 2714 LIST_COPY(item->contact->assistant_phone, (char*));
2715 DEBUG_EMAIL(("%s\n", item->contact->assistant_phone)); 2715 DEBUG_EMAIL(("%s\n", item->contact->assistant_phone));
2716 break; 2716 break;
2717 case 0x3A2F: // PR_HOME2_TELEPHONE_NUMBER 2717 case 0x3A2F: // PR_HOME2_TELEPHONE_NUMBER
2718 DEBUG_EMAIL(("Home Phone 2 - ")); 2718 DEBUG_EMAIL(("Home Phone 2 - "));
2719 MALLOC_CONTACT(item); 2719 MALLOC_CONTACT(item);
2720 LIST_COPY(item->contact->home_phone2, (char*)); 2720 LIST_COPY(item->contact->home_phone2, (char*));
2721 DEBUG_EMAIL(("%s\n", item->contact->home_phone2)); 2721 DEBUG_EMAIL(("%s\n", item->contact->home_phone2));
2722 break; 2722 break;
2723 case 0x3A30: // PR_ASSISTANT 2723 case 0x3A30: // PR_ASSISTANT
2724 DEBUG_EMAIL(("Assistant's Name - ")); 2724 DEBUG_EMAIL(("Assistant's Name - "));
2725 MALLOC_CONTACT(item); 2725 MALLOC_CONTACT(item);
2726 LIST_COPY(item->contact->assistant_name, (char*)); 2726 LIST_COPY(item->contact->assistant_name, (char*));
2727 DEBUG_EMAIL(("%s\n", item->contact->assistant_name)); 2727 DEBUG_EMAIL(("%s\n", item->contact->assistant_name));
2728 break; 2728 break;
2729 case 0x3A40: // PR_SEND_RICH_INFO 2729 case 0x3A40: // PR_SEND_RICH_INFO
2730 DEBUG_EMAIL(("Can receive Rich Text - ")); 2730 DEBUG_EMAIL(("Can receive Rich Text - "));
2731 MALLOC_CONTACT(item); 2731 MALLOC_CONTACT(item);
2732 if(*(int16_t*)list->items[x]->data != 0) { 2732 if(*(int16_t*)list->items[x]->data != 0) {
2733 DEBUG_EMAIL(("True\n")); 2733 DEBUG_EMAIL(("True\n"));
2734 item->contact->rich_text = 1; 2734 item->contact->rich_text = 1;
2735 } else { 2735 } else {
2736 DEBUG_EMAIL(("False\n")); 2736 DEBUG_EMAIL(("False\n"));
2737 item->contact->rich_text = 0; 2737 item->contact->rich_text = 0;
2738 } 2738 }
2739 break; 2739 break;
2740 case 0x3A41: // PR_WEDDING_ANNIVERSARY 2740 case 0x3A41: // PR_WEDDING_ANNIVERSARY
2741 DEBUG_EMAIL(("Wedding Anniversary - ")); 2741 DEBUG_EMAIL(("Wedding Anniversary - "));
2742 MALLOC_CONTACT(item); 2742 MALLOC_CONTACT(item);
2743 LIST_COPY(item->contact->wedding_anniversary, (FILETIME*)); 2743 LIST_COPY(item->contact->wedding_anniversary, (FILETIME*));
2744 DEBUG_EMAIL(("%s\n", fileTimeToAscii(item->contact->wedding_anniversary))); 2744 DEBUG_EMAIL(("%s\n", fileTimeToAscii(item->contact->wedding_anniversary)));
2745 break; 2745 break;
2746 case 0x3A42: // PR_BIRTHDAY 2746 case 0x3A42: // PR_BIRTHDAY
2747 DEBUG_EMAIL(("Birthday - ")); 2747 DEBUG_EMAIL(("Birthday - "));
2748 MALLOC_CONTACT(item); 2748 MALLOC_CONTACT(item);
2749 LIST_COPY(item->contact->birthday, (FILETIME*)); 2749 LIST_COPY(item->contact->birthday, (FILETIME*));
2750 DEBUG_EMAIL(("%s\n", fileTimeToAscii(item->contact->birthday))); 2750 DEBUG_EMAIL(("%s\n", fileTimeToAscii(item->contact->birthday)));
2751 break; 2751 break;
2752 case 0x3A43: // PR_HOBBIES 2752 case 0x3A43: // PR_HOBBIES
2753 DEBUG_EMAIL(("Hobbies - ")); 2753 DEBUG_EMAIL(("Hobbies - "));
2754 MALLOC_CONTACT(item); 2754 MALLOC_CONTACT(item);
2755 LIST_COPY(item->contact->hobbies, (char*)); 2755 LIST_COPY(item->contact->hobbies, (char*));
2756 DEBUG_EMAIL(("%s\n", item->contact->hobbies)); 2756 DEBUG_EMAIL(("%s\n", item->contact->hobbies));
2757 break; 2757 break;
2758 case 0x3A44: // PR_MIDDLE_NAME 2758 case 0x3A44: // PR_MIDDLE_NAME
2759 DEBUG_EMAIL(("Middle Name - ")); 2759 DEBUG_EMAIL(("Middle Name - "));
2760 MALLOC_CONTACT(item); 2760 MALLOC_CONTACT(item);
2761 LIST_COPY(item->contact->middle_name, (char*)); 2761 LIST_COPY(item->contact->middle_name, (char*));
2762 DEBUG_EMAIL(("%s\n", item->contact->middle_name)); 2762 DEBUG_EMAIL(("%s\n", item->contact->middle_name));
2763 break; 2763 break;
2764 case 0x3A45: // PR_DISPLAY_NAME_PREFIX 2764 case 0x3A45: // PR_DISPLAY_NAME_PREFIX
2765 DEBUG_EMAIL(("Display Name Prefix (Title) - ")); 2765 DEBUG_EMAIL(("Display Name Prefix (Title) - "));
2766 MALLOC_CONTACT(item); 2766 MALLOC_CONTACT(item);
2767 LIST_COPY(item->contact->display_name_prefix, (char*)); 2767 LIST_COPY(item->contact->display_name_prefix, (char*));
2768 DEBUG_EMAIL(("%s\n", item->contact->display_name_prefix)); 2768 DEBUG_EMAIL(("%s\n", item->contact->display_name_prefix));
2769 break; 2769 break;
2770 case 0x3A46: // PR_PROFESSION 2770 case 0x3A46: // PR_PROFESSION
2771 DEBUG_EMAIL(("Profession - ")); 2771 DEBUG_EMAIL(("Profession - "));
2772 MALLOC_CONTACT(item); 2772 MALLOC_CONTACT(item);
2773 LIST_COPY(item->contact->profession, (char*)); 2773 LIST_COPY(item->contact->profession, (char*));
2774 DEBUG_EMAIL(("%s\n", item->contact->profession)); 2774 DEBUG_EMAIL(("%s\n", item->contact->profession));
2775 break; 2775 break;
2776 case 0x3A47: // PR_PREFERRED_BY_NAME 2776 case 0x3A47: // PR_PREFERRED_BY_NAME
2777 DEBUG_EMAIL(("Preferred By Name - ")); 2777 DEBUG_EMAIL(("Preferred By Name - "));
2778 MALLOC_CONTACT(item); 2778 MALLOC_CONTACT(item);
2779 LIST_COPY(item->contact->pref_name, (char*)); 2779 LIST_COPY(item->contact->pref_name, (char*));
2780 DEBUG_EMAIL(("%s\n", item->contact->pref_name)); 2780 DEBUG_EMAIL(("%s\n", item->contact->pref_name));
2781 break; 2781 break;
2782 case 0x3A48: // PR_SPOUSE_NAME 2782 case 0x3A48: // PR_SPOUSE_NAME
2783 DEBUG_EMAIL(("Spouse's Name - ")); 2783 DEBUG_EMAIL(("Spouse's Name - "));
2784 MALLOC_CONTACT(item); 2784 MALLOC_CONTACT(item);
2785 LIST_COPY(item->contact->spouse_name, (char*)); 2785 LIST_COPY(item->contact->spouse_name, (char*));
2786 DEBUG_EMAIL(("%s\n", item->contact->spouse_name)); 2786 DEBUG_EMAIL(("%s\n", item->contact->spouse_name));
2787 break; 2787 break;
2788 case 0x3A49: // PR_COMPUTER_NETWORK_NAME 2788 case 0x3A49: // PR_COMPUTER_NETWORK_NAME
2789 DEBUG_EMAIL(("Computer Network Name - ")); 2789 DEBUG_EMAIL(("Computer Network Name - "));
2790 MALLOC_CONTACT(item); 2790 MALLOC_CONTACT(item);
2791 LIST_COPY(item->contact->computer_name, (char*)); 2791 LIST_COPY(item->contact->computer_name, (char*));
2792 DEBUG_EMAIL(("%s\n", item->contact->computer_name)); 2792 DEBUG_EMAIL(("%s\n", item->contact->computer_name));
2793 break; 2793 break;
2794 case 0x3A4A: // PR_CUSTOMER_ID 2794 case 0x3A4A: // PR_CUSTOMER_ID
2795 DEBUG_EMAIL(("Customer ID - ")); 2795 DEBUG_EMAIL(("Customer ID - "));
2796 MALLOC_CONTACT(item); 2796 MALLOC_CONTACT(item);
2797 LIST_COPY(item->contact->customer_id, (char*)); 2797 LIST_COPY(item->contact->customer_id, (char*));
2798 DEBUG_EMAIL(("%s\n", item->contact->customer_id)); 2798 DEBUG_EMAIL(("%s\n", item->contact->customer_id));
2799 break; 2799 break;
2800 case 0x3A4B: // PR_TTYTDD_PHONE_NUMBER 2800 case 0x3A4B: // PR_TTYTDD_PHONE_NUMBER
2801 DEBUG_EMAIL(("TTY/TDD Phone - ")); 2801 DEBUG_EMAIL(("TTY/TDD Phone - "));
2802 MALLOC_CONTACT(item); 2802 MALLOC_CONTACT(item);
2803 LIST_COPY(item->contact->ttytdd_phone, (char*)); 2803 LIST_COPY(item->contact->ttytdd_phone, (char*));
2804 DEBUG_EMAIL(("%s\n", item->contact->ttytdd_phone)); 2804 DEBUG_EMAIL(("%s\n", item->contact->ttytdd_phone));
2805 break; 2805 break;
2806 case 0x3A4C: // PR_FTP_SITE 2806 case 0x3A4C: // PR_FTP_SITE
2807 DEBUG_EMAIL(("Ftp Site - ")); 2807 DEBUG_EMAIL(("Ftp Site - "));
2808 MALLOC_CONTACT(item); 2808 MALLOC_CONTACT(item);
2809 LIST_COPY(item->contact->ftp_site, (char*)); 2809 LIST_COPY(item->contact->ftp_site, (char*));
2810 DEBUG_EMAIL(("%s\n", item->contact->ftp_site)); 2810 DEBUG_EMAIL(("%s\n", item->contact->ftp_site));
2811 break; 2811 break;
2812 case 0x3A4D: // PR_GENDER 2812 case 0x3A4D: // PR_GENDER
2813 DEBUG_EMAIL(("Gender - ")); 2813 DEBUG_EMAIL(("Gender - "));
2814 MALLOC_CONTACT(item); 2814 MALLOC_CONTACT(item);
2815 memcpy(&item->contact->gender, list->items[x]->data, sizeof(int16_t)); 2815 memcpy(&item->contact->gender, list->items[x]->data, sizeof(int16_t));
2816 LE16_CPU(item->contact->gender); 2816 LE16_CPU(item->contact->gender);
2817 switch(item->contact->gender) { 2817 switch(item->contact->gender) {
2818 case 0: 2818 case 0:
2819 DEBUG_EMAIL(("Unspecified\n")); 2819 DEBUG_EMAIL(("Unspecified\n"));
2820 break; 2820 break;
2821 case 1: 2821 case 1:
2822 DEBUG_EMAIL(("Female\n")); 2822 DEBUG_EMAIL(("Female\n"));
2823 break; 2823 break;
2824 case 2: 2824 case 2:
2825 DEBUG_EMAIL(("Male\n")); 2825 DEBUG_EMAIL(("Male\n"));
2826 break; 2826 break;
2827 default: 2827 default:
2828 DEBUG_EMAIL(("Error processing\n")); 2828 DEBUG_EMAIL(("Error processing\n"));
2829 } 2829 }
2830 break; 2830 break;
2831 case 0x3A4E: // PR_MANAGER_NAME 2831 case 0x3A4E: // PR_MANAGER_NAME
2832 DEBUG_EMAIL(("Manager's Name - ")); 2832 DEBUG_EMAIL(("Manager's Name - "));
2833 MALLOC_CONTACT(item); 2833 MALLOC_CONTACT(item);
2834 LIST_COPY(item->contact->manager_name, (char*)); 2834 LIST_COPY(item->contact->manager_name, (char*));
2835 DEBUG_EMAIL(("%s\n", item->contact->manager_name)); 2835 DEBUG_EMAIL(("%s\n", item->contact->manager_name));
2836 break; 2836 break;
2837 case 0x3A4F: // PR_NICKNAME 2837 case 0x3A4F: // PR_NICKNAME
2838 DEBUG_EMAIL(("Nickname - ")); 2838 DEBUG_EMAIL(("Nickname - "));
2839 MALLOC_CONTACT(item); 2839 MALLOC_CONTACT(item);
2840 LIST_COPY(item->contact->nickname, (char*)); 2840 LIST_COPY(item->contact->nickname, (char*));
2841 DEBUG_EMAIL(("%s\n", item->contact->nickname)); 2841 DEBUG_EMAIL(("%s\n", item->contact->nickname));
2842 break; 2842 break;
2843 case 0x3A50: // PR_PERSONAL_HOME_PAGE 2843 case 0x3A50: // PR_PERSONAL_HOME_PAGE
2844 DEBUG_EMAIL(("Personal Home Page - ")); 2844 DEBUG_EMAIL(("Personal Home Page - "));
2845 MALLOC_CONTACT(item); 2845 MALLOC_CONTACT(item);
2846 LIST_COPY(item->contact->personal_homepage, (char*)); 2846 LIST_COPY(item->contact->personal_homepage, (char*));
2847 DEBUG_EMAIL(("%s\n", item->contact->personal_homepage)); 2847 DEBUG_EMAIL(("%s\n", item->contact->personal_homepage));
2848 break; 2848 break;
2849 case 0x3A51: // PR_BUSINESS_HOME_PAGE 2849 case 0x3A51: // PR_BUSINESS_HOME_PAGE
2850 DEBUG_EMAIL(("Business Home Page - ")); 2850 DEBUG_EMAIL(("Business Home Page - "));
2851 MALLOC_CONTACT(item); 2851 MALLOC_CONTACT(item);
2852 LIST_COPY(item->contact->business_homepage, (char*)); 2852 LIST_COPY(item->contact->business_homepage, (char*));
2853 DEBUG_EMAIL(("%s\n", item->contact->business_homepage)); 2853 DEBUG_EMAIL(("%s\n", item->contact->business_homepage));
2854 break; 2854 break;
2855 case 0x3A57: // PR_COMPANY_MAIN_PHONE_NUMBER 2855 case 0x3A57: // PR_COMPANY_MAIN_PHONE_NUMBER
2856 DEBUG_EMAIL(("Company Main Phone - ")); 2856 DEBUG_EMAIL(("Company Main Phone - "));
2857 MALLOC_CONTACT(item); 2857 MALLOC_CONTACT(item);
2858 LIST_COPY(item->contact->company_main_phone, (char*)); 2858 LIST_COPY(item->contact->company_main_phone, (char*));
2859 DEBUG_EMAIL(("%s\n", item->contact->company_main_phone)); 2859 DEBUG_EMAIL(("%s\n", item->contact->company_main_phone));
2860 break; 2860 break;
2861 case 0x3A58: // PR_CHILDRENS_NAMES 2861 case 0x3A58: // PR_CHILDRENS_NAMES
2862 DEBUG_EMAIL(("Children's Names - NOT PROCESSED\n")); 2862 DEBUG_EMAIL(("Children's Names - NOT PROCESSED\n"));
2863 break; 2863 break;
2864 case 0x3A59: // PR_HOME_ADDRESS_CITY 2864 case 0x3A59: // PR_HOME_ADDRESS_CITY
2865 DEBUG_EMAIL(("Home Address City - ")); 2865 DEBUG_EMAIL(("Home Address City - "));
2866 MALLOC_CONTACT(item); 2866 MALLOC_CONTACT(item);
2867 LIST_COPY(item->contact->home_city, (char*)); 2867 LIST_COPY(item->contact->home_city, (char*));
2868 DEBUG_EMAIL(("%s\n", item->contact->home_city)); 2868 DEBUG_EMAIL(("%s\n", item->contact->home_city));
2869 break; 2869 break;
2870 case 0x3A5A: // PR_HOME_ADDRESS_COUNTRY 2870 case 0x3A5A: // PR_HOME_ADDRESS_COUNTRY
2871 DEBUG_EMAIL(("Home Address Country - ")); 2871 DEBUG_EMAIL(("Home Address Country - "));
2872 MALLOC_CONTACT(item); 2872 MALLOC_CONTACT(item);
2873 LIST_COPY(item->contact->home_country, (char*)); 2873 LIST_COPY(item->contact->home_country, (char*));
2874 DEBUG_EMAIL(("%s\n", item->contact->home_country)); 2874 DEBUG_EMAIL(("%s\n", item->contact->home_country));
2875 break; 2875 break;
2876 case 0x3A5B: // PR_HOME_ADDRESS_POSTAL_CODE 2876 case 0x3A5B: // PR_HOME_ADDRESS_POSTAL_CODE
2877 DEBUG_EMAIL(("Home Address Postal Code - ")); 2877 DEBUG_EMAIL(("Home Address Postal Code - "));
2878 MALLOC_CONTACT(item); 2878 MALLOC_CONTACT(item);
2879 LIST_COPY(item->contact->home_postal_code, (char*)); 2879 LIST_COPY(item->contact->home_postal_code, (char*));
2880 DEBUG_EMAIL(("%s\n", item->contact->home_postal_code)); 2880 DEBUG_EMAIL(("%s\n", item->contact->home_postal_code));
2881 break; 2881 break;
2882 case 0x3A5C: // PR_HOME_ADDRESS_STATE_OR_PROVINCE 2882 case 0x3A5C: // PR_HOME_ADDRESS_STATE_OR_PROVINCE
2883 DEBUG_EMAIL(("Home Address State or Province - ")); 2883 DEBUG_EMAIL(("Home Address State or Province - "));
2884 MALLOC_CONTACT(item); 2884 MALLOC_CONTACT(item);
2885 LIST_COPY(item->contact->home_state, (char*)); 2885 LIST_COPY(item->contact->home_state, (char*));
2886 DEBUG_EMAIL(("%s\n", item->contact->home_state)); 2886 DEBUG_EMAIL(("%s\n", item->contact->home_state));
2887 break; 2887 break;
2888 case 0x3A5D: // PR_HOME_ADDRESS_STREET 2888 case 0x3A5D: // PR_HOME_ADDRESS_STREET
2889 DEBUG_EMAIL(("Home Address Street - ")); 2889 DEBUG_EMAIL(("Home Address Street - "));
2890 MALLOC_CONTACT(item); 2890 MALLOC_CONTACT(item);
2891 LIST_COPY(item->contact->home_street, (char*)); 2891 LIST_COPY(item->contact->home_street, (char*));
2892 DEBUG_EMAIL(("%s\n", item->contact->home_street)); 2892 DEBUG_EMAIL(("%s\n", item->contact->home_street));
2893 break; 2893 break;
2894 case 0x3A5E: // PR_HOME_ADDRESS_POST_OFFICE_BOX 2894 case 0x3A5E: // PR_HOME_ADDRESS_POST_OFFICE_BOX
2895 DEBUG_EMAIL(("Home Address Post Office Box - ")); 2895 DEBUG_EMAIL(("Home Address Post Office Box - "));
2896 MALLOC_CONTACT(item); 2896 MALLOC_CONTACT(item);
2897 LIST_COPY(item->contact->home_po_box, (char*)); 2897 LIST_COPY(item->contact->home_po_box, (char*));
2898 DEBUG_EMAIL(("%s\n", item->contact->home_po_box)); 2898 DEBUG_EMAIL(("%s\n", item->contact->home_po_box));
2899 break; 2899 break;
2900 case 0x3A5F: // PR_OTHER_ADDRESS_CITY 2900 case 0x3A5F: // PR_OTHER_ADDRESS_CITY
2901 DEBUG_EMAIL(("Other Address City - ")); 2901 DEBUG_EMAIL(("Other Address City - "));
2902 MALLOC_CONTACT(item); 2902 MALLOC_CONTACT(item);
2903 LIST_COPY(item->contact->other_city, (char*)); 2903 LIST_COPY(item->contact->other_city, (char*));
2904 DEBUG_EMAIL(("%s\n", item->contact->other_city)); 2904 DEBUG_EMAIL(("%s\n", item->contact->other_city));
2905 break; 2905 break;
2906 case 0x3A60: // PR_OTHER_ADDRESS_COUNTRY 2906 case 0x3A60: // PR_OTHER_ADDRESS_COUNTRY
2907 DEBUG_EMAIL(("Other Address Country - ")); 2907 DEBUG_EMAIL(("Other Address Country - "));
2908 MALLOC_CONTACT(item); 2908 MALLOC_CONTACT(item);
2909 LIST_COPY(item->contact->other_country, (char*)); 2909 LIST_COPY(item->contact->other_country, (char*));
2910 DEBUG_EMAIL(("%s\n", item->contact->other_country)); 2910 DEBUG_EMAIL(("%s\n", item->contact->other_country));
2911 break; 2911 break;
2912 case 0x3A61: // PR_OTHER_ADDRESS_POSTAL_CODE 2912 case 0x3A61: // PR_OTHER_ADDRESS_POSTAL_CODE
2913 DEBUG_EMAIL(("Other Address Postal Code - ")); 2913 DEBUG_EMAIL(("Other Address Postal Code - "));
2914 MALLOC_CONTACT(item); 2914 MALLOC_CONTACT(item);
2915 LIST_COPY(item->contact->other_postal_code, (char*)); 2915 LIST_COPY(item->contact->other_postal_code, (char*));
2916 DEBUG_EMAIL(("%s\n", item->contact->other_postal_code)); 2916 DEBUG_EMAIL(("%s\n", item->contact->other_postal_code));
2917 break; 2917 break;
2918 case 0x3A62: // PR_OTHER_ADDRESS_STATE_OR_PROVINCE 2918 case 0x3A62: // PR_OTHER_ADDRESS_STATE_OR_PROVINCE
2919 DEBUG_EMAIL(("Other Address State - ")); 2919 DEBUG_EMAIL(("Other Address State - "));
2920 MALLOC_CONTACT(item); 2920 MALLOC_CONTACT(item);
2921 LIST_COPY(item->contact->other_state, (char*)); 2921 LIST_COPY(item->contact->other_state, (char*));
2922 DEBUG_EMAIL(("%s\n", item->contact->other_state)); 2922 DEBUG_EMAIL(("%s\n", item->contact->other_state));
2923 break; 2923 break;
2924 case 0x3A63: // PR_OTHER_ADDRESS_STREET 2924 case 0x3A63: // PR_OTHER_ADDRESS_STREET
2925 DEBUG_EMAIL(("Other Address Street - ")); 2925 DEBUG_EMAIL(("Other Address Street - "));
2926 MALLOC_CONTACT(item); 2926 MALLOC_CONTACT(item);
2927 LIST_COPY(item->contact->other_street, (char*)); 2927 LIST_COPY(item->contact->other_street, (char*));
2928 DEBUG_EMAIL(("%s\n", item->contact->other_street)); 2928 DEBUG_EMAIL(("%s\n", item->contact->other_street));
2929 break; 2929 break;
2930 case 0x3A64: // PR_OTHER_ADDRESS_POST_OFFICE_BOX 2930 case 0x3A64: // PR_OTHER_ADDRESS_POST_OFFICE_BOX
2931 DEBUG_EMAIL(("Other Address Post Office box - ")); 2931 DEBUG_EMAIL(("Other Address Post Office box - "));
2932 MALLOC_CONTACT(item); 2932 MALLOC_CONTACT(item);
2933 LIST_COPY(item->contact->other_po_box, (char*)); 2933 LIST_COPY(item->contact->other_po_box, (char*));
2934 DEBUG_EMAIL(("%s\n", item->contact->other_po_box)); 2934 DEBUG_EMAIL(("%s\n", item->contact->other_po_box));
2935 break; 2935 break;
2936 case 0x65E3: // Entry ID? 2936 case 0x65E3: // Entry ID?
2937 DEBUG_EMAIL(("Entry ID - ")); 2937 DEBUG_EMAIL(("Entry ID - "));
2938 item->record_key = (char*) xmalloc(16+1); 2938 item->record_key = (char*) xmalloc(16+1);
2939 memcpy(item->record_key, &(list->items[x]->data[1]), 16); //skip first byte 2939 memcpy(item->record_key, &(list->items[x]->data[1]), 16); //skip first byte
2940 item->record_key[16]='\0'; 2940 item->record_key[16]='\0';
2941 item->record_key_size=16; 2941 item->record_key_size=16;
2942 DEBUG_EMAIL_HEXPRINT((char*)item->record_key, 16); 2942 DEBUG_EMAIL_HEXPRINT((char*)item->record_key, 16);
2943 //INC_CHECK_X(); 2943 //INC_CHECK_X();
2944 break; 2944 break;
2945 case 0x67F2: // ID2 value of the attachments proper record 2945 case 0x67F2: // ID2 value of the attachments proper record
2946 DEBUG_EMAIL(("Attachment ID2 value - ")); 2946 DEBUG_EMAIL(("Attachment ID2 value - "));
2947 if (attach != NULL){ 2947 if (attach != NULL){
2948 MOVE_NEXT(attach); 2948 MOVE_NEXT(attach);
2949 memcpy(&(attach->id2_val), list->items[x]->data, sizeof(attach->id2_val)); 2949 memcpy(&(attach->id2_val), list->items[x]->data, sizeof(attach->id2_val));
2950 LE32_CPU(attach->id2_val); 2950 LE32_CPU(attach->id2_val);
2951 DEBUG_EMAIL(("%#x\n", attach->id2_val)); 2951 DEBUG_EMAIL(("%#x\n", attach->id2_val));
2952 } else { 2952 } else {
2953 DEBUG_EMAIL(("NOT AN ATTACHMENT: %#x\n", list->items[x]->id)); 2953 DEBUG_EMAIL(("NOT AN ATTACHMENT: %#x\n", list->items[x]->id));
2954 } 2954 }
2955 //INC_CHECK_X(); 2955 //INC_CHECK_X();
2956 break; 2956 break;
2957 case 0x67FF: // Extra Property Identifier (Password CheckSum) 2957 case 0x67FF: // Extra Property Identifier (Password CheckSum)
2958 DEBUG_EMAIL(("Password checksum [0x67FF] - ")); 2958 DEBUG_EMAIL(("Password checksum [0x67FF] - "));
2959 MALLOC_MESSAGESTORE(item); 2959 MALLOC_MESSAGESTORE(item);
2960 memcpy(&(item->message_store->pwd_chksum), list->items[x]->data, 2960 memcpy(&(item->message_store->pwd_chksum), list->items[x]->data,
2961 sizeof(item->message_store->pwd_chksum)); 2961 sizeof(item->message_store->pwd_chksum));
2962 DEBUG_EMAIL(("%#x\n", item->message_store->pwd_chksum)); 2962 DEBUG_EMAIL(("%#x\n", item->message_store->pwd_chksum));
2963 //INC_CHECK_X(); 2963 //INC_CHECK_X();
2964 break; 2964 break;
2965 case 0x6F02: // Secure HTML Body 2965 case 0x6F02: // Secure HTML Body
2966 DEBUG_EMAIL(("Secure HTML Body - ")); 2966 DEBUG_EMAIL(("Secure HTML Body - "));
2967 MALLOC_EMAIL(item); 2967 MALLOC_EMAIL(item);
2968 LIST_COPY(item->email->encrypted_htmlbody, (char*)); 2968 LIST_COPY(item->email->encrypted_htmlbody, (char*));
2969 item->email->encrypted_htmlbody_size = list->items[x]->size; 2969 item->email->encrypted_htmlbody_size = list->items[x]->size;
2970 DEBUG_EMAIL(("Not Printed\n")); 2970 DEBUG_EMAIL(("Not Printed\n"));
2971 //INC_CHECK_X(); 2971 //INC_CHECK_X();
2972 break; 2972 break;
2973 case 0x6F04: // Secure Text Body 2973 case 0x6F04: // Secure Text Body
2974 DEBUG_EMAIL(("Secure Text Body - ")); 2974 DEBUG_EMAIL(("Secure Text Body - "));
2975 MALLOC_EMAIL(item); 2975 MALLOC_EMAIL(item);
2976 LIST_COPY(item->email->encrypted_body, (char*)); 2976 LIST_COPY(item->email->encrypted_body, (char*));
2977 item->email->encrypted_body_size = list->items[x]->size; 2977 item->email->encrypted_body_size = list->items[x]->size;
2978 DEBUG_EMAIL(("Not Printed\n")); 2978 DEBUG_EMAIL(("Not Printed\n"));
2979 //INC_CHECK_X(); 2979 //INC_CHECK_X();
2980 break; 2980 break;
2981 case 0x7C07: // top of folders ENTRYID 2981 case 0x7C07: // top of folders ENTRYID
2982 DEBUG_EMAIL(("Top of folders RecID [0x7c07] - ")); 2982 DEBUG_EMAIL(("Top of folders RecID [0x7c07] - "));
2983 MALLOC_MESSAGESTORE(item); 2983 MALLOC_MESSAGESTORE(item);
2984 item->message_store->top_of_folder = (pst_entryid*) xmalloc(sizeof(pst_entryid)); 2984 item->message_store->top_of_folder = (pst_entryid*) xmalloc(sizeof(pst_entryid));
2985 memcpy(item->message_store->top_of_folder, list->items[x]->data, sizeof(pst_entryid)); 2985 memcpy(item->message_store->top_of_folder, list->items[x]->data, sizeof(pst_entryid));
2986 LE32_CPU(item->message_store->top_of_folder->u1); 2986 LE32_CPU(item->message_store->top_of_folder->u1);
2987 LE32_CPU(item->message_store->top_of_folder->id); 2987 LE32_CPU(item->message_store->top_of_folder->id);
2988 DEBUG_EMAIL_HEXPRINT((char*)item->message_store->top_of_folder->entryid, 16); 2988 DEBUG_EMAIL_HEXPRINT((char*)item->message_store->top_of_folder->entryid, 16);
2989 //INC_CHECK_X(); 2989 //INC_CHECK_X();
2990 break; 2990 break;
2991 case 0x8005: // Contact's Fullname 2991 case 0x8005: // Contact's Fullname
2992 DEBUG_EMAIL(("Contact Fullname - ")); 2992 DEBUG_EMAIL(("Contact Fullname - "));
2993 MALLOC_CONTACT(item); 2993 MALLOC_CONTACT(item);
2994 LIST_COPY(item->contact->fullname, (char*)); 2994 LIST_COPY(item->contact->fullname, (char*));
2995 DEBUG_EMAIL(("%s\n", item->contact->fullname)); 2995 DEBUG_EMAIL(("%s\n", item->contact->fullname));
2996 break; 2996 break;
2997 case 0x801A: // Full Home Address 2997 case 0x801A: // Full Home Address
2998 DEBUG_EMAIL(("Home Address - ")); 2998 DEBUG_EMAIL(("Home Address - "));
2999 MALLOC_CONTACT(item); 2999 MALLOC_CONTACT(item);
3000 LIST_COPY(item->contact->home_address, (char*)); 3000 LIST_COPY(item->contact->home_address, (char*));
3001 DEBUG_EMAIL(("%s\n", item->contact->home_address)); 3001 DEBUG_EMAIL(("%s\n", item->contact->home_address));
3002 break; 3002 break;
3003 case 0x801B: // Full Business Address 3003 case 0x801B: // Full Business Address
3004 DEBUG_EMAIL(("Business Address - ")); 3004 DEBUG_EMAIL(("Business Address - "));
3005 MALLOC_CONTACT(item); 3005 MALLOC_CONTACT(item);
3006 LIST_COPY(item->contact->business_address, (char*)); 3006 LIST_COPY(item->contact->business_address, (char*));
3007 DEBUG_EMAIL(("%s\n", item->contact->business_address)); 3007 DEBUG_EMAIL(("%s\n", item->contact->business_address));
3008 break; 3008 break;
3009 case 0x801C: // Full Other Address 3009 case 0x801C: // Full Other Address
3010 DEBUG_EMAIL(("Other Address - ")); 3010 DEBUG_EMAIL(("Other Address - "));
3011 MALLOC_CONTACT(item); 3011 MALLOC_CONTACT(item);
3012 LIST_COPY(item->contact->other_address, (char*)); 3012 LIST_COPY(item->contact->other_address, (char*));
3013 DEBUG_EMAIL(("%s\n", item->contact->other_address)); 3013 DEBUG_EMAIL(("%s\n", item->contact->other_address));
3014 break; 3014 break;
3015 case 0x8082: // Email Address 1 Transport 3015 case 0x8082: // Email Address 1 Transport
3016 DEBUG_EMAIL(("Email Address 1 Transport - ")); 3016 DEBUG_EMAIL(("Email Address 1 Transport - "));
3017 MALLOC_CONTACT(item); 3017 MALLOC_CONTACT(item);
3018 LIST_COPY(item->contact->address1_transport, (char*)); 3018 LIST_COPY(item->contact->address1_transport, (char*));
3019 DEBUG_EMAIL(("%s\n", item->contact->address1_transport)); 3019 DEBUG_EMAIL(("%s\n", item->contact->address1_transport));
3020 break; 3020 break;
3021 case 0x8083: // Email Address 1 Address 3021 case 0x8083: // Email Address 1 Address
3022 DEBUG_EMAIL(("Email Address 1 Address - ")); 3022 DEBUG_EMAIL(("Email Address 1 Address - "));
3023 MALLOC_CONTACT(item); 3023 MALLOC_CONTACT(item);
3024 LIST_COPY(item->contact->address1, (char*)); 3024 LIST_COPY(item->contact->address1, (char*));
3025 DEBUG_EMAIL(("%s\n", item->contact->address1)); 3025 DEBUG_EMAIL(("%s\n", item->contact->address1));
3026 break; 3026 break;
3027 case 0x8084: // Email Address 1 Description 3027 case 0x8084: // Email Address 1 Description
3028 DEBUG_EMAIL(("Email Address 1 Description - ")); 3028 DEBUG_EMAIL(("Email Address 1 Description - "));
3029 MALLOC_CONTACT(item); 3029 MALLOC_CONTACT(item);
3030 LIST_COPY(item->contact->address1_desc, (char*)); 3030 LIST_COPY(item->contact->address1_desc, (char*));
3031 DEBUG_EMAIL(("%s\n", item->contact->address1_desc)); 3031 DEBUG_EMAIL(("%s\n", item->contact->address1_desc));
3032 break; 3032 break;
3033 case 0x8085: // Email Address 1 Record 3033 case 0x8085: // Email Address 1 Record
3034 DEBUG_EMAIL(("Email Address 1 Record - NOT PROCESSED\n")); 3034 DEBUG_EMAIL(("Email Address 1 Record - NOT PROCESSED\n"));
3035 break; 3035 break;
3036 case 0x8092: // Email Address 2 Transport 3036 case 0x8092: // Email Address 2 Transport
3037 DEBUG_EMAIL(("Email Address 2 Transport - ")); 3037 DEBUG_EMAIL(("Email Address 2 Transport - "));
3038 MALLOC_CONTACT(item); 3038 MALLOC_CONTACT(item);
3039 LIST_COPY(item->contact->address2_transport, (char*)); 3039 LIST_COPY(item->contact->address2_transport, (char*));
3040 DEBUG_EMAIL(("%s\n", item->contact->address2_transport)); 3040 DEBUG_EMAIL(("%s\n", item->contact->address2_transport));
3041 break; 3041 break;
3042 case 0x8093: // Email Address 2 Address 3042 case 0x8093: // Email Address 2 Address
3043 DEBUG_EMAIL(("Email Address 2 Address - ")); 3043 DEBUG_EMAIL(("Email Address 2 Address - "));
3044 MALLOC_CONTACT(item); 3044 MALLOC_CONTACT(item);
3045 LIST_COPY(item->contact->address2, (char*)); 3045 LIST_COPY(item->contact->address2, (char*));
3046 DEBUG_EMAIL(("%s\n", item->contact->address2)); 3046 DEBUG_EMAIL(("%s\n", item->contact->address2));
3047 break; 3047 break;
3048 case 0x8094: // Email Address 2 Description 3048 case 0x8094: // Email Address 2 Description
3049 DEBUG_EMAIL (("Email Address 2 Description - ")); 3049 DEBUG_EMAIL (("Email Address 2 Description - "));
3050 MALLOC_CONTACT(item); 3050 MALLOC_CONTACT(item);
3051 LIST_COPY(item->contact->address2_desc, (char*)); 3051 LIST_COPY(item->contact->address2_desc, (char*));
3052 DEBUG_EMAIL(("%s\n", item->contact->address2_desc)); 3052 DEBUG_EMAIL(("%s\n", item->contact->address2_desc));
3053 break; 3053 break;
3054 case 0x8095: // Email Address 2 Record 3054 case 0x8095: // Email Address 2 Record
3055 DEBUG_EMAIL(("Email Address 2 Record - NOT PROCESSED\n")); 3055 DEBUG_EMAIL(("Email Address 2 Record - NOT PROCESSED\n"));
3056 break; 3056 break;
3057 case 0x80A2: // Email Address 3 Transport 3057 case 0x80A2: // Email Address 3 Transport
3058 DEBUG_EMAIL (("Email Address 3 Transport - ")); 3058 DEBUG_EMAIL (("Email Address 3 Transport - "));
3059 MALLOC_CONTACT(item); 3059 MALLOC_CONTACT(item);
3060 LIST_COPY(item->contact->address3_transport, (char*)); 3060 LIST_COPY(item->contact->address3_transport, (char*));
3061 DEBUG_EMAIL(("%s\n", item->contact->address3_transport)); 3061 DEBUG_EMAIL(("%s\n", item->contact->address3_transport));
3062 break; 3062 break;
3063 case 0x80A3: // Email Address 3 Address 3063 case 0x80A3: // Email Address 3 Address
3064 DEBUG_EMAIL(("Email Address 3 Address - ")); 3064 DEBUG_EMAIL(("Email Address 3 Address - "));
3065 MALLOC_CONTACT(item); 3065 MALLOC_CONTACT(item);
3066 LIST_COPY(item->contact->address3, (char*)); 3066 LIST_COPY(item->contact->address3, (char*));
3067 DEBUG_EMAIL(("%s\n", item->contact->address3)); 3067 DEBUG_EMAIL(("%s\n", item->contact->address3));
3068 break; 3068 break;
3069 case 0x80A4: // Email Address 3 Description 3069 case 0x80A4: // Email Address 3 Description
3070 DEBUG_EMAIL(("Email Address 3 Description - ")); 3070 DEBUG_EMAIL(("Email Address 3 Description - "));
3071 MALLOC_CONTACT(item); 3071 MALLOC_CONTACT(item);
3072 LIST_COPY(item->contact->address3_desc, (char*)); 3072 LIST_COPY(item->contact->address3_desc, (char*));
3073 DEBUG_EMAIL(("%s\n", item->contact->address3_desc)); 3073 DEBUG_EMAIL(("%s\n", item->contact->address3_desc));
3074 break; 3074 break;
3075 case 0x80A5: // Email Address 3 Record 3075 case 0x80A5: // Email Address 3 Record
3076 DEBUG_EMAIL(("Email Address 3 Record - NOT PROCESSED\n")); 3076 DEBUG_EMAIL(("Email Address 3 Record - NOT PROCESSED\n"));
3077 break; 3077 break;
3078 case 0x80D8: // Internet Free/Busy 3078 case 0x80D8: // Internet Free/Busy
3079 DEBUG_EMAIL(("Internet Free/Busy - ")); 3079 DEBUG_EMAIL(("Internet Free/Busy - "));
3080 MALLOC_CONTACT(item); 3080 MALLOC_CONTACT(item);
3081 LIST_COPY(item->contact->free_busy_address, (char*)); 3081 LIST_COPY(item->contact->free_busy_address, (char*));
3082 DEBUG_EMAIL(("%s\n", item->contact->free_busy_address)); 3082 DEBUG_EMAIL(("%s\n", item->contact->free_busy_address));
3083 break; 3083 break;
3084 case 0x8205: // Show on Free/Busy as 3084 case 0x8205: // Show on Free/Busy as
3085 // 0: Free 3085 // 0: Free
3086 // 1: Tentative 3086 // 1: Tentative
3087 // 2: Busy 3087 // 2: Busy
3088 // 3: Out Of Office 3088 // 3: Out Of Office
3089 DEBUG_EMAIL(("Appointment shows as - ")); 3089 DEBUG_EMAIL(("Appointment shows as - "));
3090 MALLOC_APPOINTMENT(item); 3090 MALLOC_APPOINTMENT(item);
3091 memcpy(&(item->appointment->showas), list->items[x]->data, sizeof(item->appointment->showas)); 3091 memcpy(&(item->appointment->showas), list->items[x]->data, sizeof(item->appointment->showas));
3092 LE32_CPU(item->appointment->showas); 3092 LE32_CPU(item->appointment->showas);
3093 switch (item->appointment->showas) { 3093 switch (item->appointment->showas) {
3094 case PST_FREEBUSY_FREE: 3094 case PST_FREEBUSY_FREE:
3095 DEBUG_EMAIL(("Free\n")); break; 3095 DEBUG_EMAIL(("Free\n")); break;
3096 case PST_FREEBUSY_TENTATIVE: 3096 case PST_FREEBUSY_TENTATIVE:
3097 DEBUG_EMAIL(("Tentative\n")); break; 3097 DEBUG_EMAIL(("Tentative\n")); break;
3098 case PST_FREEBUSY_BUSY: 3098 case PST_FREEBUSY_BUSY:
3099 DEBUG_EMAIL(("Busy\n")); break; 3099 DEBUG_EMAIL(("Busy\n")); break;
3100 case PST_FREEBUSY_OUT_OF_OFFICE: 3100 case PST_FREEBUSY_OUT_OF_OFFICE:
3101 DEBUG_EMAIL(("Out Of Office\n")); break; 3101 DEBUG_EMAIL(("Out Of Office\n")); break;
3102 default: 3102 default:
3103 DEBUG_EMAIL(("Unknown Value: %d\n", item->appointment->showas)); break; 3103 DEBUG_EMAIL(("Unknown Value: %d\n", item->appointment->showas)); break;
3104 } 3104 }
3105 break; 3105 break;
3106 case 0x8208: // Location of an appointment 3106 case 0x8208: // Location of an appointment
3107 DEBUG_EMAIL(("Appointment Location - ")); 3107 DEBUG_EMAIL(("Appointment Location - "));
3108 MALLOC_APPOINTMENT(item); 3108 MALLOC_APPOINTMENT(item);
3109 LIST_COPY(item->appointment->location, (char*)); 3109 LIST_COPY(item->appointment->location, (char*));
3110 DEBUG_EMAIL(("%s\n", item->appointment->location)); 3110 DEBUG_EMAIL(("%s\n", item->appointment->location));
3111 break; 3111 break;
3112 case 0x8214: // Label for an appointment 3112 case 0x8214: // Label for an appointment
3113 DEBUG_EMAIL(("Label for appointment - ")); 3113 DEBUG_EMAIL(("Label for appointment - "));
3114 MALLOC_APPOINTMENT(item); 3114 MALLOC_APPOINTMENT(item);
3115 memcpy(&(item->appointment->label), list->items[x]->data, sizeof(item->appointment->label)); 3115 memcpy(&(item->appointment->label), list->items[x]->data, sizeof(item->appointment->label));
3116 LE32_CPU(item->appointment->label); 3116 LE32_CPU(item->appointment->label);
3117 switch (item->appointment->label) { 3117 switch (item->appointment->label) {
3118 case PST_APP_LABEL_NONE: 3118 case PST_APP_LABEL_NONE:
3119 DEBUG_EMAIL(("None\n")); break; 3119 DEBUG_EMAIL(("None\n")); break;
3120 case PST_APP_LABEL_IMPORTANT: 3120 case PST_APP_LABEL_IMPORTANT:
3121 DEBUG_EMAIL(("Important\n")); break; 3121 DEBUG_EMAIL(("Important\n")); break;
3122 case PST_APP_LABEL_BUSINESS: 3122 case PST_APP_LABEL_BUSINESS:
3123 DEBUG_EMAIL(("Business\n")); break; 3123 DEBUG_EMAIL(("Business\n")); break;
3124 case PST_APP_LABEL_PERSONAL: 3124 case PST_APP_LABEL_PERSONAL:
3125 DEBUG_EMAIL(("Personal\n")); break; 3125 DEBUG_EMAIL(("Personal\n")); break;
3126 case PST_APP_LABEL_VACATION: 3126 case PST_APP_LABEL_VACATION:
3127 DEBUG_EMAIL(("Vacation\n")); break; 3127 DEBUG_EMAIL(("Vacation\n")); break;
3128 case PST_APP_LABEL_MUST_ATTEND: 3128 case PST_APP_LABEL_MUST_ATTEND:
3129 DEBUG_EMAIL(("Must Attend\n")); break; 3129 DEBUG_EMAIL(("Must Attend\n")); break;
3130 case PST_APP_LABEL_TRAVEL_REQ: 3130 case PST_APP_LABEL_TRAVEL_REQ:
3131 DEBUG_EMAIL(("Travel Required\n")); break; 3131 DEBUG_EMAIL(("Travel Required\n")); break;
3132 case PST_APP_LABEL_NEEDS_PREP: 3132 case PST_APP_LABEL_NEEDS_PREP:
3133 DEBUG_EMAIL(("Needs Preparation\n")); break; 3133 DEBUG_EMAIL(("Needs Preparation\n")); break;
3134 case PST_APP_LABEL_BIRTHDAY: 3134 case PST_APP_LABEL_BIRTHDAY:
3135 DEBUG_EMAIL(("Birthday\n")); break; 3135 DEBUG_EMAIL(("Birthday\n")); break;
3136 case PST_APP_LABEL_ANNIVERSARY: 3136 case PST_APP_LABEL_ANNIVERSARY:
3137 DEBUG_EMAIL(("Anniversary\n")); break; 3137 DEBUG_EMAIL(("Anniversary\n")); break;
3138 case PST_APP_LABEL_PHONE_CALL: 3138 case PST_APP_LABEL_PHONE_CALL:
3139 DEBUG_EMAIL(("Phone Call\n")); break; 3139 DEBUG_EMAIL(("Phone Call\n")); break;
3140 } 3140 }
3141 break; 3141 break;
3142 case 0x8234: // TimeZone as String 3142 case 0x8234: // TimeZone as String
3143 DEBUG_EMAIL(("TimeZone of times - ")); 3143 DEBUG_EMAIL(("TimeZone of times - "));
3144 MALLOC_APPOINTMENT(item); 3144 MALLOC_APPOINTMENT(item);
3145 LIST_COPY(item->appointment->timezonestring, (char*)); 3145 LIST_COPY(item->appointment->timezonestring, (char*));
3146 DEBUG_EMAIL(("%s\n", item->appointment->timezonestring)); 3146 DEBUG_EMAIL(("%s\n", item->appointment->timezonestring));
3147 break; 3147 break;
3148 case 0x8235: // Appointment start time 3148 case 0x8235: // Appointment start time
3149 DEBUG_EMAIL(("Appointment Start Time - ")); 3149 DEBUG_EMAIL(("Appointment Start Time - "));
3150 MALLOC_APPOINTMENT(item); 3150 MALLOC_APPOINTMENT(item);
3151 LIST_COPY(item->appointment->start, (FILETIME*)); 3151 LIST_COPY(item->appointment->start, (FILETIME*));
3152 DEBUG_EMAIL(("%s\n", fileTimeToAscii((FILETIME*)item->appointment->start))); 3152 DEBUG_EMAIL(("%s\n", fileTimeToAscii((FILETIME*)item->appointment->start)));
3153 break; 3153 break;
3154 case 0x8236: // Appointment end time 3154 case 0x8236: // Appointment end time
3155 DEBUG_EMAIL(("Appointment End Time - ")); 3155 DEBUG_EMAIL(("Appointment End Time - "));
3156 MALLOC_APPOINTMENT(item); 3156 MALLOC_APPOINTMENT(item);
3157 LIST_COPY(item->appointment->end, (FILETIME*)); 3157 LIST_COPY(item->appointment->end, (FILETIME*));
3158 DEBUG_EMAIL(("%s\n", fileTimeToAscii((FILETIME*)item->appointment->start))); 3158 DEBUG_EMAIL(("%s\n", fileTimeToAscii((FILETIME*)item->appointment->start)));
3159 break; 3159 break;
3160 case 0x8516: // Journal time start 3160 case 0x8516: // Journal time start
3161 DEBUG_EMAIL(("Duplicate Time Start - ")); 3161 DEBUG_EMAIL(("Duplicate Time Start - "));
3162 DEBUG_EMAIL(("%s\n", fileTimeToAscii((FILETIME*)list->items[x]->data))); 3162 DEBUG_EMAIL(("%s\n", fileTimeToAscii((FILETIME*)list->items[x]->data)));
3163 break; 3163 break;
3164 case 0x8517: // Journal time end 3164 case 0x8517: // Journal time end
3165 DEBUG_EMAIL(("Duplicate Time End - ")); 3165 DEBUG_EMAIL(("Duplicate Time End - "));
3166 DEBUG_EMAIL(("%s\n", fileTimeToAscii((FILETIME*)list->items[x]->data))); 3166 DEBUG_EMAIL(("%s\n", fileTimeToAscii((FILETIME*)list->items[x]->data)));
3167 break; 3167 break;
3168 case 0x8530: // Followup 3168 case 0x8530: // Followup
3169 DEBUG_EMAIL(("Followup String - ")); 3169 DEBUG_EMAIL(("Followup String - "));
3170 MALLOC_CONTACT(item); 3170 MALLOC_CONTACT(item);
3171 LIST_COPY(item->contact->followup, (char*)); 3171 LIST_COPY(item->contact->followup, (char*));
3172 DEBUG_EMAIL(("%s\n", item->contact->followup)); 3172 DEBUG_EMAIL(("%s\n", item->contact->followup));
3173 break; 3173 break;
3174 case 0x8534: // Mileage 3174 case 0x8534: // Mileage
3175 DEBUG_EMAIL(("Mileage - ")); 3175 DEBUG_EMAIL(("Mileage - "));
3176 MALLOC_CONTACT(item); 3176 MALLOC_CONTACT(item);
3177 LIST_COPY(item->contact->mileage, (char*)); 3177 LIST_COPY(item->contact->mileage, (char*));
3178 DEBUG_EMAIL(("%s\n", item->contact->mileage)); 3178 DEBUG_EMAIL(("%s\n", item->contact->mileage));
3179 break; 3179 break;
3180 case 0x8535: // Billing Information 3180 case 0x8535: // Billing Information
3181 DEBUG_EMAIL(("Billing Information - ")); 3181 DEBUG_EMAIL(("Billing Information - "));
3182 MALLOC_CONTACT(item); 3182 MALLOC_CONTACT(item);
3183 LIST_COPY(item->contact->billing_information, (char*)); 3183 LIST_COPY(item->contact->billing_information, (char*));
3184 DEBUG_EMAIL(("%s\n", item->contact->billing_information)); 3184 DEBUG_EMAIL(("%s\n", item->contact->billing_information));
3185 break; 3185 break;
3186 case 0x8554: // Outlook Version 3186 case 0x8554: // Outlook Version
3187 DEBUG_EMAIL(("Outlook Version - ")); 3187 DEBUG_EMAIL(("Outlook Version - "));
3188 LIST_COPY(item->outlook_version, (char*)); 3188 LIST_COPY(item->outlook_version, (char*));
3189 DEBUG_EMAIL(("%s\n", item->outlook_version)); 3189 DEBUG_EMAIL(("%s\n", item->outlook_version));
3190 break; 3190 break;
3191 case 0x8560: // Appointment Reminder Time 3191 case 0x8560: // Appointment Reminder Time
3192 DEBUG_EMAIL(("Appointment Reminder Time - ")); 3192 DEBUG_EMAIL(("Appointment Reminder Time - "));
3193 MALLOC_APPOINTMENT(item); 3193 MALLOC_APPOINTMENT(item);
3194 LIST_COPY(item->appointment->reminder, (FILETIME*)); 3194 LIST_COPY(item->appointment->reminder, (FILETIME*));
3195 DEBUG_EMAIL(("%s\n", fileTimeToAscii(item->appointment->reminder))); 3195 DEBUG_EMAIL(("%s\n", fileTimeToAscii(item->appointment->reminder)));
3196 break; 3196 break;
3197 case 0x8700: // Journal Type 3197 case 0x8700: // Journal Type
3198 DEBUG_EMAIL(("Journal Entry Type - ")); 3198 DEBUG_EMAIL(("Journal Entry Type - "));
3199 MALLOC_JOURNAL(item); 3199 MALLOC_JOURNAL(item);
3200 LIST_COPY(item->journal->type, (char*)); 3200 LIST_COPY(item->journal->type, (char*));
3201 DEBUG_EMAIL(("%s\n", item->journal->type)); 3201 DEBUG_EMAIL(("%s\n", item->journal->type));
3202 break; 3202 break;
3203 case 0x8706: // Journal Start date/time 3203 case 0x8706: // Journal Start date/time
3204 DEBUG_EMAIL(("Start Timestamp - ")); 3204 DEBUG_EMAIL(("Start Timestamp - "));
3205 MALLOC_JOURNAL(item); 3205 MALLOC_JOURNAL(item);
3206 LIST_COPY(item->journal->start, (FILETIME*)); 3206 LIST_COPY(item->journal->start, (FILETIME*));
3207 DEBUG_EMAIL(("%s\n", fileTimeToAscii(item->journal->start))); 3207 DEBUG_EMAIL(("%s\n", fileTimeToAscii(item->journal->start)));
3208 break; 3208 break;
3209 case 0x8708: // Journal End date/time 3209 case 0x8708: // Journal End date/time
3210 DEBUG_EMAIL(("End Timestamp - ")); 3210 DEBUG_EMAIL(("End Timestamp - "));
3211 MALLOC_JOURNAL(item); 3211 MALLOC_JOURNAL(item);
3212 LIST_COPY(item->journal->end, (FILETIME*)); 3212 LIST_COPY(item->journal->end, (FILETIME*));
3213 DEBUG_EMAIL(("%s\n", fileTimeToAscii(item->journal->end))); 3213 DEBUG_EMAIL(("%s\n", fileTimeToAscii(item->journal->end)));
3214 break; 3214 break;
3215 case 0x8712: // Title? 3215 case 0x8712: // Title?
3216 DEBUG_EMAIL(("Journal Entry Type - ")); 3216 DEBUG_EMAIL(("Journal Entry Type - "));
3217 MALLOC_JOURNAL(item); 3217 MALLOC_JOURNAL(item);
3218 LIST_COPY(item->journal->type, (char*)); 3218 LIST_COPY(item->journal->type, (char*));
3219 DEBUG_EMAIL(("%s\n", item->journal->type)); 3219 DEBUG_EMAIL(("%s\n", item->journal->type));
3220 break; 3220 break;
3221 default: 3221 default:
3222 /* Reference Types 3222 /* Reference Types
3223 3223
3224 2 - 0x0002 - Signed 16bit value 3224 2 - 0x0002 - Signed 16bit value
3225 3 - 0x0003 - Signed 32bit value 3225 3 - 0x0003 - Signed 32bit value
3226 11 - 0x000B - Boolean (non-zero = true) 3226 11 - 0x000B - Boolean (non-zero = true)
3227 13 - 0x000D - Embedded Object 3227 13 - 0x000D - Embedded Object
3228 30 - 0x001E - Null terminated String 3228 30 - 0x001E - Null terminated String
3229 31 - 0x001F - Unicode string 3229 31 - 0x001F - Unicode string
3230 64 - 0x0040 - Systime - Filetime structure 3230 64 - 0x0040 - Systime - Filetime structure
3231 72 - 0x0048 - OLE Guid 3231 72 - 0x0048 - OLE Guid
3232 258 - 0x0102 - Binary data 3232 258 - 0x0102 - Binary data
3233 3233
3234 - 0x1003 - Array of 32bit values 3234 - 0x1003 - Array of 32bit values
3235 - 0x101E - Array of Strings 3235 - 0x101E - Array of Strings
3236 - 0x1102 - Array of Binary data 3236 - 0x1102 - Array of Binary data
3237 */ 3237 */
3238 // DEBUG_EMAIL(("Unknown id [%#x, size=%#x]\n", list->items[x]->id, list->items[x]->size)); 3238 // DEBUG_EMAIL(("Unknown id [%#x, size=%#x]\n", list->items[x]->id, list->items[x]->size));
3239 if (list->items[x]->type == 0x02) { 3239 if (list->items[x]->type == 0x02) {
3240 DEBUG_EMAIL(("Unknown 16bit int = %hi\n", *(int16_t*)list->items[x]->data)); 3240 DEBUG_EMAIL(("Unknown 16bit int = %hi\n", *(int16_t*)list->items[x]->data));
3241 } else if (list->items[x]->type == 0x03) { 3241 } else if (list->items[x]->type == 0x03) {
3242 DEBUG_EMAIL(("Unknown 32bit int = %i\n", *(int32_t*)list->items[x]->data)); 3242 DEBUG_EMAIL(("Unknown 32bit int = %i\n", *(int32_t*)list->items[x]->data));
3243 } else if (list->items[x]->type == 0x0b) { 3243 } else if (list->items[x]->type == 0x0b) {
3244 DEBUG_EMAIL(("Unknown 16bit boolean = %s [%hi]\n", 3244 DEBUG_EMAIL(("Unknown 16bit boolean = %s [%hi]\n",
3245 (*((int16_t*)list->items[x]->data)!=0?"True":"False"), 3245 (*((int16_t*)list->items[x]->data)!=0?"True":"False"),
3246 *((int16_t*)list->items[x]->data))); 3246 *((int16_t*)list->items[x]->data)));
3247 } else if (list->items[x]->type == 0x1e) { 3247 } else if (list->items[x]->type == 0x1e) {
3248 DEBUG_EMAIL(("Unknown String Data = \"%s\" [%#x]\n", 3248 DEBUG_EMAIL(("Unknown String Data = \"%s\" [%#x]\n",
3249 list->items[x]->data, list->items[x]->type)); 3249 list->items[x]->data, list->items[x]->type));
3250 } else if (list->items[x]->type == 0x40) { 3250 } else if (list->items[x]->type == 0x40) {
3251 DEBUG_EMAIL(("Unknown Date = \"%s\" [%#x]\n", 3251 DEBUG_EMAIL(("Unknown Date = \"%s\" [%#x]\n",
3252 fileTimeToAscii((FILETIME*)list->items[x]->data), 3252 fileTimeToAscii((FILETIME*)list->items[x]->data),
3253 list->items[x]->type)); 3253 list->items[x]->type));
3254 } else if (list->items[x]->type == 0x102) { 3254 } else if (list->items[x]->type == 0x102) {
3255 DEBUG_EMAIL(("Unknown Binary Data [size = %#x]\n", 3255 DEBUG_EMAIL(("Unknown Binary Data [size = %#x]\n",
3256 list->items[x]->size)); 3256 list->items[x]->size));
3257 DEBUG_HEXDUMP(list->items[x]->data, list->items[x]->size); 3257 DEBUG_HEXDUMP(list->items[x]->data, list->items[x]->size);
3258 } else if (list->items[x]->type == 0x101E) { 3258 } else if (list->items[x]->type == 0x101E) {
3259 DEBUG_EMAIL(("Unknown Array of Strings [%#x]\n", 3259 DEBUG_EMAIL(("Unknown Array of Strings [%#x]\n",
3260 list->items[x]->type)); 3260 list->items[x]->type));
3261 } else { 3261 } else {
3262 DEBUG_EMAIL(("Unknown Not Printable [%#x]\n", 3262 DEBUG_EMAIL(("Unknown Not Printable [%#x]\n",
3263 list->items[x]->type)); 3263 list->items[x]->type));
3264 } 3264 }
3265 if (list->items[x]->data != NULL) { 3265 if (list->items[x]->data != NULL) {
3266 free(list->items[x]->data); 3266 free(list->items[x]->data);
3267 list->items[x]->data = NULL; 3267 list->items[x]->data = NULL;
3268 } 3268 }
3269 //INC_CHECK_X(); 3269 //INC_CHECK_X();
3270 } 3270 }
3271 x++; 3271 x++;
3272 } 3272 }
3273 x = 0; 3273 x = 0;
3274 list = list->next; 3274 list = list->next;
3283 pst_num_array *l; 3283 pst_num_array *l;
3284 DEBUG_ENT("_pst_free_list"); 3284 DEBUG_ENT("_pst_free_list");
3285 while (list != NULL) { 3285 while (list != NULL) {
3286 while (x < list->count_item) { 3286 while (x < list->count_item) {
3287 if (list->items[x]->data != NULL) { 3287 if (list->items[x]->data != NULL) {
3288 free (list->items[x]->data); 3288 free (list->items[x]->data);
3289 } 3289 }
3290 if (list->items[x] != NULL) { 3290 if (list->items[x] != NULL) {
3291 free (list->items[x]); 3291 free (list->items[x]);
3292 } 3292 }
3293 x++; 3293 x++;
3294 } 3294 }
3295 if (list->items != NULL) { 3295 if (list->items != NULL) {
3296 free(list->items); 3296 free(list->items);
3333 DEBUG_ENT("_pst_free_desc"); 3333 DEBUG_ENT("_pst_free_desc");
3334 while (head != NULL) { 3334 while (head != NULL) {
3335 while (head->child != NULL) { 3335 while (head->child != NULL) {
3336 head = head->child; 3336 head = head->child;
3337 } 3337 }
3338 3338
3339 // point t to the next item 3339 // point t to the next item
3340 t = head->next; 3340 t = head->next;
3341 if (t == NULL && head->parent != NULL) { 3341 if (t == NULL && head->parent != NULL) {
3342 t = head->parent; 3342 t = head->parent;
3343 t->child = NULL; // set the child to NULL so we don't come back here again! 3343 t->child = NULL; // set the child to NULL so we don't come back here again!
3344 } 3344 }
3345 3345
3346 if (head != NULL) 3346 if (head != NULL)
3347 free(head); 3347 free(head);
3348 else { 3348 else {
3349 DIE(("head is NULL")); 3349 DIE(("head is NULL"));
3398 DEBUG_RET(); 3398 DEBUG_RET();
3399 return NULL; 3399 return NULL;
3400 } 3400 }
3401 3401
3402 DEBUG_INDEX(("ID %#x is likely to be a description record. Count is %i (offset %#x)\n", 3402 DEBUG_INDEX(("ID %#x is likely to be a description record. Count is %i (offset %#x)\n",
3403 list->id, block_head.count, list->offset)); 3403 list->id, block_head.count, list->offset));
3404 x = 0; 3404 x = 0;
3405 b_ptr = 0x04; 3405 b_ptr = 0x04;
3406 while (x < block_head.count) { 3406 while (x < block_head.count) {
3407 memcpy(&id2_rec, &(buf[b_ptr]), sizeof(id2_rec)); 3407 memcpy(&id2_rec, &(buf[b_ptr]), sizeof(id2_rec));
3408 LE32_CPU(id2_rec.id2); 3408 LE32_CPU(id2_rec.id2);
3417 DEBUG_INDEX(("\t\t%#x - Offset %#x, u1 %#x, Size %i(%#x)\n", i_ptr->id, i_ptr->offset, i_ptr->u1, i_ptr->size, i_ptr->size)); 3417 DEBUG_INDEX(("\t\t%#x - Offset %#x, u1 %#x, Size %i(%#x)\n", i_ptr->id, i_ptr->offset, i_ptr->u1, i_ptr->size, i_ptr->size));
3418 // add it to the linked list 3418 // add it to the linked list
3419 //check it doesn't exist already first 3419 //check it doesn't exist already first
3420 /* i2_ptr = head; 3420 /* i2_ptr = head;
3421 while(i2_ptr != NULL) { 3421 while(i2_ptr != NULL) {
3422 if (i2_ptr->id2 == id2_rec.id2) 3422 if (i2_ptr->id2 == id2_rec.id2)
3423 break; 3423 break;
3424 i2_ptr = i2_ptr->next; 3424 i2_ptr = i2_ptr->next;
3425 }*/ 3425 }*/
3426 3426
3427 // if (i2_ptr == NULL) { 3427 // if (i2_ptr == NULL) {
3428 i2_ptr = (pst_index2_ll*) xmalloc(sizeof(pst_index2_ll)); 3428 i2_ptr = (pst_index2_ll*) xmalloc(sizeof(pst_index2_ll));
3429 i2_ptr->id2 = id2_rec.id2; 3429 i2_ptr->id2 = id2_rec.id2;
3430 i2_ptr->id = i_ptr; 3430 i2_ptr->id = i_ptr;
3431 i2_ptr->next = NULL; 3431 i2_ptr->next = NULL;
3432 if (head == NULL) 3432 if (head == NULL)
3433 head = i2_ptr; 3433 head = i2_ptr;
3434 if (tail != NULL) 3434 if (tail != NULL)
3435 tail->next = i2_ptr; 3435 tail->next = i2_ptr;
3436 tail = i2_ptr; 3436 tail = i2_ptr;
3437 /* } else { 3437 /* } else {
3438 // if it does already exist 3438 // if it does already exist
3439 DEBUG_INDEX(("_pst_build_id2(): \t\t%#x already exists. Updating ID to %#x\n", 3439 DEBUG_INDEX(("_pst_build_id2(): \t\t%#x already exists. Updating ID to %#x\n",
3440 id2_rec.id2, i_ptr->id)); 3440 id2_rec.id2, i_ptr->id));
3441 i2_ptr->id = i_ptr; 3441 i2_ptr->id = i_ptr;
3442 }*/ 3442 }*/
3443 if (id2_rec.table2 != 0) { 3443 if (id2_rec.table2 != 0) {
3444 if ((i_ptr = _pst_getID(pf, id2_rec.table2)) == NULL) { 3444 if ((i_ptr = _pst_getID(pf, id2_rec.table2)) == NULL) {
3445 DEBUG_WARN(("\tTable2 [%#x] not found\n", id2_rec.table2)); 3445 DEBUG_WARN(("\tTable2 [%#x] not found\n", id2_rec.table2));
3446 } else { 3446 } else {
3447 DEBUG_INDEX(("\tGoing deeper for table2 [%#x]\n", id2_rec.table2)); 3447 DEBUG_INDEX(("\tGoing deeper for table2 [%#x]\n", id2_rec.table2));
3448 if ((i2_ptr = _pst_build_id2(pf, i_ptr, head)) != NULL) { 3448 if ((i2_ptr = _pst_build_id2(pf, i_ptr, head)) != NULL) {
3449 /*DEBUG_INDEX(("_pst_build_id2(): \t\tAdding new list onto end of current\n")); 3449 /*DEBUG_INDEX(("_pst_build_id2(): \t\tAdding new list onto end of current\n"));
3450 if (head == NULL) 3450 if (head == NULL)
3451 head = i2_ptr; 3451 head = i2_ptr;
3452 if (tail != NULL) 3452 if (tail != NULL)
3453 tail->next = i2_ptr; 3453 tail->next = i2_ptr;
3454 while (i2_ptr->next != NULL) 3454 while (i2_ptr->next != NULL)
3455 i2_ptr = i2_ptr->next; 3455 i2_ptr = i2_ptr->next;
3456 tail = i2_ptr;*/ 3456 tail = i2_ptr;*/
3457 } 3457 }
3458 // need to re-establish tail 3458 // need to re-establish tail
3459 DEBUG_INDEX(("Returned from depth\n")); 3459 DEBUG_INDEX(("Returned from depth\n"));
3460 if (tail != NULL) { 3460 if (tail != NULL) {
3461 while (tail->next != NULL) 3461 while (tail->next != NULL)
3462 tail = tail->next; 3462 tail = tail->next;
3463 } 3463 }
3464 } 3464 }
3465 } 3465 }
3466 } 3466 }
3467 x++; 3467 x++;
3468 } 3468 }
3469 if (buf != NULL) { 3469 if (buf != NULL) {
3513 SAFE_FREE(item->email->sender2_address); 3513 SAFE_FREE(item->email->sender2_address);
3514 SAFE_FREE(item->email->sent_date); 3514 SAFE_FREE(item->email->sent_date);
3515 SAFE_FREE(item->email->sentmail_folder); 3515 SAFE_FREE(item->email->sentmail_folder);
3516 SAFE_FREE(item->email->sentto_address); 3516 SAFE_FREE(item->email->sentto_address);
3517 if (item->email->subject != NULL) 3517 if (item->email->subject != NULL)
3518 SAFE_FREE(item->email->subject->subj); 3518 SAFE_FREE(item->email->subject->subj);
3519 SAFE_FREE(item->email->subject); 3519 SAFE_FREE(item->email->subject);
3520 free(item->email); 3520 free(item->email);
3521 } 3521 }
3522 if (item->folder) { 3522 if (item->folder) {
3523 free(item->folder); 3523 free(item->folder);
3657 SAFE_FREE(item->outlook_version); 3657 SAFE_FREE(item->outlook_version);
3658 SAFE_FREE(item->record_key); 3658 SAFE_FREE(item->record_key);
3659 free(item); 3659 free(item);
3660 } 3660 }
3661 DEBUG_RET(); 3661 DEBUG_RET();
3662 } 3662 }
3663 3663
3664 int32_t _pst_getBlockOffset(char *buf, int32_t i_offset, int32_t offset, pst_block_offset *p) { 3664 int32_t _pst_getBlockOffset(char *buf, int32_t i_offset, int32_t offset, pst_block_offset *p) {
3665 int32_t of1; 3665 int32_t of1;
3666 DEBUG_ENT("_pst_getBlockOffset"); 3666 DEBUG_ENT("_pst_getBlockOffset");
3667 if (p == NULL || buf == NULL || offset == 0) { 3667 if (p == NULL || buf == NULL || offset == 0) {
3694 // it isn't based on sound principles either. 3694 // it isn't based on sound principles either.
3695 // update: seems that the last two sig bits are flags. u tell me! 3695 // update: seems that the last two sig bits are flags. u tell me!
3696 id &= 0xFFFFFFFE; // remove least sig. bit. seems that it might work if I do this 3696 id &= 0xFFFFFFFE; // remove least sig. bit. seems that it might work if I do this
3697 3697
3698 DEBUG_INDEX(("Trying to find %#x\n", id)); 3698 DEBUG_INDEX(("Trying to find %#x\n", id));
3699 3699
3700 if (ptr == NULL) 3700 if (ptr == NULL)
3701 ptr = pf->i_head; 3701 ptr = pf->i_head;
3702 while (ptr->id != id) { 3702 while (ptr->id != id) {
3703 ptr = ptr->next; 3703 ptr = ptr->next;
3704 if (ptr == NULL) { 3704 if (ptr == NULL) {
3705 break; 3705 break;
3758 char spaces[100]; 3758 char spaces[100];
3759 DEBUG_ENT("_pst_printDptr"); 3759 DEBUG_ENT("_pst_printDptr");
3760 memset(spaces, ' ', 99); 3760 memset(spaces, ' ', 99);
3761 spaces[99] = '\0'; 3761 spaces[99] = '\0';
3762 while (ptr != NULL) { 3762 while (ptr != NULL) {
3763 DEBUG_INDEX(("%s%#x [%i] desc=%#x, list=%#x\n", &(spaces[(99-depth<0?0:99-depth)]), ptr->id, ptr->no_child, 3763 DEBUG_INDEX(("%s%#x [%i] desc=%#x, list=%#x\n", &(spaces[(99-depth<0?0:99-depth)]), ptr->id, ptr->no_child,
3764 (ptr->desc==NULL?0:ptr->desc->id), 3764 (ptr->desc==NULL?0:ptr->desc->id),
3765 (ptr->list_index==NULL?0:ptr->list_index->id))); 3765 (ptr->list_index==NULL?0:ptr->list_index->id)));
3766 if (ptr->child != NULL) { 3766 if (ptr->child != NULL) {
3767 depth++; 3767 depth++;
3768 ptr = ptr->child; 3768 ptr = ptr->child;
3769 continue; 3769 continue;
3770 } 3770 }
3818 fseek(fp, fpos, SEEK_SET); 3818 fseek(fp, fpos, SEEK_SET);
3819 DEBUG_RET(); 3819 DEBUG_RET();
3820 return size; 3820 return size;
3821 } 3821 }
3822 3822
3823 // when the first byte of the block being read is 01, then we can assume 3823 // when the first byte of the block being read is 01, then we can assume
3824 // that it is a list of further ids to read and we will follow those ids 3824 // that it is a list of further ids to read and we will follow those ids
3825 // recursively calling this function until we have all the data 3825 // recursively calling this function until we have all the data
3826 // we could do decryption of the encrypted PST files here 3826 // we could do decryption of the encrypted PST files here
3827 size_t _pst_read_block_size(pst_file *pf, int32_t offset, size_t size, char ** buf, int32_t do_enc, 3827 size_t _pst_read_block_size(pst_file *pf, int32_t offset, size_t size, char ** buf, int32_t do_enc,
3828 unsigned char is_index) { 3828 unsigned char is_index) {
3829 u_int32_t fpos, x; 3829 u_int32_t fpos, x;
3830 int16_t count, y; 3830 int16_t count, y;
3831 char *buf2 = NULL, *buf3 = NULL; 3831 char *buf2 = NULL, *buf3 = NULL;
3832 unsigned char fdepth; 3832 unsigned char fdepth;
3833 pst_index_ll *ptr = NULL; 3833 pst_index_ll *ptr = NULL;
3860 /* if (is_index) { 3860 /* if (is_index) {
3861 DEBUG_READ(("_pst_read_block_size: ODD_BLOCK should be here\n")); 3861 DEBUG_READ(("_pst_read_block_size: ODD_BLOCK should be here\n"));
3862 DEBUG_READ(("\t: byte 0-1: %#x %#x\n", (*buf)[0], (*buf)[1])); 3862 DEBUG_READ(("\t: byte 0-1: %#x %#x\n", (*buf)[0], (*buf)[1]));
3863 }*/ 3863 }*/
3864 3864
3865 if ((*buf)[0] == 0x01 && (*buf)[1] != 0x00 && is_index) { 3865 if ((*buf)[0] == 0x01 && (*buf)[1] != 0x00 && is_index) {
3866 //don't do this recursion if we should be at a leaf node 3866 //don't do this recursion if we should be at a leaf node
3867 memcpy(&count, &((*buf)[2]), sizeof(int16_t)); 3867 memcpy(&count, &((*buf)[2]), sizeof(int16_t));
3868 LE16_CPU(count); 3868 LE16_CPU(count);
3869 memcpy(&fdepth, &((*buf)[1]), sizeof(fdepth)); 3869 memcpy(&fdepth, &((*buf)[1]), sizeof(fdepth));
3870 DEBUG_READ(("Seen indexes to blocks. Depth is %i\n", fdepth)); 3870 DEBUG_READ(("Seen indexes to blocks. Depth is %i\n", fdepth));
3875 y = 0; 3875 y = 0;
3876 while (y < count) { 3876 while (y < count) {
3877 memcpy(&x, &(*buf)[0x08+(y*4)], sizeof(int32_t)); 3877 memcpy(&x, &(*buf)[0x08+(y*4)], sizeof(int32_t));
3878 LE32_CPU(x); 3878 LE32_CPU(x);
3879 if ((ptr = _pst_getID(pf, x)) == NULL) { 3879 if ((ptr = _pst_getID(pf, x)) == NULL) {
3880 WARN(("Error. Cannot find ID [%#x] during multi-block read\n", x)); 3880 WARN(("Error. Cannot find ID [%#x] during multi-block read\n", x));
3881 buf3 = (char*) realloc(buf3, size+1); 3881 buf3 = (char*) realloc(buf3, size+1);
3882 buf3[size] = '\0'; 3882 buf3[size] = '\0';
3883 *buf = buf3; 3883 *buf = buf3;
3884 fseek(pf->fp, fpos, SEEK_SET); 3884 fseek(pf->fp, fpos, SEEK_SET);
3885 DEBUG_RET(); 3885 DEBUG_RET();
3886 return size; 3886 return size;
3887 } 3887 }
3888 if ((z = _pst_read_block_size(pf, ptr->offset, ptr->size, &buf2, do_enc, fdepth-1)) < ptr->size) { 3888 if ((z = _pst_read_block_size(pf, ptr->offset, ptr->size, &buf2, do_enc, fdepth-1)) < ptr->size) {
3889 buf3 = (char*) realloc(buf3, size+1); 3889 buf3 = (char*) realloc(buf3, size+1);
3890 buf3[size] = '\0'; 3890 buf3[size] = '\0';
3891 *buf = buf3; 3891 *buf = buf3;
3892 fseek(pf->fp, fpos, SEEK_SET); 3892 fseek(pf->fp, fpos, SEEK_SET);
3893 DEBUG_RET(); 3893 DEBUG_RET();
3894 return size; 3894 return size;
3895 } 3895 }
3896 DEBUG_READ(("Melding newley retrieved block with bigger one. New size is %i\n", size+z)); 3896 DEBUG_READ(("Melding newley retrieved block with bigger one. New size is %i\n", size+z));
3897 buf3 = (char*) realloc(buf3, size+z+1); //plus one so that we can null terminate it later 3897 buf3 = (char*) realloc(buf3, size+z+1); //plus one so that we can null terminate it later
3898 DEBUG_READ(("Doing copy. Start pos is %i, length is %i\n", size, z)); 3898 DEBUG_READ(("Doing copy. Start pos is %i, length is %i\n", size, z));
3899 memcpy(&(buf3[size]), buf2, z); 3899 memcpy(&(buf3[size]), buf2, z);
3901 y++; 3901 y++;
3902 } 3902 }
3903 free(*buf); 3903 free(*buf);
3904 if (buf2 != NULL) 3904 if (buf2 != NULL)
3905 free(buf2); 3905 free(buf2);
3906 if (buf3 == NULL) { 3906 if (buf3 == NULL) {
3907 // this can happen if count == 0. We should create an empty buffer so we don't 3907 // this can happen if count == 0. We should create an empty buffer so we don't
3908 // confuse any clients 3908 // confuse any clients
3909 buf3 = (char*) xmalloc(1); 3909 buf3 = (char*) xmalloc(1);
3910 } 3910 }
3911 *buf = buf3; 3911 *buf = buf3;
3948 DEBUG_ENT("_pst_getAtPos"); 3948 DEBUG_ENT("_pst_getAtPos");
3949 if (fseek(fp, pos, SEEK_SET) == -1) { 3949 if (fseek(fp, pos, SEEK_SET) == -1) {
3950 DEBUG_RET(); 3950 DEBUG_RET();
3951 return 1; 3951 return 1;
3952 } 3952 }
3953 3953
3954 if (fread(buf, 1, size, fp) < size) { 3954 if (fread(buf, 1, size, fp) < size) {
3955 DEBUG_RET(); 3955 DEBUG_RET();
3956 return 2; 3956 return 2;
3957 } 3957 }
3958 DEBUG_RET(); 3958 DEBUG_RET();
4100 while (y < count) { 4100 while (y < count) {
4101 memcpy(&x, &buf3[0x08+(y*4)], sizeof(int32_t)); 4101 memcpy(&x, &buf3[0x08+(y*4)], sizeof(int32_t));
4102 LE32_CPU(x); 4102 LE32_CPU(x);
4103 if (fdepth == 0x1) { 4103 if (fdepth == 0x1) {
4104 if ((z = _pst_ff_getIDblock(pf, x, &buf2)) == 0) { 4104 if ((z = _pst_ff_getIDblock(pf, x, &buf2)) == 0) {
4105 DEBUG_WARN(("call to getIDblock returned zero %i\n", z)); 4105 DEBUG_WARN(("call to getIDblock returned zero %i\n", z));
4106 if (buf2 != NULL) 4106 if (buf2 != NULL)
4107 free(buf2); 4107 free(buf2);
4108 free(buf3); 4108 free(buf3);
4109 return z; 4109 return z;
4110 } 4110 }
4111 if (pf->encryption) 4111 if (pf->encryption)
4112 _pst_decrypt(buf2, z, pf->encryption); 4112 _pst_decrypt(buf2, z, pf->encryption);
4113 if (h->buf != NULL) { 4113 if (h->buf != NULL) {
4114 *(h->buf) = realloc(*(h->buf), size+z+1); 4114 *(h->buf) = realloc(*(h->buf), size+z+1);
4115 DEBUG_READ(("appending read data of size %i onto main buffer from pos %i\n", z, size)); 4115 DEBUG_READ(("appending read data of size %i onto main buffer from pos %i\n", z, size));
4116 memcpy(&((*(h->buf))[size]), buf2, z); 4116 memcpy(&((*(h->buf))[size]), buf2, z);
4117 } else if (h->base64 == 1 && h->fp != NULL) { 4117 } else if (h->base64 == 1 && h->fp != NULL) {
4118 // include any byte left over from the last one encoding 4118 // include any byte left over from the last one encoding
4119 buf2 = (char*)realloc(buf2, z+h->base64_extra); 4119 buf2 = (char*)realloc(buf2, z+h->base64_extra);
4120 memmove(buf2+h->base64_extra, buf2, z); 4120 memmove(buf2+h->base64_extra, buf2, z);
4121 memcpy(buf2, h->base64_extra_chars, h->base64_extra); 4121 memcpy(buf2, h->base64_extra_chars, h->base64_extra);
4122 z+= h->base64_extra; 4122 z+= h->base64_extra;
4123 4123
4124 b = z % 3; // find out how many bytes will be left over after the encoding. 4124 b = z % 3; // find out how many bytes will be left over after the encoding.
4125 // and save them 4125 // and save them
4126 memcpy(h->base64_extra_chars, &(buf2[z-b]), b); 4126 memcpy(h->base64_extra_chars, &(buf2[z-b]), b);
4127 h->base64_extra = b; 4127 h->base64_extra = b;
4128 t = base64_encode(buf2, z-b); 4128 t = base64_encode(buf2, z-b);
4129 pst_fwrite(t, 1, strlen(t), h->fp); 4129 pst_fwrite(t, 1, strlen(t), h->fp);
4130 DEBUG_READ(("writing %i bytes to file as base64 [%i]. Currently %i\n", 4130 DEBUG_READ(("writing %i bytes to file as base64 [%i]. Currently %i\n",
4131 z, strlen(t), size)); 4131 z, strlen(t), size));
4132 } else if (h->fp != NULL) { 4132 } else if (h->fp != NULL) {
4133 DEBUG_READ(("writing %i bytes to file. Currently %i\n", z, size)); 4133 DEBUG_READ(("writing %i bytes to file. Currently %i\n", z, size));
4134 pst_fwrite(buf2, 1, z, h->fp); 4134 pst_fwrite(buf2, 1, z, h->fp);
4135 } 4135 }
4136 size += z; 4136 size += z;
4137 y++; 4137 y++;
4138 } else { 4138 } else {
4139 if ((z = _pst_ff_compile_ID(pf, x, h, size)) == 0) { 4139 if ((z = _pst_ff_compile_ID(pf, x, h, size)) == 0) {
4140 DEBUG_WARN(("recursive called returned zero %i\n", z)); 4140 DEBUG_WARN(("recursive called returned zero %i\n", z));
4141 free(buf3); 4141 free(buf3);
4142 DEBUG_RET(); 4142 DEBUG_RET();
4143 return z; 4143 return z;
4144 } 4144 }
4145 size = z; 4145 size = z;
4146 y++; 4146 y++;
4147 } 4147 }
4148 } 4148 }
4149 free(buf3); 4149 free(buf3);
4150 if (buf2 != NULL) 4150 if (buf2 != NULL)
4151 free(buf2); 4151 free(buf2);
4152 DEBUG_RET(); 4152 DEBUG_RET();
4153 return size; 4153 return size;
4154 } 4154 }
4155 4155
4156 #ifdef _MSC_VER 4156 #ifdef _MSC_VER
4157 char * fileTimeToAscii(const FILETIME* filetime) { 4157 char * fileTimeToAscii(const FILETIME* filetime) {
4202 return 1; 4202 return 1;
4203 } 4203 }
4204 4204
4205 int32_t pst_strincmp(char *a, char *b, int32_t x) { 4205 int32_t pst_strincmp(char *a, char *b, int32_t x) {
4206 // compare upto x chars in string a and b case-insensitively 4206 // compare upto x chars in string a and b case-insensitively
4207 // returns -1 if a < b, 0 if a==b, 1 if a > b 4207 // returns -1 if a < b, 0 if a==b, 1 if a > b
4208 int32_t y = 0; 4208 int32_t y = 0;
4209 while (*a != '\0' && *b != '\0' && y < x && toupper(*a)==toupper(*b)) { 4209 while (*a != '\0' && *b != '\0' && y < x && toupper(*a)==toupper(*b)) {
4210 a++; b++; y++; 4210 a++; b++; y++;
4211 } 4211 }
4212 // if we have reached the end of either string, or a and b still match 4212 // if we have reached the end of either string, or a and b still match
4213 if (*a == '\0' || *b == '\0' || toupper(*a)==toupper(*b)) 4213 if (*a == '\0' || *b == '\0' || toupper(*a)==toupper(*b))
4214 return 0; 4214 return 0;
4215 else if (toupper(*a) < toupper(*b)) 4215 else if (toupper(*a) < toupper(*b))
4216 return -1; 4216 return -1;
4217 else 4217 else
4218 return 1; 4218 return 1;
4219 } 4219 }
4220 4220
4221 size_t pst_fwrite(const void*ptr, size_t size, size_t nmemb, FILE*stream) { 4221 size_t pst_fwrite(const void*ptr, size_t size, size_t nmemb, FILE*stream) {
4222 size_t r; 4222 size_t r;
4228 DEBUG_WARN(("An attempt to write a NULL Pointer was made\n")); 4228 DEBUG_WARN(("An attempt to write a NULL Pointer was made\n"));
4229 } 4229 }
4230 DEBUG_RET(); 4230 DEBUG_RET();
4231 return r; 4231 return r;
4232 } 4232 }
4233 4233
4234 char * _pst_wide_to_single(char *wt, int32_t size) { 4234 char * _pst_wide_to_single(char *wt, int32_t size) {
4235 // returns the first byte of each wide char. the size is the number of bytes in source 4235 // returns the first byte of each wide char. the size is the number of bytes in source
4236 char *x, *y; 4236 char *x, *y;
4237 DEBUG_ENT("_pst_wide_to_single"); 4237 DEBUG_ENT("_pst_wide_to_single");
4238 x = xmalloc((size/2)+1); 4238 x = xmalloc((size/2)+1);