How to read Lotus Notes mail archives (* .nsf)

Does anyone know how to read these files without using interops or COM interop? Straight way. Is there any specification of this format or reverse engineering material that could help with this? Thanks.

+3
source share
3 answers

There is a Lotus API (which is in C). It provides access to everything that is in NSF - documents, design elements, security elements, etc.) http://www.ibm.com/developerworks/lotus/downloads/toolkits.html?S_TACT=105AGX13&S_CMP=LSDL

Read all of your options here: Is NSF file structure documentation available anywhere online?

+6
source

You can use the Notes C API or Notes C ++ APIs to read these files. But the corresponding DLL is distributed with the Notes client. The file format is called ODS.

+2
source

Source: https://habr.com/ru/post/1726045/


All Articles