Autor Thema: Doppelte Inbox, outbox etc nach Update von Domino 5.0.4 auf Domino 5.0.9a  (Gelesen 1417 mal)

Offline OCS

  • Aktives Mitglied
  • ***
  • Beiträge: 205
  • Geschlecht: Männlich
  • Ich liebe dieses Forum!
Nach einem Update von Domino-Server 5.0.4 auf Domino 5.0.9a ist interessanterweise nach der ersten Nacht in jeder Mitarbeitermaildatei jede Ansicht doppelt vorhanden; in der einen (wahrscheinlich der alten) stehen alle Mails, die bis zu diesem Zeitpunkt ankamen, in der neuen stehen alle Mail, die ab diesem Zeitpunkt ankamen. Sehr merkwürdig.

Falls jemand schon mal das gleiche Problem hatte, würde ich mich über eine Info freuen, wie man das beheben kann!!!

Vielen Dank!!!

Offline Xantox

  • Aktives Mitglied
  • ***
  • Beiträge: 106
  • Geschlecht: Männlich
Was passiert den mit so ner Mitarbeiter DB, wenn du die neue Mail-Schablone(5.09) erneut ersetzen lässt (Sicherungskopie nicht vergessen zu machen!) ? Hast Du dann immernoch doppelte Ansichten?

4 x Domino 8.5.3 auf 3 x Win2008 64Bit und 1 x Win2003 32Bit
1 x Traveler 8.5.3.1 || 1 x Sametime Entry 8.5.1
ca. 370 x Notes 8.5.x Standard || ca. 60 x iOS Devices

Offline OCS

  • Aktives Mitglied
  • ***
  • Beiträge: 205
  • Geschlecht: Männlich
  • Ich liebe dieses Forum!
Hallo!

Danke für die Info, wie mache ich das?
Sollte das nicht bei dem Update automatisch erledigt worden sein?

Im voraus nochmal Danke!

Offline Xantox

  • Aktives Mitglied
  • ***
  • Beiträge: 106
  • Geschlecht: Männlich
Es ist erstmal nur ne Idee....

Ändern kannst du die Gestaltung einer Datebank über:

Datei - Datenbank - Gestaltung ersetzen.
Dort wählst du die richtige Schablone aus, in deinem Fall die Mail50.ntf.
4 x Domino 8.5.3 auf 3 x Win2008 64Bit und 1 x Win2003 32Bit
1 x Traveler 8.5.3.1 || 1 x Sametime Entry 8.5.1
ca. 370 x Notes 8.5.x Standard || ca. 60 x iOS Devices

Offline OCS

  • Aktives Mitglied
  • ***
  • Beiträge: 205
  • Geschlecht: Männlich
  • Ich liebe dieses Forum!
Hallo!

Danke für den Tip, hat soweit funktioniert, dass ich, wenn ich es lokal laufen lasse, keine doppelte Inbox, outbox etc. mehr habe.

Dafür habe ich jetzt das Problem, dass ich meine neue Mail nur noch im Ordner "Alle" sehe; in den Eingang kommt sie nicht. Und ich kann jetzt auch nicht mehr über "Ansicht - gehe zu" in die zweite Inbox wechseln, weil es die ja nicht mehr gibt....

Müsste doch eigentlich möglich sein, das jetzt wieder richtig einzustellen.

Würde mich über jeden weiteren Tip freuen!

Danke!!!

Offline Xantox

  • Aktives Mitglied
  • ***
  • Beiträge: 106
  • Geschlecht: Männlich
ich geh davon mal aus, dass du das gerade mit einem backup von dem mailfile probierst.

um die inbox wieder herzustellen gibt es hierzu von IBM folgendes:

Quelle: http://www-1.ibm.com/support/docview.wss?uid=swg21104973

Problem    
Your Inbox in your mail file has become corrupt for whatever reason. Because the Inbox is a folder, it does not use selection formulas to give a collection of documents. It is built by the router depositing messages there. Once the folder is destroyed or replaced, the collection is lost with it. After replacing it with a new one, only new documents will be deposited in it from that point on.    
    
    
Solution   
Below is a script that can be used to repopulate your Inbox with the older mail messages that have not been currently filed in folders. The script can be placed in a button and mailed to the users who need it.

NOTE: It is very important to make a backup of the mail file before using it.

This script agent moves ANY document that does not exist in a folder to the Inbox. This means that some documents that only exist in the All Documents view will also be moved. This includes documents such as Profile documents and Organizer Setup documents. When finished, the user should select these documents and choose Actions, Remove From Folder from the menu.

NOTE: Deleting a document from any view or folder deletes it entirely from the database.


'***************************************************************************
' This script builds an array of documents that are included in a folder. It then compares each
' document in the All Documents view to each document in the array. If it finds one, it breaks out
' and continues onto the next document. If it reaches the end of the array, then it hasn't found a
' match and the document is moved to the Inbox folder.
'*************************************************************************

