Hi,
dann muss ein Script-Agent her. Ich versuchs mal "frei Hand".
Dim session As New NotesSession
Dim db As NotesDatabase
Dim collection As NotesDocumentCollection
Dim doc As NotesDocument
Dim newdoc As NotesDocument
Set db = session.CurrentDatabase
Set collection = db.UnprocessedDocuments
Set doc = collection.GetFirstDocument
While Not (doc Is Nothing)
'Neues Dokument anlegen
Set newdoc = New NotesDocument(db)
newdoc.Form = "AntwortName"
'Neues Dokument als Antwort
Call newdoc.MakeResponse(doc)
Call newdoc.Save(True, False)
Set doc = collection.GetNextDocument(doc)
Wend
Der Agent muss auch wieder für ausgewählte Dokumente gelten.
Ich hoffe ich hab nix vergessen.
Axel