-
Notifications
You must be signed in to change notification settings - Fork 74
/
ChangeLog
2571 lines (2088 loc) · 69.3 KB
/
ChangeLog
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
TODO
libpff - clean up and refactoring
* refactor
** merge descriptors_index_tree and offsets_index_tree into index_tree?
** recover refactor libpff_recover_index_nodes to use index_node
** cache index nodes and/or index values
** cache local descriptors nodes and/or local descriptor values
** use or remove table->local_descriptors_cache
* libpff_table
- move table header read functions into table header source file
- move column definition read functions into column definition source file
- cleaner reusable data structure? (libfdata)
- create 7c table read entry definitions function
- create ac table read entry definitions function
* have multi type work with data reference (in libpff_item) ?
* tree type implement use of initialize function (grep sizeof( libpff_tree_node_t ) )
* refactor direct use of array, list, and tree value attributes
* improve force decryption check
* refactor
- create generic solution for data block handling for: individual blocks,
array blocks, local descriptor blocks, table blocks
- refactor libpff_local_descriptor_node_read to deal with compressed data
blocks. read from data block?
- fix libpff_local_descriptors_read_node_entry
- item tree: wrap direct access to descriptors_index
- recover: wrap direct access to descriptors and offsets_index
- implement libfdata_list_set_element_by_index_with_mapped_size
- 4k the back pointer of the array data block is the data identifier
not the identifier?
check for: "libpff_data_block_read: mismatch in data identifier:"
- add a generic method to read data blocks from the file
- local descriptors: cache local descriptor nodes ?
- fix libfdata_list_set_element_data
- table refactor entries into stand-alone multi set array ?
- table read should empty the record_sets_array on read ?
- record entry handle different data types on demand ?
- what about table block?
- use fvalue to store record entry data ?
- libpff_item_values_get_record_entry_by_type add generic STRING TYPE ?
* code clean up
- refactor table index into fdata list? with table blocks
- does table index contain full copy of table data ? if so refactor
* refactor libpff_message_get_entry_value_utf8_string to match naming schema
* add threads RW lock to item
* remove libpff_data_block_clone
* pypff fix get_root_item
IOError: pypff_file_get_item_type_object: unable to retrieve item type.
libpff_table_read: invalid table: 0 - missing data identifier.
libpff_item_values_read: unable to read table.
libpff_item_values_get_record_entry_by_type: unable to read item values.
libpff_item_determine_type: unable to retrieve record entry: 0x001a.
libpff_item_get_type: unable to determine item type.
* add specific entry value flag for string types?
* add libpff_item_values_get_record_entry_by_type specific for string types?
* API add
- libpff_multi_value_get_value_16bit
- libpff_multi_value_get_value_floating_point
- rename sub message to message ?
libpff
- have libpff_record_entry_get_entry_multi_value use libfvalue data handle
instead?
* pypff
- create attachment item
- make sure record set index and record entry index are uint32
- add definitions
- add record entry value functions
pypff_record_entry_get_value_data_size
get_value_data_as_boolean
get_value_data_as_datetime
- add multi value functions
- add iterator objects (+/-)
- add time as integer functions
- add function to return offset of item
- add more functions
- add name to id map support
- add message get_attachments_items function
- add message get_recipients_items function
* local descriptor node caching
- local descriptor node cache on top of data block cache ?
- add cache timestamp
* add IPM.Post support (more1/Me.pst)
* corrupted
- mark file with incorrect encryption as corrupted
* recovery
- read data block size while scanning, ignore mismatches
- check if local descriptors are read as block
- handle corrupt file header and scan file?
* debug print
- free map
- densitiy list
* 64-bit 4k pages support
- libpff_free_map.c
- did the table value reference change?
* fix/check
- check creation of .export when -t is a directory
- remove copy file descriptors
- Change most proxy pointers to const ?
- check if libpff_item_get_entry_value_by_utf8_name works
- Add function to easily map a named entry type to it's numeric value
- add libpff_message_get_number_of_recipients() convenience function?
* add get entry id by name function
* add by_name functions (check corresponding TODO)
* fdata stream rewrite
- array uses it as list
* clean up error path of libpff_item_tree_create_node
* libfdata update
- improve stream, how deal with compressed data
- fix libfdata_tree_initialize
* libpff IO handle
- move index_nodes_vector and index_nodes_cache to file
* libfmapi
- add debug output for PidTagFlagStatus
- add debug output for PidLidSideEffects
- add debug output for PidLidTaskMode
- add debug output for PidLidAddressBookProviderArrayType
* implement libcdata support
- refactor list
- move tree node get value into libpff_item_initialize
* pffexport/export handle:
- handle MIME attachments
- protect against duplicate name clashes
- dump attachment item values
- add support for LIBPFF_ITEM_TYPE_COMMON (IPM)
- separate item file into separate structure
- move message specific funtionality into message file ?
- allow to set output formatting utf8 or utf16
* item file:
- create function to write enum values to the item file
- create function to write flag values to the item file
* code clean up
- what's the status of table block ?
- unused and goto
* libpff: UTF8/UTF16
- libpff_message_get_plain_text_body_size
- libpff_message_get_rtf_body
* what about debug export and error notifications
Change item API into table API
* deprecrate and replace by copy data functions:
- libpff_item_get_entry_value
- libpff_item_get_entry_value_by_utf8_name
- libpff_item_get_entry_value_by_utf16_name
* add table API ?
- read data on demand like libesedb
- move low-level item functions to table API
- should table manage local descriptors and cache ?
- separate item values code from table ?
- expose record (entry) to API ?
* remove ascii codepage param from libpff_item_values_get_entry_value ?
* add const to export path in export handle
* replace internal_file by io_handle in item
* add item (descriptor identifier) type support
- e.g. do not read a table if item does not contain a table
* cache local descriptor node (list element) in local descriptor value ?
- reduces search for list element
libpff
* rename value (type) to table entry value (type)
* check node values ranges in index tree
* add abort support in long running function
- make sure to return library to safe state
- make sure to reset library abort value
* reduce impact of duplicate MAPI entry types
* validate table entry identifiers of level >= 1 with those of lower levels?
* codepage support
- implement libuna-libpff codepage mapping function
libpff - check/test
* check support for multiple level 8c tables
libpff - API
* message store
- add functions to retrieve special folder entry items
* add function to retrieve:
- the file offset ranges used by an item ?
* name to id map
- API access to entire name to id map ?
- add libpff_file_get_name_to_id_map to include file?
* add a function to retrieve the total number of items?
- maintain the total number of items?
- maintain the total number of folder items?
* item
- add read in buffers functions for entry values like message body?
libpff - error tollerance and recovery
* handle multiple descriptors in libpff_io_handle_get_descriptor_index_value_by_identifier
and libpff_io_handle_get_offset_index_value_by_identifier
* analyze remaining/deleted content
* fragment recovery
- add fragment support
- allow fragments/partial items (add upper level reporting)
- allow items without/with invalid local descriptors?
* item recovery
- improve local descriptors read test - to read and check entire tree
- improve performance of deleted offset index value duplicate check
- handle duplicate offset index value identifiers
- check fragment scan for correct looping of buffer
- group recovered items with the same parent (do not link with allocated parent)
- add support for recovered embedded items
* CRC error recovery
- detect CRC32 corruption
- detect data corruption
* automatically detect if allocation tables are useable ?
libpff - performance
* allocation tables
- read allocation tables on demand ?
- for large list support replace allocation offset list by tree variant
* optimized version of libpff_encryption_decrypt ?
* item hierarchy (tree)
- build on demand ?
- flag if sub nodes have been created ?
* item values
- read directly into external buffer?
* attachment data
- read directly into external buffer?
* does pre-reading item values of attachment improve performance ?
libpff - file format support
* add free maps support
* add support for cell existence
* add support for cc table type
* add support for the density list
pfftools
* pffinfo
- add byte size string
* pffexport
- add flag to overwrite export directory?
- export the data in the pff file (embedded objects)
- use identifier numbering for traceability?
- add support for export to mbox, eml (ole2)
- support control code in subject
- provide export summary
- allow to set date format
- remove ftk output
- create outlook html output
- add support for setting recovery method
* export handle
- try to export items without item type ?
- handle duplicate attachment names (add suffix number)
- export attachment to separate subdirectory
- improve filename sanitation - do a sanity test
- use close related character replacements to improve readability
- check into unable to export attachment not being notified in export log
- correctly handle skipping an item without class name
- check if 0x0e1f (PidTagRtfInSync) is set and export alternating RTF body
- move target path to common functions as much as possible
- handle multi message body formats for non email items
add function to handle prefered and available message body
change text message body export of item types into prefered/available message body
- item support
- IPM.FAX
- IPM.Post
- IPM.StickyNote
- IPM.Configuration.RssRule
- IPM.Configuration.HomeTimeZone
- IPM.Configuration.AvailabilityOptions
- IPM.Configuration.Calendar
- IPM.Configuration.CategoryList
- IPM.Configuration.WorkHours
- IPM.Configuration.RssRule
- IPM.Sharing
- IPM.Sharing.Binding.In
- item support (also check library)
- IPM.Recall.Report.Success
- IPM.Microsoft.ScheduleData.FreeBusy
- IPM.Microsoft.SniffData
- IPM.Microsoft.FolderDesign.NamedView
- IPM.MessageManager
* create pffcrack
- implement password cracking
- implement password reset (requires write)
* create pffconvert
- convert pst into ost and vice versa (requires write functionality)
* create pffsearch/pfffind
* handle url as filename
- improve sanitize filename function
* export attachment in small sized buffers
- do not read entire item before its needed?
- move item value debug to higher levels than table?
* contact
- export rtf body
Multi language/locale support
* library data returns UTF-8 (done)
* input filenames remain system string (done)
* move character_t functionality to system_character_t (done)
* remove string conversion code (done)
* print output convert to system string
* to reduce conversions use as much as possible the system string type in
the tools (have error use system string? or convert before print?)
Check/Validate
* parse code with slint
Debug
* check windows debug output
* do not error return on debug error?
- do not fail item if debug print was unsuccessful
- only fail on serious errors
* formatting problems in XP with "%s: %s index entry: %" PRIu8 " identifier: %" PRIu64 " is recoverable.\n","
- identifier is off
Documentation:
* add 'getting started with programming libpff' document
* add C and Python, Java examples
Deployment:
* have configure set the default codepage ? also for debug
* create debian package files
Beta release
* remove deprecated functions in include/libpff.h
* remove deprecated definition in include/libpff/definitions.h
* remove deprecated definition in include/libpff/mapi.h
* remove deprecated functions in libpff_legacy.[ch]
Test:
* add autoconf/make test suite
File Format:
* handle missing message store (check)
* handle missing name to id map attributes (check)
* handle encryption type none, but data is still encrypted (check)
* what is the reason for empty (NULL) attachment data, however attachment has a size value !?
* Unknown reason for additional padding in external values array entries data
* What do some binary data item values contain?
* value '/' in (64-bit pst) UTF-16 eml filename is replaced by 0xff 0xf8 but not in subject
* PR_HTML seems to contain 7-bit ASCII with HTML encoding of extended characters
* Is there multiple level table entries support for bc, a5 and 9c tables?
* What is the relation between the 6c and 8c table and the secure id4
Notes:
* in the descriptor index a parent can have a child with a lower identifier value
* cannot create libpff_item_get_sub_item_by_utf8_name, only folders and messages have names
20141002
* see `git log' for more recent change log
* removed README.macosx
* changes for project site move
20140801
* bug fix in Python-bindings
20140624
* updated dependencies
* worked on record set/entry API
* worked on pypff
20140623
* updated dependencies
* worked on pypff
20140119
* 2014 update
* updated dependencies
* worked on pypff
* fixed bug in libpff_file_get_number_of_unallocated_blocks for compressed OST support
20131028
* worked on compressed OST support
- local descriptors
* worked on pypff
20131014
* worked on compressed OST support
- local descriptors
20131013
* worked on python bindings
* worked on compressed OST support
- local descriptors
* updated dependencies
20130929
* worked on setup.py, largely for MSI builds
* worked on compressed OST support
- local descriptors
* code clean up
* update msvscpp files
20130922
* code clean up
* worked on compressed OST support
- local descriptors
20130915
* worked on compressed OST support
- local descriptors
20130902
* worked on compressed OST support
- local descriptors
20130901
* added libcthreads build support
20130831
* worked tests
20130817
* refactored local descriptors
* worked on compressed OST support
- local descriptors
20130812
* worked on compressed OST support
- local descriptors
20130807
* worked on compressed OST support
- table reference
20130806
* worked on compressed OST support
- data array
- table reference
20130805
* worked on recovery in compressed OST files
20130804
* updated dependencies
* worked on record entry values array number out of bounds issue
* refactored table index values to use libcdata array
* fixed invalid return code in error path
* worked on recovery in compressed OST files
20130731
* worked on fixing out of bounds read of name to id map string in an error
toloreant way
* Added is corrupted function
20130730
* worked on name to id map string out of bounds issue
* worked on record entry values array number out of bounds issue
20130728
* Worked on 64-bit 4k pages support
* Worked on item recovery
20130722
* Worked on compressed OST support
20130721
* worked on major refactor
* updated msvscpp files
* worked on pypff
20130720
* worked on major refactor
* worked on pypff
20130719
* worked on major refactor
20130718
* worked on major refactor
20130713
* worked on major refactor
* worked on tests
* fix for handling floating point values in item file
20130718
* worked on major refactor
20130716
* worked on major refactor
20130714
* worked on major refactor
20130712
* worked on major refactor
20130704
* worked on major refactor
20130625
* worked on major refactor
20130620
* worked on major refactor
20130619
* worked on major refactor
20130618
* worked on major refactor
20130617
* worked on major refactor
20130616
* worked on major refactor
20130609
* updated dependencies
20130514
* updated dependencies
20130413
* updated dependencies
20130326
* worked on API by_utf8_name and by_utf16_name functions
* worked on libcdata rewrite
20130325
* worked on API by_utf8_name and by_utf16_name functions
20130224
* worked on compresses OST support
* worked on libfdata update
20130223
* worked on 64-bit 4k page file format support
* worked on compresses OST support
* code clean up
* bug fixes in error path
* improved debug output
20130220
* pffexport:
- worked on IPM.DistList support
* changes to spec file
20130203
* libpff
- fixes in error code paths
* libfmapi
- improved debug output
- fixes in error code paths
20130202
* pffexport:
- added message flags
- improved output of flag types
- worked on IPM.DistList support
* tests:
- added pffinfo test
* libfmapi
- improved debug output
* updated macosx files
20130114
* 2013 update
* updated dependencies
20120113
* removed contrib in favor of sed conversion scripts
20121123
* pypff: code clean
20121108
* worked on libcdata integration
* code clean up
20121107
* worked on libcdata integration
* code clean up
20121105
* worked on libcdata integration
20121104
* updated dependencies
* pypff: bug fixes
* worked on libcdata integration
20120808
* renamed crc32 to checksum in libfmapi
* code clean up
20120802
* bug fix in pffexport
20120729
* applied updates
* changes for project move
* bug fix in export handle, address type and email address were swapped in the
previous update
* Changed how duplicate attachments are named, attachment are now prefixed
with their index number
* updated msvscpp files
20120611
* bug fix in item file hexdump function
20120610
* applied updates
* bug fixes in macros in include header
* worked on WINAPI UTF-16 output support
20120513
* applied updates
* worked on pypff
* disabled codegear files
* API
- removed deprecated functions
- added support for contact email adress 1, 2 and 3
* pffexport:
- added support for contact email adress 1, 2 and 3
- removed export_handle_make_directory
* updated msvscpp files
20120424
* applied updates
20120304
* moved LCID from libfmapi to libfwnt
20120213
* added dpkg files
* pypff: added -avoid-version to Makefile.am
* updated libnotify, libsystem, libbfio, libfvalue
20120127
* code clean up
* pffinfo: implemented info handle
20120103
* code clean up
20120102
* 2012 update
* code clean up
20111025
* updated m4 files
* code clean up
20111018
* updated configure.ac and m4 files
* updated README files
* updated spec and pc files
* updated common, libsystem, libuna, libbfio, libfdatetime, libfvalue
* pypff: code clean up
20110927
* updated libfmapi
20110904
* pypff: code clean up
* updated configure, common, array type, libcstring, log handle, libuna,
libbfio, libfdata, libfdatetime, libfvalue
20110705
* updated libfmapi
20110523
* code clean up
20110508
* updated libfmapi
20110425
* updated libuna with codepage 932 and 936 support
* updated msvscpp and codegear files
20110413
* bug fix in libfdata regarding recovery
20110412
* bug fix in libfdata regarding attachment data read without initial seek
offset
20110320
* update libcstring, libsystem
* fix for INTLLIBS
20110317
* updated configure.ac, libcstring, libsystem, libuna, libbfio, libfdata,
libfguid, libfwnt,
* worked on restriction for sanitized filename and path
20110209
* updated libfmapi
20110201
* update libsystem, bug fix for split of empty string
20110120
* pfftools: code clean
20110119
* pfftools: code clean
20110118
* updated libcstring, libsystem, libuna, libbfio, libfdata
* API: worked on UTF-8 and UTF-16 macros
* pfftools: code clean
* updated libpff.3 man page
20110116
* updated libfmapi
20110114
* updated libcstring
20110113
* updated common, libsystem, libuna, libbfio, libfdata, libfvalue
* pfftools: code clean
* API: worked on UTF-8 and UTF-16 macros
* updated libpff.3 man page
20110107
* updated configure.ac
* updated libsystem, libuna, libbfio, libfdata, libfdatetime, libfguid,
libfvalue, libfwnt,
* 2011 update
* code clean up
* fixed typo changed unsuported => unsupported
* API: add conveniance macros for:
- sent representing name
- sent representing email address
- postal address
- primary phone number
- home phone number
- primary and secondary business phone number
- mobile phone number
* pffexport: added value to (outlook) message header output
- sent representing name
- sent representing email address
* pffexport: fixed missing note and rss feed body text
* pffexport: added some values to contact output
* libfmapi: updated some property types
20101224
* code clean up
* updated libcstring
20101219
* updated array type
* updated libsystem, libbfio, libfvalue
* updated log_handle.[ch]
* code clean up libpff, pfftools
20101218
* code clean up pfftools
20101216
* updated configure, added gettext
* updated array type, list type, offset list
* updated libsystem, libbfio, libfvalue
20101203
* updated common, array type, list type, tree type, offset list, liberror,
libnotify, libsystem, libuna, libbfio, libfdata, libfdatetime
* changes for libfdata update
* updated contrib
* code clean up
* fix for clone data array
* optimized libfdatetime filetime to date time values conversion
20101120
* updated configure, libcstring, liberror, libbfio, libfvalue
* updated offset list
* updated libpff.pc.in libpff.spec.in
20101113
* updated libfmapi
* updated pffinput.c
20101111
* updated libfvalue
20101110
* worked on fix for force decryption being set by recovered items
* updated libfvalue
20101106
* updated include/error.h, liberror, libbfio, libsystem
* fixed some 64-bit WINAPI compilation warnings
20101105
* added libpff.rc for DLL build, currently only supported in msvscpp build
20101028
* pffexport:
- worked on code clean up
- added dump item values (-d) option
export mode debug no longer dumps item values and exports orphan/recovered
items
- added dump item values of recipients and attachments items
- added quiet (-q) option
* fixed invalid cache issue for cloned items
* added support for: IPM.Conflict.Message
* fixes for pypff
* added contrib directory for msvscpp win64 build files
20101027
* updated configure.ac
* updated include/error.h
* updated include/types.h
* updated array type, offset list
* updated common, liberror, libsystem, libbfio, libfvalue
* worked on pypff error handling
* libfmapi added support for unknown one-off entryid flag
* libfmapi debug output fix
* default version info of pfftools is now short
* fix in Windows debug output
* pffexport: added export of recipients and attachments for activities
* fixed invalid cache issue for embedded attachments
* fixed rougue detach signal handler pffinfo
20101014
* corrections in examples
20101012
* added missing jpff files
20101008
* fixed bug in debug output
* fixed issue in libfdata reference
20101007
* fix for binary mode issue in export_handle
* fix for premature end of string issue in libpff_message_get_html_body
* pffexport: check for existing directories now based on export type
* pffexport: replaced sprintf due to cross platform inconsistencies
* updated liberror, libnotify, libsystem, libbfio, libfvalue
20100915
* changes for make dist
20100911
* updated array type
* updated libfdata, libfdatetime, libfwnt
* worked on Java binding (jpff)
* worked on examples
20100903
* code clean up of table and item values
* added support for recurring appointment: IPM.OLE.CLASS.{00061055-0000-0000-C000-000000000046}
* updated libfguid
20100902
* code clean up of table and item values
20100901
* code clean up of table and item values
* added cache timestamp to libfdata
20100831
* code clean up of table and item values
* worked on moving data reference to libfdata
20100830
* worked on moving data reference to libfdata
20100828
* worked on moving data reference to libfdata
20100825
* libfdata: protect against small tree node cache sizes < 4 entries
20100824
* small correction in debug output
* libfdata: fixed cache entry duplicate on insert
20100818
* updated libcstring, libsystem, libuna, libbfio, libfdatetime
* worked on Java binding (jpff)
20100725
* worked on pypff
* the folder functions now try to determine the item type if type is undefined
* added mingw compilation document
* updated libbfio
* changed add into append
* message body codepage is ignored, seems to be incorrect
20100724
* updated include/error.h and liberror
* updated array type
* update libuna, libbfio
* worked on pypff
* deprecated LIBPFF_FLAG_READ/WRITE in favor of LIBPFF_ACCESS_FLAG_READ/WRITE
20100722
* changes to libfdata
* updated libfvalue
20100717
* initial work on pypff
* pffexport added error tollerability for failed recipient export
20100716
* updated libuna, libbfio, libfdata, libfdatetime, libfguid, libfmapi, libfwnt, libsystem
* updatad include/codepage.h
* updated include/error.h and liberror
* updated array, list and tree types
* code clean up and refactoring
* added support for handling attachments with duplicate filenames
20100712
* changes to libpff_item_clone behaviour, a clone of NULL is now valid
* textual changes
20100711
* textual changes
20100710
* code clean up and refactoring
* bug fix in debug output of libfmapi
* worked on improving recovery
* worked on item type support
* add missing libfguid and libfwnt directories to configure.ac
20100709
* code clean up and refactoring
* worked on libfdata cache lookup performance
* removed libpff_item_values_get_sub_node_by_identifier
20100708
* code clean up and refactoring
* worked on libfdata version of local descriptors tree for faster cloning
* worked on libfdata cache lookup performance
20100707
* code clean up and refactoring
* worked on libfdata version of local descriptors tree for faster cloning
20100706
* worked on libfdata block full cache handling
* code clean up and refactoring
* updated libuna, libbfio, libfdatetime
* small fixes
* updated array, list and tree type
* worked on clone functions
20100705
* reverted to 20100704-6
* worked on recovery performance
* updated libbfio
20100704
* worked on tree recovered node support
* worked on improving recovery
* worked on recovery performance
20100703
* worked on improving recovery
* code clean up and refactoring
* worked on recovery performance
20100702
* worked on libfmapi
* code clean up and refactoring
20100701
* worked on file exists speed improvement based on idea by Björn Ganster
* worked on on-demand read of index nodes
* updated common, libbfio
* updated msvscpp files
* updated codegear files
* worked on libfmapi
20100629
* updated common, libcstring, liberror, libnotify, libsystem
* updated libuna, libbfio, libfdata, libfdatetime, libfmapi
* added libfguid, libfwnt
* clean up
* worked on on-demand read of index nodes
20100624
* updated libfmapi
20100619
* updated libbfio and libfdata
* updated array type
20100611
* worked on libfdata
* updated libbfio
* refactored index item to index entry
20100610
* worked on libfdata
* fixed memory leak in pffinfo
20100608