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, May 6, 2013

"Icon Bar Window" error coming in Lotus Notes 8.5.2..

 Error Message "Icon Bar Window" start appearing in the taskbar everytime when open Notes or close any window inside Notes
Resolution : Delete Bookmark.nsf from notes data directory ..

Tuesday, February 26, 2013

Document is in use by XXXX and has been locked

The Symantec AntiVirus/Filtering for Domino Settings database uses a document
locking mechanism to prevent multiple users from simultaneously modifying the same Settings document. This prevents Save Conflicts from occurring.  If a Lotus Notes client crashes or is not shut down properly while a Settings document is open, the Settings document may remain locked and the next attempt to open the Settings document may result in an error message being displayed.
To unlock the Settings document, do one of the following:
A . Shut down and restart the Symantec AntiVirus/Filtering for Domino server task:
  1. At the Domino server console, type the following command:
     TELL SAV QUIT This stops the Symantec AntiVirus/Filtering for Domino server task.
  2. At the Domino server console, after the Symantec AntiVirus/Filtering for
     Domino server task has stopped, type the following command:
     LOAD NTASK   This reloads the Symantec AntiVirus/Filtering for Domino server
     task and unlocks any locked documents in the Symantec AntiVirus/Filtering
     for Domino Settings database on the server.
B . Use the Unlock action button in the (Lockdocs) hidden view:
  1. Open the Symantec AntiVirus/Filtering for Domino Settings database.
  2. In the Settings document, press Ctrl and Shift, then on the View menu,
     click Go To.
  3. In the Go To dialog box, in the list, select (Lockdocs).
     This opens the hidden (Lockdocs) view. The locked document will
     have Locked displayed as its Status in the view.
  4. Select the locked document in the view, then click Unlock action.
     This unlocks the document, which lets you access it normally.

Tuesday, December 4, 2012

Tuesday, October 16, 2012

How to change logo image displayed by WorldClient (MDaemon)

WorldClient's branding (Logo) images now be easily customized In version 13x, MDaemon release a feature called WorldClient branding.  This can be configured within WebAdmin by logging in as a global Administrator, then clicking on "WorldClient Branding" option  from WebAdmin's "Main" menu then change the image as per your requirements .

Wednesday, September 26, 2012

Pop up message to users

Pop up message to user while trying to open server copy

Steps

 Open mail template in lotus designer and  follow the below steps..
Folder>>>($Inbox)>>>Postopen>>'Adding prompt..
Then script

' Last update : 24 September 2012
 ' Warning only to mbx owner
 Dim mysession As New notessession
 Dim myDb As NotesDatabase
 Dim MyMsg As String
 Dim mycalprof As NotesDocument
 Dim XUser As NotesName
 Dim XOwner As NotesName
 Set mydb = mysession.CurrentDatabase 
 ' Check only if user is owner
 '*****************************
 Set mycalprof = mydb.GetProfileDocument("calendarprofile")
 If  mycalprof Is Nothing Then

 End If
 If Not myCalProf.HasItem("Owner") Then
 End If
 Set XUser = New NotesName(mySession.UserName)
 Set XOwner = New NotesName(myCalProf.Owner(0))
 If Lcase(XUser.Abbreviated) = Lcase(XOwner.Abbreviated) Then
  If (mydb.Server<>"") Then
   MyMsg="You are opening your mailbox on the server. " & Chr$(13) & _
   "Please use the local replica of your mailbox for better performance. "
   Messagebox MyMsg,MB_ICONEXCLAMATION, "Warning"
  End If
 End If

Thursday, June 14, 2012

Blackberry Error


Below are the error happen while adding different domain user in BESserver
Inbox not found! (XXX /Domain)
PopulateFolderLIst failed because mail file could not be opened
UpdateFolderLIst failed because mail file could not be opened
Resolation 
Add BES server name in user DB ACL  and

Friday, May 25, 2012

Error: 'Your availability time range is invalid' when selecting Preferences in Mail file or Overflow

Create an agent and run on mail box .......

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