1

I have a clustered environment of two domino servers. What I find is that in the active server of the cluster the mail "Inbox" is empty. But then the views-> "All Documents"/"All Emails" shows that documents are there. And added to that we see that in the the non-active server in the cluster, the inbox is not empty. So basically can the inbox get corrupted in some situations?. If so how to repair the inbox?.

Thanks in advance.

Nitin
  • 11
  • 2

2 Answers2

1

And added to that we see that in the the non-active server in the cluster, the inbox is not empty.

Basically, that sounds like replication isn't working between your two Domino servers. Sure, the Notes Inbox view can get corrupted (as can any view or database), and there are tools and commands to repair corrupt databases, such as fixup and updall, but it doesn't sound like that will help here.

Fix your Domino server cluster replication first, then fixup your database, if needed. You might want to start by forcing replication between your cluster members, and then move on to more involved troubleshooting tools and techniques. The log.nsf file is your friend here - look through it to determine why that view or database is out of sync between the two replicas, and correct the issue.

HopelessN00b
  • 53,795
  • 33
  • 135
  • 209
0

This most probably is not a replication issue. Either the index of your inbox on one server is corrupt, or you have two folders named inbox in that database, and one server shows the "right" one, and the other the "wrong" one. You can rebuild the index of inbox using updall with -R (rebuild) and -T (define view) options:

lo updall mail\db.nsf -R -T ($Inbox)

Or you check with Designer Client for existance of a second Inbox and delete one of them (take care to get the right one: first rename one and then move the documents to the one left over)

Tode
  • 1,013
  • 9
  • 13