Questions tagged [pst]

File format used by Microsoft Outlook to store data locally.

Personal Storage Table (pst) is a file format used by Microsoft Outlook to store data locally. This includes emails, calendar events etc.

196 questions
76
votes
13 answers

Can I read an Outlook (2003/2007) PST file in C#?

Is it possible to read a .PST file using C#? I would like to do this as a standalone application, not as an Outlook addin (if that is possible). If have seen other SO questions similar to this mention MailNavigator but I am looking to do this…
Andy May
  • 4,030
  • 5
  • 34
  • 33
33
votes
2 answers

Python - Setting a datetime in a specific timezone (without UTC conversions)

Just to be clear, this is python 2.6, I am using pytz. This is for an application that only deals with US timezones, I need to be able to anchor a date (today), and get a unix timestamp (epoch time) for 8pm and 11pm in PST only. This is driving me…
liam
  • 3,830
  • 6
  • 32
  • 31
21
votes
2 answers

Outlook PST File Parsing in Python

How can I parse and read an outlook pst file in Python?
demos
  • 2,630
  • 11
  • 35
  • 51
20
votes
3 answers

How to close a PST file in Java?

I am using java-libpst.0.7.jar for reading PST messages. I am using the following code to open the PST file to read messages. PSTFile pstFile = new PSTFile("Path of the pst file"); I have to close the PST file once after getting the message…
murali Karthick
  • 203
  • 1
  • 5
11
votes
2 answers

Common large PST files to test big data

I need a large corpus of PST files (may in GB or TB's) with more mails to test my big data application. I found only Enron data set. Is any other common PST file available to test ? Share me PST download links.
SANN3
  • 9,459
  • 6
  • 61
  • 97
8
votes
3 answers

Create an email object in java and save it to file

i need to backup the emails contained in a PST file (outlook storage). i'm using libpst which is the only free library i found on the web ( http://code.google.com/p/java-libpst/ ) so i can access all the information in each single email (subject,…
Pronte
  • 256
  • 1
  • 3
  • 8
6
votes
1 answer

How to parse / read Outlook PST-Files with Python?

Searching the Internet for accessing Outlook PST-Files with Python gives very little results (and most of the stuff shown is outdated). Does anyone know how to read a PST with or without a library? Unfortunately I am not good enough in programming…
Ulrich
  • 249
  • 4
  • 10
5
votes
2 answers

Convert GMT to IST (India Standard Time) using javascript?

I have a date format is GMT or UTC. var mydate = '2020-01-14T17:43:37.000Z' I want to convert this date in IST format so according to this date the output I need in this format. var date = '2020-Jan-15 12:45'
Shubham Seth
  • 77
  • 1
  • 1
  • 5
5
votes
3 answers

Extracting PST file containing mail as an attachment of PSTMessage

I'm trying to extract PST files using java-libpst-0.8.1 , following https://code.google.com/p/java-libpst/ In my sample pst file, there are several mails. In one of the mail of that pst file, the attachment is also a mail. While parsing that…
buddy86
  • 1,434
  • 12
  • 20
5
votes
2 answers

read contents of .pst file with php

Is it possible to somehow use PHP to read the contents of a .pst file?
David
  • 51
  • 1
  • 2
5
votes
2 answers

How to find full path of Outlook .pst file?

Is there a way to programmatically find the location of the current user's Outlook .pst file(s) through an API call or registry entry?
Vic
  • 935
  • 2
  • 14
  • 21
4
votes
1 answer

Extract text from a .PST file

I am trying to extract the content (as a string/text) of a .pst file. I tried different answers but I did not find any relevant solution. Outlook PST File Parsing in Python Read PST files from win32 or pypff Export PST and OST with pypff / libpff I…
Magofoco
  • 5,098
  • 6
  • 35
  • 77
4
votes
1 answer

Export PST and OST with pypff / libpff

I need to do in python a module to export PST and OST files and I am trying to use pypff to do so. Can someone give me some tips how can I use pypff to extract messages and attachments.
Diamantino S
  • 73
  • 1
  • 1
  • 7
4
votes
0 answers

how do I open outlook pst and loop emails using python

I want to open pst file and iterate through emails to access message body using python. any examples the work please. Thanks
Alaa
  • 41
  • 1
  • 3
3
votes
1 answer

Not able to display email items after moving them from one pst to another

I am trying to move email from one pst to another. Sample code from here. The important part of the code, which moves the message: If objVariant.Class = olMail Or objVariant.Class = olMeetingRequest Then ' This is optional, but it helps me…
Shabbir
  • 441
  • 2
  • 7
  • 17
1
2 3
13 14