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
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.
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
I think it would be helpful if you provided the rule you’re trying to use