pythonpython-3.xparsingoutlookpst

Parsing the pst file for the owner


I am analyzing a Microsoft Outlook PST file using python 3 and I need to find out who owns this mailbox. The name of the owner and the name of his mailbox are enough for me. Please tell me, is it possible to find out using python 3?


Solution

  • There is no specific property or marker which could help identifying the owner. PST is just a storage, it doesn't belong to anybody. For example, it may keep forwarded items and be used like an archive. So, trying to find the answer on checking its items, like Dmitry mentioned, may lead to incorrect results.