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