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