This agent is a continuation of an Agent tip that Removed User ID's from Domino Directory. This agent will add those detached ID files to the ID Recovery Database to allow you to centralize your backup id's.

The original tip to Remove User Id's from Domino Directory is at
searchdomino.techtarget.com/Tips/searchDomino_Tips_Single_Listing_Page/1,285240,512625,00.html


Sub Initialize
	Dim session As New NotesSession
	Dim db As NotesDatabase
	Set db = session.CurrentDatabase
	Dim doc As NotesDocument	
	Dim rtitem As NotesRichTextItem
	Dim object As NotesEmbeddedObject
	Dim pathName As String, fileName As String
	Dim filePath As String	
	pathName$ = "d:idfiles*.*"  ' designate where you detached ids in first agent
	fileName$ = Dir$(pathName$, 0)
	filePath$ = "d:idfiles" + fileName$
	Do While fileName$ <> ""
		Set doc =db.Createdocument()
		Print filename$
		Set rtitem = New NotesRichTextItem( doc, "Body" ) 'attach the id files
		Set object = rtitem.EmbedObject _
		( EMBED_ATTACHMENT, "", filepath)
		doc.Subject = "Backup of ID file for " + filename$ 'fill out subject field
		doc.from ="CN=Sean Mahoney/O=NCB"
		fileName$ = Dir$()
		Call doc.Save( True, True )
	Loop
	
End Sub

This was first published in February 2001

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.