{"id":13706606,"url":"https://github.com/Dijji/XstReader","last_synced_at":"2025-05-05T20:32:24.900Z","repository":{"id":41337731,"uuid":"88154131","full_name":"Dijji/XstReader","owner":"Dijji","description":"Xst Reader is an open source viewer for Microsoft Outlook’s .ost and .pst files, written entirely in C#.   To download an executable of the current version, go to the releases tab.","archived":false,"fork":false,"pushed_at":"2023-09-11T12:29:24.000Z","size":1857,"stargazers_count":488,"open_issues_count":21,"forks_count":70,"subscribers_count":27,"default_branch":"master","last_synced_at":"2024-08-03T22:18:12.288Z","etag":null,"topics":["outlook","pstfileviewer"],"latest_commit_sha":null,"homepage":"","language":"C#","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"ms-pl","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/Dijji.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"license.md","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null}},"created_at":"2017-04-13T10:36:53.000Z","updated_at":"2024-07-31T02:26:44.000Z","dependencies_parsed_at":"2023-10-21T12:01:02.380Z","dependency_job_id":null,"html_url":"https://github.com/Dijji/XstReader","commit_stats":null,"previous_names":[],"tags_count":18,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Dijji%2FXstReader","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Dijji%2FXstReader/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Dijji%2FXstReader/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Dijji%2FXstReader/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Dijji","download_url":"https://codeload.github.com/Dijji/XstReader/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":224466127,"owners_count":17315932,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["outlook","pstfileviewer"],"created_at":"2024-08-02T22:01:01.975Z","updated_at":"2024-11-13T14:31:47.370Z","avatar_url":"https://github.com/Dijji.png","language":"C#","funding_links":[],"categories":["others","C# #"],"sub_categories":[],"readme":"# Xst Reader\nXst Reader is an open source viewer for Microsoft Outlook’s .ost and .pst files, written entirely in C#, requiring only .Net Framework 4, and with no dependency on any Microsoft Office components.\n\nIt presents as a simple, classic, three pane mail viewer:\n\n![](screenshot5.png)\n\nXst Reader goes beyond Outlook in that it will allow you to open .ost files, which are the caches created by Outlook to hold a local copy of a mailbox. Wanting to read an .ost file as the original motivation for this project: now it also as the ability to export the header and body of an email in its native format (plain text, HTML, or rich text), and inspect and export all the properties of an email.\n\nIt requires only .Net Framework 4, which is installed by default on Windows 8.1 and later, but will need to be installed on Windows 7 and earlier systems before Xst Reader can be run.  .Net Framework 4 can be downloaded from \u003chttps://www.microsoft.com/en-us/download/details.aspx?id=17851\u003e\n\nXst Reader is based on Microsoft’s documentation of the Outlook file formats in [MS-PST], first published in 2010 as part of the anti-trust settlement with the DOJ and the EU: \u003chttps://msdn.microsoft.com/en-us/library/ff385210(v=office.12).aspx\u003e\n\n## XstExport\n\nA command line tool for exporting emails, attachments or properties from an Outlook file.\n\nBy default, all folders in the Outlook file are exported into a directory structure that mirrors the Outlook folder structure. Options are available to specify the starting Outlook folder and to collapse all output into a single directory.\n\nThe differences from the export capabilities of the UI are: the ability to export from a subtree of Outlook folders; and the ability to export attachments only, without the body of the email.\n\nIn addition to XstExport, XstPortableExport is also provided, which is a portable version based on .Net Core 2.1 that can be run on Windows, Mac, Linux etc. \n\nBoth versions support the following options:\n\n   XstExport.exe {-e|-p|-a|-h} [-f=`\u003cOutlook folder\u003e`] [-o] [-s] [-t=`\u003ctarget directory\u003e`] `\u003cOutlook file name\u003e`\n\nWhere:\n\n   -e, --email  \n      Export in native body format (.html, .rtf, .txt)\n      with attachments in associated folder   \n   -- OR --   \n   -p, --properties  \n      Export properties only (in CSV file)   \n   -- OR --   \n   -a, --attachments  \n      Export attachments only\n      (Latest date wins in case of name conflict)  \n   -- OR --  \n   -h, --help  \n      Display this help\n\n   -f=`\u003cOutlook folder\u003e`, -folder=`\u003cOutlook folder\u003e`  \n      Folder within the Outlook file from which to export.\n      This may be a partial path, for example \"Week1\\Sent\"\n\n   -o, --only  \n      If set, do not export from subfolders of the nominated folder.\n\n   -s, --subfolders  \n      If set, Outlook subfolder structure is preserved.\n      Otherwise, all output goes to a single directory\n\n   -t=`\u003ctarget directory name\u003e`, --target=`\u003ctarget directory name\u003e`  \n      The directory to which output is written. This may be an\n      absolute path or one relative to the location of the Outlook file.\n      By default, output is written to a directory `\u003cOutlook file name\u003e.Export.\u003cCommand\u003e`\n      created in the same directory as the Outlook file\n\n   `\u003cOutlook file name\u003e`  \n      The full name of the .pst or .ost file from which to export\n\nTo run the portable version, open a command line and run:\n\ndotnet XstPortableExport.dll `\u003coptions as above\u003e`\n\n## Installation\n\nTo install a binary:\n1.\tChoose a release, then download the XstReader.zip file attached to it.\n2.\tExtract the contents of the zip file to a programs folder.\n3.\tRun XstReader.exe, and create shortcuts to it as required.\n\n## Notes for developers\n* The provided Visual Studio solution includes a XstReader.Base project, which contains all the basic common functionality for reading Outlook files used by XstReader and XstExport. The project builds a DLL, which you can use to add the same capability to your own projects. XstReader and XstExport do not themselves use the DLL, instead, they simply include the code from the XstReader.Base directory, in order to create executables with minimum dependencies.\n* The XstPortableExport project builds a portable version of XstExport based on .Net Core 2.1. However, in order to remain portable, two areas of functionality have to be #ifdef'd out in order not to create a framework dependency and so tie the program to Windows. These are support for RTF body formats, and support for MIME decryption.\n## Release History\n\n* 1.14\n    * Added command line tool for exporting email contents, attachments, or properties. Both Windows and cross-platform versions are provided.\n* 1.12\n    * Added support for viewing encrypted or signed messages and their attachments if matching certificate is in user certificate store. (Does not perform signature verification)\n* 1.8\n    * Allow searching within Cc and Bcc names\n    * Show email time as well as date in list of emails in folder\n    * Add an Info button in the bottom right-hand corner of the main window\n* 1.7\n    * Allow the contents of emails to be exported. Individual emails, multiple selected emails, or whole folders of emails may be exported. The results have the same format as the email, i.e. either HTML, Rich text format, or plain text.  \n* 1.6\n    * Allow searching through the listed message headers, looking for a given text\n* 1.4\n    * Can export message, contact et cetera properties to a CSV file \n* 1.2\n    * Show inline attachments in the HTML body \n* 1.1\n    * Add support for showing Recipient and Attachment properties\n* 1.0\n    * The first release\n\n## Meta\n\nDistributed under the MS-PL license. See [license](license.md) for more information.\n\n\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2FDijji%2FXstReader","html_url":"https://awesome.ecosyste.ms/projects/github.com%2FDijji%2FXstReader","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2FDijji%2FXstReader/lists"}