
GFeatherstone |
Henry, are you sure it’s the inbox you’re having a problem with? We only run into this problem when filing mail from the SENT folder. Notes will not move mail from that folder. After you’ve file something from the sent folder, you must try to delete it from the sent folder. Notes will then ask if you want to REMOVE or DELETE it. You pick remove, and it removes it from the sent folder view.

madkahuna |
As to your question about finding out which folders an e-mail has been moved to check out this thread on LDD
Notes/Domino 6 Forum : RE: Which folder a document is in after searching All Documents
<a href="http://www-10.lotus.com/ldd/nd6forum.nsf/55c38d716d632d9b8525689b005ba1c0/2975676b020eb32d85256d7c007cb1f2?OpenDocument" rel="nofollow">http://www-10.lotus.com/ldd/nd6forum.nsf/55c38d716d632d9b8525689b005ba1c0/2975676b020eb32d85256d7c007cb1f2?OpenDocument</a>
This is a LotusSctipt code from the desinger help that a couple of people have discussed. What they are talking about does impact performance if you want this tracking enabed.
IF this will not work for you then you would have to look at either a C or C++ API app. There is a program that ships with ND6 called swift file that if installed will give you three options for filing a document into a folder within your mail file based on how you have moved the document based on the senders name, subject line as a criteria.
Hope this helps

BruceWayne |
For your first question about to find where a document is filed, you could create a button in your form and paste the LotusScript (V5) code below…
And sorry for your second question, no idea yet !
Dim session As New NotesSession
Dim ws As New notesuiworkspace
Dim db As NotesDatabase
Dim view As NotesView
Dim doc As NotesDocument
Dim Child As NotesDocument
Dim grandChild As NotesDocument
Set db = session.CurrentDatabase
Set uidoc=ws.currentdocument
sListe = “”
Forall vueoudossier In db.Views
If vueoudossier.IsFolder Then
Set view = db.GetView( vueoudossier.Name )
Set doc = view.GetFirstDocument
While Not(doc Is Nothing)
If doc.YOURFIELDSUBJECT(0) = uidoc.FieldGetText( “YOURFIELDSUBJECT” ) Then
sListe = sListe + “DOSSIER : ” + vueoudossier.Name + Chr(10)
End If
Set doc = view.GetNextDocument(doc)
Wend
End If
End Forall
If sliste “” Then
Messagebox “This document is filed in : “+ Chr(10) + Chr(10) + sListe , 64, “Use control”
Else
Messagebox “This document is not filed”, 64, “Use control”
End If

HenryKafeman |
Thanks for the replies to date.
Yes, I do have Send and Receive ticked for both Replicas.
Yes, my problem is with the Inbox.
Any further thoughts on the Replication?
I have not yet had a chance to try out the suggestions about Folders.