Servus Tatiana,
hab ich in der Knowledge Base gefunden -->
The following Script will copy down a good Archive Profile from the template and place it in the mail file. This will resolve the Archive settings problem.
Sub Initialize
Dim session As New NotesSession
Dim templateDb As New NotesDatabase("","")
Dim mailDb As NotesDatabase
Dim archiveDoc as NotesDocument
Set mailDb = session.CurrentDatabase
Call templateDb.open("Server/Domain, "mail50.ntf") '<--- Change this to the correct template name
Set archiveDoc=templateDb.getProfileDocument("Archive Profile")
Call archivedoc.CopyToDatabase( mailDb )
End Sub
Dieses Problem ist lt. KB bei einem User mit R5.0.7 aufgetreten, es gibt bis auf den Script keinen Fix dafür.
Grüsse aus Ffm nach WI
Meff