Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations IamaSherpa on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Is there a way of tracking deletions of e-mails?

Status
Not open for further replies.
Nov 13, 1999
197
MT
Hi everyone!

One of our Notes users seems to be deleting e-mails on purpose and denying that he has deleted them by blaming Lotus Notes instead! Is there a way of tracking/logging what e-mails are being deleted and on what date?

Thanks
Pierre
 
There is, but you have to include code in the design template.

Do you have a Notes Design Client installed ? Have you ever done any LotusScript ?

Pascal.
 
Good.

You're going to need to put code in QueryDocumentDelete of the Database Script. What code to put is going to depend on how you want to deal with the issue.

You have two possibilities : leave the apparent functionality as is and trace deletions, or lock down the normal delete function and force users to use a Delete button that allows you to trace deletions more formally.

In one case, you'll be using stealth surveillance, in the other, you'll be coding a lot more.

Bear in mind that either solution is going to make upgrading the server a more complicated chore - especially if you go for the lock-down solution.

If you simply trace deletions, you will want to log some information in the mail db. You'll need the sender, the timestamp and probably the subject. You might want the full recipient list, or even more info - that's up to you to decide.
This information should be written in Record documents that the user cannot delete. You can also create a hidden Record view, so the user is not permanently reminded of the function.
Ideally, you'll want to purge the trace info every now and then, so that the user is not continually complaining that his mail db is getting too big. Or even better, move the Records to a central database where you can keep trace of them longer. You can even move the whole mail in that case (minus the attachments, obviously).

If you go for the blatant lock down, you'll have to modify just about every view, include a Delete button in every Form, and change the QueryDocumentDelete code as well.

Either way, upgrading the mail template will no longer be straightforward at all.

So, which solution has your preference ?

Pascal.
 
Dear Pascal

Many thanks for your post. Too complicated to implement. We might implement a tool called SecurTrac to help us monitor such activity.

Thanks for your help!
Pierre
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top