20 pts.
 Lotus Notes Rules not working
Hi, I am using Lotus Notes 8.5.1 in our office. Daily we use to get so many mails from one group so, i created rule that what ever mail i am getting from that group should move to another folder. But its not working. I am new to Lotus Notes so can anybody help me regarding this.

Software/Hardware used:
IBM Lotus Notes 8.5.1
ASKED: September 4, 2012  5:36 AM

Answer Wiki:
Last Wiki Answer Submitted:  Be the first to answer this question.
All Answer Wiki Contributors:  Be the first to answer this question.
To see all answers submitted to the Answer Wiki: View Answer History.


Discuss This Question:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _


 

This can be several causes -Calendar Profile -Create a Button and add the following codeSub Click(Source As Button)    Dim session As New NotesSession    Dim db As NotesDatabase    Set db = session.CurrentDatabase    Set profile=db.GetProfileDocument(“Calendarprofile”)    Call profile.remove(True)End Sub This will clear out your profiles in the DB that is causing an issue. Note this will wipe out all rules.

 10,635 pts.

 

Sub Click(Source As Button)    Dim session As New NotesSession    Dim db
As NotesDatabase    Set db = session.CurrentDatabase    Set
profile=db.GetProfileDocument(“Calendarprofile”)    Call
profile.remove(True)End Sub

 10,635 pts.

 

I think it would be helpful if you provided the rule you’re trying to use

 2,725 pts.