Find Parent folder of an email using java

Hi,

Is there any way to find the parent folder of an email using java(Either DIIOP or REST) from Lotus Notes email application? I have unid of the email to find the parent folder.

Enabling folder references is not an option for me, because I will accessing Domino Server running for years.

Iterating through each folder contents to validate if the document is present in that folder will result in performance impact on my application.

Thanks in advance.

Subject: Those are the two methods.

Enabling folder references will build an index on the server

Failing that, you can do it non-indexed, and take the performance hit.

Seaching for the parent folder involves one or the other.

You could pull a database down to a local client or replicate it to another server and index folder references there. Again, this has distinct performance hits until the index is completed.

& Of course you could also put the doc in a folder if you like … then it’ll appear in that folder. But that’s probably not what you’re trying to do.