To keep manual deletions add this bit of script to the QueryDocumentDelete and create a mail in database and record called "Deleted Entries." This will then mail any deletions that are made in the NAB. This does not work for deletions made via ADMINP but it works for every other type of deletion.
Sub Querydocumentdelete(Source As Notesuidatabase, Continue As Variant)
	Dim collection As NotesDocumentCollection
	Dim note As NotesDocument
	Dim recipents As String
	
	Set collection = source.documents
	Set note=collection.getfirstdocument
	recipents = "Deleted Entries"
	While Not note Is Nothing
		Call note.Send(False, recipents)
		Set note=collection.getnextdocument(note)
	Wend
End Sub

This was first published in January 2002

Disclaimer: Our Tips Exchange is a forum for you to share technical advice and expertise with your peers and to learn from other enterprise IT professionals. TechTarget provides the infrastructure to facilitate this sharing of information. However, we cannot guarantee the accuracy or validity of the material submitted. You agree that your use of the Ask The Expert services and your reliance on any questions, answers, information or other materials received through this Web site is at your own risk.