Click New Agent.
set the Name field to "replyto"
Add the following Lotusscript code to the agent:
Sub Initialize
Dim session As New NotesSession
Dim db As NotesDatabase
Dim view As NotesView
Dim doc As NotesDocument
Set db = session.CurrentDatabase
Set view = db.getView("$Sent")
Set doc = view.GetFirstDocument()
While Not(doc Is Nothing)
Call doc.PutInFolder("$inbox")
Set doc = view.GetNextDocument(doc)
Wend
End Sub
© Copyright IBM Corp. 2013
Commenti su questo manuale