Greetings,
I have a NSF with some encrypted mail messages. Specifically only the body is encrypted.
Please inform if I can decrypt this in some way??
Thanks in advance.
Greetings,
I have a NSF with some encrypted mail messages. Specifically only the body is encrypted.
Please inform if I can decrypt this in some way??
Thanks in advance.
Subject: Encryption in Lotus Notes
Try this.I use it in my mail file… It’s set to go through a specially created view (“encrypt”)and remove encryption… Modify to run against a single doc.
Dim s As New notessession
Set w = New NotesUIWorkspace
Dim db As notesdatabase
Dim v As NotesView
Dim doc As notesdocument
Set db = s.CurrentDatabase
Set v = db.GetView("encrypt")
Set doc = v.GetFirstDocument
Call doc.RemoveItem("$Seal")
Call doc.RemoveItem("$SealData")
Call doc.RemoveItem("Encrypt")
Call doc.Save(True,False)
Subject: RE: Encryption in Lotus Notes
As that will delete the $SEAL items that hold the contents of the encrypted body, it will in indeed REMOVE the encryption, but it won’t DECRYPT the data, which I suspect the OP requires.
Subject: You’ll need to use the ID file of one of the recipients of the message.
Subject: RE: You’ll need to use the ID file of one of the recipients of the message.
Thank you very much for all the help.
I shall try this out n let u guys know.
All the help is much appreciated.