-
Notifications
You must be signed in to change notification settings - Fork 121
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Unrecognised PST File version: 36 #18
Comments
Hi, we're successfully using java-libpst at our company, thanks for the work.
Thanks very much! |
hey guys, If it's from outlook 2013 believe this should work, try changing https://github.com/rjohnsondev/java-libpst/blob/master/src/main/java/com/pff/PSTFile.java#L145 to allow 36 as a valid unicode PST format. |
Hi Richard, thanks a lot for the pointer - will try that. |
OK, that's not as easy as we hoped. It looks like MS changed the format of ost files with the 2013 version. ost was never a documented format, it just "happened to be" equivalent to pst. As far as I can see now, the fix won't be trivial. Richard, do you have any plans of spending time with this in the near future? I'll talk to my team, but very likely we won't have the resources to get the fix done. [1] http://technet.microsoft.com/en-us/library/cc179110%28v=office.15%29.aspx |
Boooooooo, but good to know. Sorry mate, I'm leading a dev team full time at the moment so time is hard to come by. |
Hey guys, I'm having trouble getting my hands on an example OST, would you be able to help me out? You can email me at pst at rjohnson.id.au Thanks, Richard |
Hi Richard, sorry to let you wait with an answer. Even with Outlook 2013 installed, it's not exactly trivial to get an ost file that doesn't contain all my company email. I'll see if I can create a dummy file tomorrow ... |
Hi Richard, Thanks On Jun 4, 2014, at 4:11 PM, Ulrich Reffle [email protected] wrote:
|
amazing! thanks!, most likely impossible to reverse engineer, but will have a quick look. |
Hey guys, I've managed to figure out some of the core changes that have been made to the format:
I've added a first-pass at support for these things to this branch: https://github.com/rjohnsondev/java-libpst/tree/feature/2013-ost-support Could you guys please try it out and let me know how it fares? There could be deeper implications of the change in B-Tree that I haven't thought of yet, so please scream if you find anything. Thanks, Richard |
Hi Richard, Stack Trace of the error Thanks |
Ugh, trying to get my hands on an OST to replicate, will take me some time to generate. If possible, could you populate the test one you sent me with a bunch of emails from something like the enron PST set? http://www.edrm.net/resources/data-sets/edrm-enron-email-data-set it would save me a bunch of time. I'm thinking it's possibly a change in the block size or similar, so would only present itself with bigger bunches of data. |
Hi Richard, We have hit the unrecognised pst file error now that we have moved most users to Office 2013. I have created an OST from the the first 3 pst files in the Enron dataset, trouble is it is 150MB zipped, assuming you still want this I can share or create a smaller one? Let me know if this woudl be useful kind regards, Dave |
Dave! that would be awesome, it's such a pain trying to get these to work with. It would also be handy if you could give the current branch a whirl as well and let me know if you come up against any obvious issues? https://github.com/rjohnsondev/java-libpst/tree/feature/2013-ost-support |
We will give the code a whirl later today or tomorrow and let you know how we get on. |
Hi Richard, We downloaded the latest code from the link. Using this we were able to parse pre 2013 files without any problem, so nothing has been broken as far as existing functionality is concerned. Unfortunately it still fails when we try to parse a 2013 OST file. It fails here: (line 147 in the source PSTFile.java) The value of fileTypeBytes[0] at that point is 36. I tried commenting the exception throw out - in other words ignore the result of the check, but this then simply causes other failures downstream.
So I have a test ost file for you which is 16MB zipped but don't know how to get it to you. Let me know what would be the easiest way. kind regards, Dave |
erm, perhaps a dropbox share? My user is [email protected] |
Hi Richard, You should have a dropbox messaged with a shared folder on its way to you. Let me know if there are any problems, Kind regards,
|
Hi All, I have managed to "research" and find all differences in Outlook 2013 (as far I tested it on over million of emails). I will be releasing technical note regarding the differences (maybe for free) soon. The major changes were made in followings: Heap-on-Node (HID) |
Hi All, I tried with java-libpst-0.8.1.jar to read emails from OST file generated from Outlook 2013. Please let me know whether that issue got resolved or not. I have an urgent requirement. Any help will be highly appreciated. Thanks |
Hey, Please try building the library from the 2013 support branch and see how https://github.com/rjohnsondev/java-libpst/tree/feature/2013-ost-support?files=1 Thanks, Richard
|
Hi Richard, Thank you very much for the prompt response. I prepared the library from the code and now I am able to read the .OST file,but after reading few emails it gave me below error: com.pff.PSTException: Unable to find 50331648 is desc: true Please help. Thanks, |
Seems like libpff has added info (and support) about the new OST format to the documentation back in 2013: |
hi guys! where you ended up with that? 0.8.1 still gives "com.pff.PSTException: Unrecognised PST File version: 36" and links you provided are all 404 :( |
Hi,
I am trying to read one of the OST files from outlook 2013, it fails with the exception
com.pff.PSTException: Unrecognised PST File version: 36
This works fine with the PST's from older version of outlook.
Is there a way or workaround to get this working.
Thanks
The text was updated successfully, but these errors were encountered: