How deactivate a rule eliminated in database of mail?

A user delete mail rule active, but not the disable

How deactivate a rule eliminated in database of mail?

The does create also mail rule and not disable

Subject: How deactivate a rule eliminated in database of mail?

You need to delete the mailfiles Calendar Profile document. Write down all the mailfiles preferences before you delete this document.

I created an Agent with this code:

Set session = New NotesSession

Set db = session.currentdatabase

Set doc =db.GetProfileDocument(“CalendarProfile”)

If doc Is Nothing Then

Msgbox “No Calendar Profile…Closing the agent”

Else

doc.remove(True)

Msgbox “Calendar Profile Removed”

End If

Enjoy,

Chad…