Lotus Domino is an IBM server product that provides enterprise-grade e-mail, collaboration capabilities, and a custom application platform. Domino began life as Lotus Notes Server, the server component of Lotus Development Corporation's client-server messaging technology. It can be used as an application server for Lotus Notes applications and/or as a web server. It also has a built-in database system in the format of NSF. It's directory services can be used for authentication purposes as well

Thursday, August 29, 2013

Remove archive profile from mail file

Create a hotspot button with below script and run with user mail file



Sub Click(Source As Button)
 Dim s As New NotesSession
 Dim db As Notesdatabase
 Dim doc As NotesDocument
 Set db = s.CurrentDatabase
 Set doc = db.GetProfileDocument("archive database profile")
 If Not Doc.IsNewNote Then
  Print "Found Profile"
  Print "Set field"
  Call doc.RemoveItem("ArchiveDatabase")
  Call doc.Save( False, True )
 End If
End Sub