Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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

Does anyone know how to read these files without using the interops or COM interaction? Just the direct way. Is there any spec of this format or reverse engineered stuff that could help on this? Thanks.

like image 876
oldUser Avatar asked Sep 06 '25 03:09

oldUser


2 Answers

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

Read all you choices here: Is the NSF file structure documentation available anywhere online?

like image 56
Captain Comic Avatar answered Sep 07 '25 15:09

Captain Comic


You can use Notes C API or Notes C++ API interfaces to read that files. But corresponding DLL's distributed with Notes client. File format is named ODS.

like image 35
AlexLocust Avatar answered Sep 07 '25 15:09

AlexLocust