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

Monday, July 20, 2015

Friday, March 13, 2015

How to create new local replica


Sub Click(Source As Button)
Dim session As New NotesSession
Dim db As NotesDatabase
Dim workspace As New NotesUIWorkspace
Dim replica As NotesDatabase
Set db = session.CurrentDatabase
askme = workspace.Prompt (PROMPT_YESNO,"Replication", "This will create a new replica of your mail file. Do you want to continue?")
If askme = 1 Then
dbname = db.FileName
 dbname ="mail\"+dbname
Set replica = db.CreateReplica("", dbname )
Call workspace.OpenDatabase("",dbname)
 End If
End Sub

Wednesday, January 8, 2014

How to find out IBM Domino Server license types ???

GO to start>>>>Run>>>type regedit>>>[HKEY_LOCAL_MACHINE\SOFTWARE\Lotus\Domino] You will find Setup Type>>>EnterpriseServer or whatever installed :)

Thursday, November 21, 2013

Mail quota information button

ction Button: @Command([ToolsRunMacro] ; "(database properties)" ) Agent: Agent Title: (database properties) Agent Type: Shared, Hidden Sub Initialize Dim session As New NotesSession Dim db As NotesDatabase Dim server As String Dim Size As Long Dim Quota As Double Set db = session.CurrentDatabase server=db.Server If server="" Then server="Local" End If size=db.Size/1056000 quota=db.SizeQuota/1024 Messagebox "Database Information:" &Chr(10)_ &Chr(10)_ & "Database Title: " & db.Title & Chr(10) _ & "Resides on Server: " & server & Chr(10) _ & "Full File Path name: " & db.FilePath & Chr(10) _ &Chr(10)_ & "Database Size Information:" & Chr(10) _ &Chr(10)_ & "Size (Mb): " & size & Chr(10) _ & "Quota: (Mb): " & quota & Chr(10) _ & "Percent used: " & db.PercentUsed & Chr(10) _ &Chr(10)_ & "Database Design Information:" & Chr(10) _ &Chr(10)_ & "Inherits from Template: " & db.DesignTemplateName & Chr(10)_ & "Database is the Template: " & db.TemplateName & Chr(10)_ & "Replica ID: " & db.ReplicaID,MB_OK+MB_ICONINFORMATION,"Database Property Synopsis" If quota <> 0 Then If size > quota Then Messagebox "You are Currently Over your quota" ,MB_OK+MB_ICONINFORMATION,"What this Agent Does" End If End If End Sub

Tuesday, November 12, 2013

Error: The Administration Process is waiting for new mail fields in Person document

Problem
The following error occurs in the Domino server's LOG.NSF database for a particular person after moving their mail file using the Administration Process (AdminP):
Errors: Waiting for new mail fields
Resolving the problem Pull down the names.nsf from hubserver then use tel adminp process new

Thursday, October 24, 2013

When creating a new memo in a Lotus Notes client, is there a way to enable by default the "Do not expand personal groups" option in the Delivery Options?

To enable the "Do not expand personal groups" option by default, add the following parameter to the notes.ini file (c:\Notes directory) and restart the Notes client:

$CollapsePersonalGroups=0

How to convert Note 8.x Standard to Basic

1.To launch Notes 8 (Basic Configuration), create a shortcut on your desktop to point to nlnotes.exe in the Notes program directory.Or, simply launch nlnotes.exe.

2.you can create a shortcut which executes notes.exe within the Notes program directory and add one of two command line switches, -sa or -basic. For example: C:\Program Files\Lotus\Notes\notes.exe -sa.

Parameter in notes.ini that can be used to control launching

Adding UseBasicNotes=1 to open Notes Basic

Adding UseBasicNotes=0, to open Standard client