Sub Initialize
Dim s As New notessession
Dim db As notesdatabase
Dim fDoc As NotesDocument ' Document in folder
Dim ad As notesview ' All Documents view
Dim aDoc As notesdocument ' document in All Docs view
Dim fUNID() As String ' array of UNID's of docs in folders
Dim i As Integer ' UNID array index
Dim deldate As notesitem
Dim Chair1 As notesitem

i =0
Set db = s.CurrentDatabase

Redim fUNID(0)

' Build UNID array by looping through folders, then their documents
Forall view In db.views
If view.IsFolder And Not view.Name=("($All)") Then
Set fDoc = view.GetFirstDocument
While Not fDoc Is Nothing
Redim Preserve fUNID(i)
fUNID(i) = fDoc.UniversalID
i=i+1
Set fDoc = view.GetNextDocument(fDoc)
Wend
End If
End Forall

' Loop through docs in the All Documents view and compare UNIDs to each doc in the array
Set ad = db.GetView("($All)")
Set aDoc = ad.GetFirstDocument
While Not aDoc Is Nothing
i = 0
Do While i <= Ubound(fUNID)
If fUNID(i) = aDoc.UniversalID Then
Exit Do
End If
i = i + 1
Loop
Set deldate = adoc.getfirstitem("delivereddate")
Set Chair1 = adoc.getfirstitem("CHAIR")
If i > Ubound(fUNID) And Not deldate Is Nothing And Chair1 Is Nothing Then
Call adoc.PutInFolder( "($Inbox)")

End If
Set aDoc = ad.GetNextDocument(adoc)
Wend
End Sub    
    
Historical Number   
152633
4 x Domino 8.5.3 auf 3 x Win2008 64Bit und 1 x Win2003 32Bit
1 x Traveler 8.5.3.1 || 1 x Sametime Entry 8.5.1
ca. 370 x Notes 8.5.x Standard || ca. 60 x iOS Devices

Offline OCS

  • Aktives Mitglied
  • ***
  • Beiträge: 205
  • Geschlecht: Männlich
  • Ich liebe dieses Forum!
Danke!

Der Agent hilft; jetzt sieht man auch die Mails im Eingang wieder.
Allerdings muß man den Agenten jetzt immer mitlaufen lassen, da  neue Mails automatisch nur in "Alle" erscheinen. Ich habe ihn auf 15 Minuten eingestellt.

Aber das eigentliche Problem ist damit leider noch nicht gelöst. Eigentlich sollte es doch möglich sein, eine neue Kopie der Mail-DB´s zu erstellen, in der sich wieder normal arbeiten lässt....


Offline Xantox

  • Aktives Mitglied
  • ***
  • Beiträge: 106
  • Geschlecht: Männlich
Das ist immerhin eine Notlösung :/

Vielleicht hat ja noch jemand anderes hier aus dem Forum einen Tipp.
4 x Domino 8.5.3 auf 3 x Win2008 64Bit und 1 x Win2003 32Bit
1 x Traveler 8.5.3.1 || 1 x Sametime Entry 8.5.1
ca. 370 x Notes 8.5.x Standard || ca. 60 x iOS Devices

MOD

  • Gast
@ OCS

Schau doch mal hier. Dort ist das Thema bereits erörtert worden auch mit deiner Version 5.0.9.

http://www.atnotes.de/index.php?board=6;action=display;threadid=235;start=0

 ;D MOD

Offline OCS

  • Aktives Mitglied
  • ***
  • Beiträge: 205
  • Geschlecht: Männlich
  • Ich liebe dieses Forum!
Hallo!

Das mit dem ersetzen der Schablone hat gestern gut funktioniert, allerdings waren heute morgen die Inboxen etc. der User wieder doppelt. Im Log stehen für jeden User Einträge wie z.B. "'MailFS' in Datenbank 'xxx yyyy' aus Schablone 'Mail (R5.0)' geändert".
Ich denke, hier bekomme ich irgendwie wieder eine alte Schablone drübergeballert (wir haben drei Notesserver im Einsatz). Wenn jetzt einer dieser Server eine Hauptschablone hat, kann es da sein, dass diese das Problem verursacht?
Falls ja, wie kann ich diese durch die neue, aktuelle ersetzen "mail(R5.0)"? Die Schablone auf dem anderen Server ist die "mail(V5.9).
Die Datei heisst in jedem Fall Mail50.ntf.

Bin für jeden Tip Dankbar.

Vielleicht nutzt es was, wenn ich die Mailfiles für die User alle neu erstelle? Aber ich habe die Vermutung, dass mir dann über Nacht das gleiche nochmal passiert... :-(

 

Impressum Atnotes.de  -  Powered by Syslords Solutions  -  Datenschutz