Thanks for your response.
I just got off the phone with IBM this morning. They said that the archiving is not fixed until version 7. They did mention it was suppose to be fixed in 6.5.4, but many users reported back that they still had problems after upgrading.
IBM gave me a Lotus Script to fix the problem, but I will have to learn Lotus Script before attempting it. IBM did mention a manual fix of saving each folder again in Design mode, but if they have hundreds of folders, that will take too long.
Here is IBM's script:
------IBM explanation starts here--------
try this in a button, user should click this in his server copy and then archive a single document. The other workaround is to go under designer and re-save the folder, but this takes too long if they have too many. Let me know how it worked out..
Sub Initialize
Dim s As New notessession
Dim db As notesdatabase
Dim folder As notesview
Dim doc As notesdocument
Dim unid As String
Dim ignore_list List As Integer
ignore_list("($Inbox)") = 1
ignore_list("(Rules)") = 1
ignore_list("(Group Calendars)") = 1
ignore_list("($Trash)") = 1
ignore_list("($Alarms)") = 1
Set db=s.currentdatabase
Forall v In db.views
If v.IsFolder Then
If (IsElement(ignore_list(v.name)) = False) Then
'Optional: Un-Comment out the next line to check modDate while running
'Messagebox "View: " + v.Name + " LastMod: "+ Cstr(v.LastModified)
'Get a handle on folder as a NotesDocument using UNID
unid = v.universalID
Set doc = db.getdocumentbyUNID( unid )
doc.test=""
Call doc.save( False, False )
'Optional: Un-Comment out the next line to check modDate while running
'Messagebox "View: " + v.Name + " LastMod: "+ Cstr(v.LastModified)
End If
End If
End Forall
End Sub
Again, I have not tried this yet, so I have no idea if it works.