Axel Brinkmann 28.Jun.12 03:43 AM a Web browser Domino Server6.5.6Solaris
Hi all,
we have a server based scheduled agent which performs a loop across all local databases:
thissrv = ""
Dim dbdir As New NotesDbDirectory(thissrv)
Set tardb = dbdir.GetFirstDatabase(DATABASE)
While Not tardb Is Nothing
<perform some checks on the tardb>
Set tardb = dbdir.GetNextDatabase
Wend
This script works fine on all servers within our domain, only on one server it "fails": the databases within the mail-directory of the server will not be returned from the dbdir methods. The server log does not report any problems during the execution of the agent.
Any ideas ?