Nipun Khanna
Nipun Khanna

Reputation: 11

Want python3x to read .nsf lotus notes files and extract emails containing specific words

I have email database saved in .nsf extension. Now I want python code to read all emails and extract mails which contains specific words(eg Throw, important etc.).

And can python code also save extracted emails in specific folders based on the words searched.

Upvotes: 1

Views: 2223

Answers (1)

Richard Schwartz
Richard Schwartz

Reputation: 14628

Python can do this. It's a lot easier if you're running Python on Windows because you can use the Notes COM API - but you will have to have Notes code installed and configured properly on the Windows machine where your Python code is running. If you're not running on Windows or you can't get Notes installed on the machine, then you may be able to use the Domino Access Services REST API, but Domino server will have to be configured to allow that.

Upvotes: 2

Related Questions