Hello,
I would like to know where is stored the choices made through Domino Web Access (see only “unread documents” or welcome page settings) ? Since a 6.5.2 Fixpack 1 applied on our server, some menu disappeared from Domino Web Access whereas the Forms6.nsf database has not changed…
People who stored the preferences “see only unread documents” are stuck in this situation.
Do we have a way to modify this choice ? Where ?
Thanks in advance.
Subject: Solution
Hello,
I found how to do this.
I ran an agent on user mail box to grab profile documents.
Check the field MailViewOptions in the profile called “inotesviewprofile”. It holds “U” for unread only and is empty otherwise.
Code for the agent :
Sub Initialize
Dim session As New NotesSession
Dim db As NotesDatabase
Dim dc As NotesDocumentCollection
Dim doc As NotesDocument
Set db = session.CurrentDatabase
Set dc = db.GetProfileDocCollection()
Set doc = dc.GetFirstDocument
While Not(doc Is Nothing)
If (doc.IsProfile) Then
If(Left$(Lcase$(Trim$(doc.Nameofprofile)),6)= "inotes") Then
Print "inotes profile"
End If
End If
Set doc = dc.GetNextDocument(doc)
Wend
End Sub