Mercurial > libpst
annotate ChangeLog @ 46:b2a7f2e0926a
more fixes for 64 bit format
author | carl |
---|---|
date | Sat, 12 Jan 2008 15:20:53 -0800 |
parents | f6db1f060a95 |
children | 5fb8d997feed |
rev | line source |
---|---|
46 | 1 LibPST 0.6.2 (2008-01-12) |
2 =============================== | |
3 | |
4 * More fixes for Outlook 2003 64 bit parsing. | |
5 * All buffer sizes changed to size_t, all file offsets changed to off_t, | |
6 all function names start with pst_, many other type consistency issues | |
7 found by splint. Many changes to #llx in debug printing for 64 bit items. | |
8 | |
43 | 9 LibPST 0.6.1 (2008-01-06) |
10 =============================== | |
11 | |
12 * Outlook 2003 64 bit parsing. Some documentation from Alexander Grau | |
13 <alexandergrau@gmx.de> and patches from Sean Loaring <sloaring@tec-man.com>. | |
14 * fix from Antonio Palama <palama@inwind.it> for email items | |
15 that happen to have item->contact non null, and were being processed | |
16 as contacts. | |
17 * Add large file support so we can read .pst files larger than 2gb. | |
18 * Change lspst to be similar to readpst, properly using recursion to walk | |
19 the tree, and testing item types. Add a man page for lspst. | |
20 | |
41
183ae993b9ad
security fix for potential buffer overrun in lz decompress
carl
parents:
40
diff
changeset
|
21 LibPST 0.5.12 (2007-10-02) |
183ae993b9ad
security fix for potential buffer overrun in lz decompress
carl
parents:
40
diff
changeset
|
22 =============================== |
183ae993b9ad
security fix for potential buffer overrun in lz decompress
carl
parents:
40
diff
changeset
|
23 |
183ae993b9ad
security fix for potential buffer overrun in lz decompress
carl
parents:
40
diff
changeset
|
24 * security fix from Brad Hards <bradh@frogmouth.net> for buffer |
183ae993b9ad
security fix for potential buffer overrun in lz decompress
carl
parents:
40
diff
changeset
|
25 overruns in liv-zemple decoding for corrupted or malicious pst files. |
183ae993b9ad
security fix for potential buffer overrun in lz decompress
carl
parents:
40
diff
changeset
|
26 |
40 | 27 LibPST 0.5.11 (2007-08-24) |
28 =============================== | |
29 | |
30 * fix from Stevens Miller <smiller@novadatalabs.com> | |
31 for unitialized variable. | |
32 | |
39 | 33 LibPST 0.5.10 (2007-08-20) |
34 =============================== | |
35 | |
36 * fix yet more valgrind errors - finally have a clean memory check. | |
37 * restructure readpst.c for proper recursive tree walk. | |
38 * buffer overrun test was backwards, introduced at 0.5.6 | |
39 * fix broken email attachments, introduced at 0.5.6 | |
40 | |
38 | 41 LibPST 0.5.9 (2007-08-12) |
42 =============================== | |
43 | |
44 * fix more valgrind errors. | |
45 | |
37 | 46 LibPST 0.5.8 (2007-08-10) |
47 =============================== | |
48 | |
49 * fix more valgrind errors. lzfu_decompress needs to return the | |
50 actual buffer size, since the lz header overestimates the size. | |
51 This caused base64_encode to encode undefined bytes into the | |
52 email attachment. | |
53 | |
36 | 54 LibPST 0.5.7 (2007-08-09) |
55 =============================== | |
56 | |
57 * fix valgrind errors, using uninitialized data. | |
58 * improve debug logging and readpstlog for indented listings. | |
59 * cleanup documentation. | |
60 | |
35 | 61 LibPST 0.5.6 (2007-07-15) |
62 =============================== | |
63 | |
34
07177825c91b
fix signed/unsigned to allow very small pst files with only leaf nodes
carl
parents:
31
diff
changeset
|
64 * Fix to allow very small pst files with only one node in the |
07177825c91b
fix signed/unsigned to allow very small pst files with only leaf nodes
carl
parents:
31
diff
changeset
|
65 tree. We were mixing signed/unsigned types in comparisons. |
35 | 66 * More progress decoding the basic structure 7c blocks. Many |
67 four byte values may be ID2 indices with data outside the buffer. | |
68 * Start using doxygen to generate internal documentation. | |
34
07177825c91b
fix signed/unsigned to allow very small pst files with only leaf nodes
carl
parents:
31
diff
changeset
|
69 |
31 | 70 LibPST 0.5.5 (2007-07-10) |
71 =============================== | |
72 | |
34
07177825c91b
fix signed/unsigned to allow very small pst files with only leaf nodes
carl
parents:
31
diff
changeset
|
73 * merge the following changes from Joe Nahmias version: |
07177825c91b
fix signed/unsigned to allow very small pst files with only leaf nodes
carl
parents:
31
diff
changeset
|
74 * Lots of memory fixes. Thanks to Nigel Horne for his assistance |
07177825c91b
fix signed/unsigned to allow very small pst files with only leaf nodes
carl
parents:
31
diff
changeset
|
75 tracking these down! |
07177825c91b
fix signed/unsigned to allow very small pst files with only leaf nodes
carl
parents:
31
diff
changeset
|
76 * Fixed creation of vCards from contacts, thanks to Nigel Horne for |
07177825c91b
fix signed/unsigned to allow very small pst files with only leaf nodes
carl
parents:
31
diff
changeset
|
77 his help with this! |
07177825c91b
fix signed/unsigned to allow very small pst files with only leaf nodes
carl
parents:
31
diff
changeset
|
78 * fix for MIME multipart/alternative attachments. |
07177825c91b
fix signed/unsigned to allow very small pst files with only leaf nodes
carl
parents:
31
diff
changeset
|
79 * added -c options to readpst manpage. |
07177825c91b
fix signed/unsigned to allow very small pst files with only leaf nodes
carl
parents:
31
diff
changeset
|
80 * use 8.3 attachment filename if long filename isn't available. |
07177825c91b
fix signed/unsigned to allow very small pst files with only leaf nodes
carl
parents:
31
diff
changeset
|
81 * new -b option to skip rtf-body.rtf attachments. |
07177825c91b
fix signed/unsigned to allow very small pst files with only leaf nodes
carl
parents:
31
diff
changeset
|
82 * fix format of From header lines in mbox files. |
43 | 83 * Add more appointment fields, thanks to Chris Halls for tracking |
34
07177825c91b
fix signed/unsigned to allow very small pst files with only leaf nodes
carl
parents:
31
diff
changeset
|
84 them down! |
31 | 85 |
86 | |
30 | 87 LibPST 0.5.4 (2006-02-25) |
88 =============================== | |
89 | |
90 * patches from Arne, adding MH mode, remove leading zeros | |
91 from the generated numbered filenames starting with one | |
92 rather than zero. Miscellaneous code cleanup. | |
93 | |
94 * document the "7c" descriptor block format. | |
95 | |
24 | 96 LibPST 0.5.3 (2006-02-20) |
16 | 97 =============================== |
98 | |
24 | 99 * switch to gnu autoconf/automake. This breaks the MS VC++ projects |
100 since the source code is now in the src subdirectory. | |
101 | |
16 | 102 * documentation switched to xml, building man pages and html |
103 from the master xml copy. | |
104 | |
24 | 105 * include rpm .spec file for building src and binary rpms. |
106 | |
16 | 107 |
12
3f627519a92d
properly ignore (second block zero) errors. that will just drop some unknown attachments, but the rest of the data is still found
carl
parents:
11
diff
changeset
|
108 LibPST 0.5.2 (2006-02-18) |
11 | 109 =============================== |
110 | |
111 * Added pst2ldif to convert the contacts to ldif format for import | |
112 into ldap databases. | |
113 | |
114 * Major changes to libpst.c to properly use the node depth values | |
115 from the b-tree nodes. We also use the item count values in the nodes | |
116 rather than trying to guess how many items are active. | |
117 | |
118 * Cleanup whitespace - using tabs for every four columns. | |
119 | |
120 | |
3 | 121 LibPST 0.5.1 (17 November 2004) |
122 =============================== | |
123 | |
124 Well, alot has happened since the last release of libpst. | |
125 | |
126 Release / Management: | |
127 | |
11 | 128 * The project has forked! The new maintainer is Joseph Nahmias. |
129 * We have changed hosting sites, thanks to sourceforge for hosting | |
130 to this point. From this point forward we will be using | |
131 alioth.debian.org. | |
132 * The project is now using SubVersioN for source control. You can | |
133 get the latest code by running: | |
134 svn co svn://svn.debian.org/svn/libpst/trunk . | |
135 * See | |
136 <http://lists.alioth.debian.org/pipermail/libpst-devel/2004-November/000000.html> | |
137 for more information. | |
3 | 138 |
139 Code Changes: | |
140 | |
11 | 141 * Added lspst program to list items in a PST. Still incomplete. |
142 * Added vim folding markers to readpst.c | |
143 * avoid the pseudo-prologue that MS prepends to the email headers | |
144 * fix build on msvc, since it doesn't have sys/param.h | |
145 * Re-vamped Makefile: | |
146 * Only define CFLAGS in Makefileif missing | |
147 * fixed {un,}install targets in Makefile | |
148 * Fixed up build process in Makefile | |
149 * Added mozilla conversion script from David Binard | |
150 * Fixed bogus creation of readpst.log on every invocation | |
151 * escaped dashes and apostrophe in manpages | |
152 * Updated TODO | |
153 * added manpages from debian pkg | |
154 * fix escaped-string length count to consider '\n', | |
155 thanks to Paul Bakker <bakker@fox-it.com>. | |
156 * ensure there's a blank line between header and body | |
157 patch from <johnh@aproposretail.com> (SourceForge #890745). | |
158 * Apply accumulated endian-related patches | |
159 * Removed unused files, upstream's debian/ dir | |
3 | 160 |
161 -- Joe Nahmias <joe@nahmias.net> | |
162 | |
163 LibPST v0.5 | |
164 =========== | |
165 | |
166 It is with GREAT relief that I bring you version 0.5 of the LibPST tools! | |
167 | |
168 Through great difficulties, this tool has survived and expanded to become even | |
169 better. | |
170 | |
171 The changes are as follows: | |
172 * RTF support. We can now decompress RTF bodies in emails, and are saved as attachments | |
173 * Better support in reading the indexes. Fixed many bugs with them | |
174 * Improved reliability. "Now we are getting somewhere!" | |
175 * Improved compiling. Hopefully we won't be hitting too many compile errors now. | |
176 * vCard handling. Contacts are now exported as vCard entries. | |
177 * vEvent handling. Support has begun on exporting Calendar entries as events | |
178 * Support for Journal entries has also begun | |
179 | |
180 If you have any problems with this release, don't hesitate to contact me. | |
181 | |
182 These changes come to you, as always, free under the GPL license!! What a wonderful | |
183 thing it is. It does mean that you can write your own program off of this library | |
184 and distribute it also for free. However, anyone with commercial interests for | |
185 developing applications they will be charging for are encouraged to get in touch | |
186 with me, as I am sure we can come to some arrangement. | |
187 | |
188 Dave Smith | |
189 <dave.s@earthcorp.com> | |
190 | |
191 LibPST v0.4.3 | |
192 ============= | |
193 | |
194 Bug fix release. No extra functionality | |
195 | |
196 Dave Smith | |
197 <dave.s@earthcorp.com> | |
198 | |
199 LibPST v0.4.2 | |
200 ============= | |
201 | |
202 The debug system has had an overhaul. The debug messages are no longer | |
203 printed to the screen when they are enabled. They are dumped to a | |
204 binary file. There is another utility called "readlog" that I have | |
205 written to handle these log files. It should make it easier to | |
206 selectively view bits of a log file. It also shows the position that | |
207 the log message was printed from. | |
208 | |
209 There is a new switch in readpst. It is -d. It enables the user to | |
210 specify the log file which the binary log is written to. If the switch | |
211 isn't used, the default file of "readpst.log" is used. | |
212 | |
213 The code is now Visual C++ compatible. It has compiled on Visual C++ | |
214 .net Standard edition, and produces the readpst.exe file. Use the project | |
215 file included in this distribution. | |
216 | |
217 There have been minor improvements elsewhere too. | |
218 | |
219 | |
220 LibPST v0.4.1 | |
221 ============= | |
222 | |
223 Fixed a couple more bugs. Is it me or do bugs just insert themselves | |
224 in random, hard to find places! | |
225 | |
226 Cured a few problems with regard to emails with multiple embeded | |
227 items. They are not fully re-created using Mime-types, but are | |
228 accessible with the -S switch (which saves everything as seperate | |
229 items) | |
230 | |
231 Fixed a problem reading the first index. Back sliders are now | |
232 detected. (ie when the value following the current one is smaller, not | |
233 bigger!) | |
234 | |
235 Added some error messages when we try and read outside of the PST | |
236 file, this was causing a few problems before, cause the return value | |
237 wasn't always checked, so it was possible to be reading random data, | |
238 and trying to make sense of it! | |
239 | |
240 Anyway, if you find any problems, don't hesitate to mail me | |
241 | |
242 Dave Smith | |
243 <dave.s@earthcorp.com> | |
244 | |
245 LibPST v0.4 | |
246 =========== | |
247 | |
248 Fixed a nasty bug that occasionally corrupted attachments. Another bug | |
249 with regard to reading of indexes (also occasional). | |
250 | |
251 Another output method has been added which is called "Seperate". It is | |
252 activated with the -S switch. It operates in the following manor: | |
253 | |
254 |--Inbox-->000000 | |
11 | 255 | 000001 |
256 | 000002 | |
3 | 257 |--Sentmail-->0000000 |
11 | 258 | 0000001 |
259 | 0000002 | |
3 | 260 |
261 All the emails are stored in seperate files counting from 0 upwards, | |
262 in a folder named as the PST folder. | |
263 | |
264 When an email has an attachment, it is saved as a seperate file. The | |
265 filename for the attachment is made up of 2 parts, the first is the | |
266 email number to which it belongs, the second is its filename. | |
267 | |
268 The should now be runnable on big-endian machines, if the define.h | |
269 file is first modified. The #define LITTLE_ENDIAN must be commented | |
270 out, and the #define BIG_ENDIAN must be uncommented. | |
271 | |
272 More verbose error messages have been added. Apparently people got | |
273 confused when the program stopped for no visible reason. This has now | |
274 been resolved. | |
275 | |
276 Thanks for the continued support of all people involved. | |
277 | |
278 Dave Smith | |
279 <dave.s@earthcorp.com> | |
280 | |
281 Libpst v0.3.4 | |
282 ============= | |
283 | |
284 Several more fixes. An Infinite loop and incorrect interpreting of | |
285 item index attributes. Work has started on making the code executable | |
286 on big endian CPUs. At present it should work with Linux on these | |
287 CPUs, but I would appreciate it if you could provide feedback with | |
288 regard to it's performance. I am also working with some other people | |
289 at make it operate on Solaris. | |
290 | |
291 A whole load more items are now recognized by the Item records. With | |
292 more items in Emails and Folders. I haven't got to the Contacts yet. | |
293 | |
294 Anyway, this is what I would call a minor feature enhancment and | |
295 bugfix release. | |
296 | |
297 Dave Smith | |
298 <dave.s@earthcorp.com> | |
299 | |
300 LibPST v0.3.3 | |
301 ============= | |
302 | |
303 Fixed several items. Mainly memory leaks. Loads of them! oops.. | |
304 | |
305 I have added a new program, mainly of debugging, which when passed | |
11 | 306 an ID value and a pst file, will extract and decrypt that ID from |
3 | 307 the pst file. I don't see it being a huge attraction, or of much use |
308 to most people, but it is another example of writing an application | |
309 to use the libpst interface. | |
310 | |
311 Another fix was in the reading of the item index. This has hopefully | |
312 now been corrected. The result of this bug was that not all the emails | |
313 in a folder were converted. Hopefully you should have more luck now. | |
314 | |
315 Dave Smith | |
316 <dave.s@earthcorp.com> | |
317 | |
318 LibPST v0.3.2 | |
319 ============= | |
320 | |
321 Quick bugfix release. There was a bug in the decryption of the basic | |
322 encryption that outlook uses. One byte, 0x6c, was incorrectly decrypted | |
323 to 0x6c instead of 0xcd. This release fixes this bug. Sorry... | |
324 | |
325 | |
326 LibPST v0.3.1 | |
327 ============= | |
328 | |
329 Minor improvements. Fixed bug when linking multiple blocks together, | |
330 so now the linking blocks are not "encrypted" when trying to read | |
331 them. | |
332 | |
333 | |
334 LibPST v0.3 | |
335 =========== | |
336 | |
337 A lot of bug fixing has been done for this release. Testing has been | |
338 done on the creation of the files by readpst. Better handling of | |
339 large binaries being extracted from the PST file has been implemented. | |
340 | |
341 Quite a few reports have come in about not being able to compile on | |
342 Darwin. This could be down to using macros with variable parameter | |
343 lists. This has now been changed to use C functions with variable | |
344 parameters. I hope this fixes a lot of problems. | |
345 | |
346 Added support for recreating the folder structure into normal | |
347 directories. For Instance: | |
348 | |
349 Personal Folders | |
350 |-Inbox | |
351 | |-Jokes | |
352 | |-Meetings | |
353 |-Send Items | |
354 | |
355 each folder containing an mbox file with the correct emails for that | |
356 folder. | |
357 | |
358 Dave Smith | |
359 <dave.s@earthcorp.com> | |
360 | |
361 | |
362 LibPST v0.3 beta1 | |
363 ================= | |
364 | |
365 Again, a shed load of enhancements. More work has been done on the | |
366 mime creation. A bug has been fixed that was letting part of the | |
11 | 367 attachments that were created disappear. |
3 | 368 |
369 A major enhancement is that "compressible encryption" support has been | |
370 added. This was an incredibly simple method to use. It is basically a | |
371 ceasar cipher. It has been noted by several users already that the PST | |
372 password that Outlook uses, serves *no purpose*. It is not used to | |
373 encrypt the PST, it is mearly stored there. This means that the | |
374 readpst application is able to convert PST files without knowing the | |
375 password. Microsoft have some explaning to do! | |
376 | |
377 Output files are now not overwritten if they already exist. This means | |
378 that if you have two folders in your PST file named "fred", the first | |
379 one encountered will be named "fred" and the second one will be named | |
380 "fred00000001". As you can see, there is enough room there for many | |
381 duplicate names! | |
382 | |
383 Output filenames are now restricted. Any "/" or "\" characters in the | |
384 name are replaced with "_". If you find that there are any other | |
385 characters that need to be changed, could you please make me aware! | |
386 | |
387 Thanks to Berry Wizard for help with supporting the encryption. | |
388 | |
389 Thanks to Auke Kok, Carolus Walraven and Yogesh Kumar Guatam for providing debugging | |
390 information and testing. | |
391 | |
392 Dave Smith | |
393 <dave.s@earthcorp.com> | |
394 | |
395 | |
396 LibPST v0.2 beta1 | |
397 ================= | |
398 | |
399 Hello once more... | |
400 | |
401 Attachments are now re-created in mime format. The method is very | |
402 crude and could be prone to over generalisation. Please test this | |
403 version, and if attachments are not recreated correctly, please send | |
404 me the email (complete message source) of the original and | |
405 converted. Cheers. | |
406 | |
407 I hope this will work for everyone who uses this program, but reality | |
408 can be very different! | |
409 | |
410 Let us see how it goes... | |
411 | |
412 Dave Smith | |
413 <dave.s@earthcorp.com> | |
414 | |
415 LibPST v0.2 alpha1 | |
416 =========== | |
417 | |
418 Hello! | |
419 | |
420 Some improvements. The internal code has been changed so that | |
421 attachments are now processed and loaded into the structures. The | |
422 readpst program is not finished yet. It needs to convert these binary | |
423 structs into mime data. At present it just saves them to the current | |
424 directory, overwriting any previous files with the attachment name. | |
425 | |
11 | 426 Improvements over previous version: |
3 | 427 * KMail output is supported - if the "-k" flag is specified, all the |
428 directory hierarchy is created using the KMail standard | |
429 * Lots of bugs and memory leaks fixed | |
430 | |
431 | |
432 Usage: | |
433 | |
434 ReadPST v0.2alpha1 implementing LibPST v0.2alpha1 | |
435 Usage: ./readpst [OPTIONS] {PST FILENAME} | |
436 OPTIONS: | |
437 -h - Help. This screen | |
438 -k - KMail. Output in kmail format | |
439 -o - Output Dir. Directory to write files to. CWD is changed *after* opening pst file | |
440 -V - Version. Display program version | |
441 | |
442 If you want to view lots of debug output, modify a line in "define.h" | |
443 from "//#define DEBUG_ALL" to "#define DEBUG_ALL". It would then be | |
444 advisable to pipe all output to a log file: | |
445 | |
446 ./readpst -o out pst_file &> logfile | |
447 | |
448 Dave Smith | |
449 | |
450 LibPST v0.1 | |
451 =========== | |
452 | |
453 Hi Folks! | |
454 | |
455 This has been a long, hard slog, but I now feel that I have got | |
456 somewhere useful. The included program "main" is able to read an | |
457 Outlook PST file and dump the emails into mbox files, separating each | |
458 folder into a different mbox file. All the mbox files are stored in | |
459 the current directory and no attempt is yet made to organise these | |
460 files into a directory hierarchy. This would not be too difficult to | |
461 achieve though. | |
462 | |
463 Email attachments are not yet handled, neither are Contacts. | |
464 | |
465 There is no pretty interface yet, but you can convert a PST file in | |
466 the following manner | |
467 | |
468 ./main {path to PST file} | |
469 | |
470 This is very much a work in progress, but I thought I should release | |
471 this code so that people can lose their conception that outlook files | |
472 will never be converted to Linux. | |
473 | |
474 I am intending that the code I am writing will be developed into | |
475 greater applications to provide USEFUL tools for accessing and | |
476 converting PST files into a variety of formats. | |
477 | |
478 One point I feel I should make is that Outlook, by default, creates | |
479 "Compressible Encryption" PST files. I have not, as yet, attempted to | |
480 write any decryption routines, so you will not be able to convert | |
481 these files. However, if you create a new PST file and choose not to | |
482 make an encrypted one, you can copy all your emails into this new one | |
483 and then convert the unencrypted one. | |
484 | |
485 I hope you enjoy, | |
486 | |
487 Dave Smith | |
488 | |
489 : vim: set tw=72 sw=4 ts=4: |