Ask Lemmy
A Fediverse community for open-ended, thought provoking questions
Rules: (interactive)
1) Be nice and; have fun
Doxxing, trolling, sealioning, racism, and toxicity are not welcomed in AskLemmy. Remember what your mother said: if you can't say something nice, don't say anything at all. In addition, the site-wide Lemmy.world terms of service also apply here. Please familiarize yourself with them
2) All posts must end with a '?'
This is sort of like Jeopardy. Please phrase all post titles in the form of a proper question ending with ?
3) No spam
Please do not flood the community with nonsense. Actual suspected spammers will be banned on site. No astroturfing.
4) NSFW is okay, within reason
Just remember to tag posts with either a content warning or a [NSFW] tag. Overtly sexual posts are not allowed, please direct them to either [email protected] or [email protected].
NSFW comments should be restricted to posts tagged [NSFW].
5) This is not a support community.
It is not a place for 'how do I?', type questions.
If you have any questions regarding the site itself or would like to report a community, please direct them to Lemmy.world Support or email [email protected]. For other questions check our partnered communities list, or use the search function.
6) No US Politics.
Please don't post about current US Politics. If you need to do this, try [email protected] or [email protected]
Reminder: The terms of service apply here too.
Partnered Communities:
Logo design credit goes to: tubbadu
view the rest of the comments
I've used libpst to be this in the past. On Debian it's packaged as
pst-utils
. Thereadpst
util will convert your PST to a variety of formats including MBOX.Hmm, okay, that sounds good. This is a Python? So I just need to install Python and then download libpst?
For context, I have a CS degree (1985) and was a software engineer for many years, but I went up a management ladder like 20 years ago, and about the only programming I've done since has been office VBA. I'm retired now. I've never used Python or git personally, though I managed people who did. So a couple pointers to get me on the right track would be appreciated.
It might already be packaged for whichever OS you're running, and it comes with a utility to do the conversion. On Debian or Ubuntu it should be as simple as installing the
pst-utils
package and running something likereadpst <path to .pst file>
and it'll leave an mbox file for you. It's been a fair few years since I used it, so reading the documentation would probably be wise, but I remember it being pretty straightforward.I don't have a Redhat machine handy right now, but it looks like the package is called
libpst
there. On a Mac you'd need to follow the build instructions in the git repository, but it's not python, the main library and utils are written in C. The tarball they refer to it just a tar of the source, that you can download form the releases page. I can't help you if your running windows, I don't have a machine running it, and haven't used it in many years.Okay, thank you. I am, in fact, running Windows. I appreciate the info.