MySphere Posts

From TN1320503:

WebSphere Portal version 6.1.0.1 supports installing and running on WebSphere Application Server version 7.0, but does not fully exploit its capabilities when compared to Application Server version 6.1.

No previous releases of WebSphere Portal will support Application Server V7.0, including version 6.1.0.0, even when upgraded to version 6.1.0.1 by applying a fix pack. The refreshed installation images for version 6.1.0.1 must be used to install against an existing Application Server version 7.0. There is no media or included license for Application Server version 7.0 provided in any WebSphere Portal version 6.1.0.1 packaging, edition, or e-Assembly.

Application Server version 7.0 licensing, installation media or images must be obtained separately.

Uncategorized

This is a good guide to follow when you want install sametime on linux.

http://www-10.lotus.com/ldd/stwiki.nsf/dx/Installation_of_Lotus_Sametime_8.0.2.1_on_SUSE_Linux_Enterprise_Server_10

Uncategorized

From TN1381280

After DAOS has been enabled on a Domino server, if the virus scanner has not been configured properly to avoid .NLO files, “File is in use” errors may occur.

The virus scanner should be configured to prevent processing the. NLO files in the DAOS repository.  This can be accomplished either by specifying that the scanner skip files with an .NLO suffix, or by specifying that the DAOS base directory (and all subdirectories) should be skipped by the scans.

Instead of scanning the .NLO files directly, the attachments should be scanned via the Domino server by an application, such as an add-in program, that works through the Domino API.

Uncategorized

Last week I had a meeting with security personnel from a client, the meeting was about the safety of Notes & Domino environment deployed in the company. For the photo below you can see that meetings with the security staff are always tense and full of questions.

Semana passada eu tive uma reunião com o pessoal de segurança de um cliente, a reunião era sobre a segurança do ambiente Domino & Notes implantado na empresa.
 Pela foto abaixo pode-se ver que reuniões com o pessoal de segurança são sempre tensas e cheias de questionamentos.

Image:Domino and Security Person

Uncategorized

If you want iNotes working with Windows 7 you need the hotfix  304.2CHF1 available on FixCentral

Uncategorized

An ID vault provides several layers of security.

  • Protection against the use of an unauthorized vault  A user ID can be uploaded to a vault only if a parent certifier of the user ID has issued a Vault Trust Certificate to the vault. This prevents a rogue administrator from creating an unauthorized vault and uploading ID files into it.
  • Protection against unauthorized downloads of IDs  ID downloads from a vault are password-protected. If ten incorrect consecutive passwords are specified during one day in an attempt to download an ID file from a vault to a client, downloads are disabled for that ID for the day. To download the ID that day, the password must be reset on it. For additional protection, administrators can require authorization for all ID downloads.
  • Protection against unauthorized password resets A person requires a Password Reset Certicate issued by a parent certifier of a user ID to reset the password on the ID through the Domino Administratator. A custom password reset application, for example, one that enables users to reset their own passwords, requires a Password Reset Certificate issued to the identity under which the application runs and to each server on which it is deployed.
  • Protection against unauthorized access to the vault contents The Notes ID vault server’s ID file is integral to the protection of the vault’s contents. It is extremely important to protect the vault server’s ID file from unauthorized access.
  • Protection against unauthorized access to data transmitted over the network All ID vault transactions between clients and servers are encrypted.

Uncategorized

From the domino wiki

When it comes to configuring the Domino Attachment and Object Service (DAOS), you may be asking yourself – and us in turn – what’s the right way to set it up? For example, is there an optimum “Minimum Sizeâ€� setting? Should the repository go under the data directory or on its own drive? What’s the best “Deferred Deletion Intervalâ€� in relation to my backup and restore schedule? This guide, and the documents it references, attempts to answer these questions of individual, site-specific configuration in general terms with guidelines for adapting and modifying them based on measurements made against your particular environment.

Uncategorized

LotusScript button to remove individual names that have been cached in $users view of local address book. This script is from TN 139749

Sub Click(Source As Button)
        Dim sess As New NotesSession
        Dim db As NotesDatabase
        Dim view As NotesView
        Dim doc As NotesDocument
        Dim contact As String
        Dim tempInternetAddress As String
        Dim tempMailAddress As String
        Dim result As Integer
        Dim confirmResult As Integer
       
        ‘ Getting local names.nsf
        Set db = sess.GetDatabase(“”,”names.nsf”,False)
        If db Is Nothing Then
                Messagebox “Unable to find local name.nsf.  Exiting…”
                Exit Sub
        End If
        ‘ Getting recent contacts view
        Set view = db.GetView(“RecentCollaborators”)
       
        contact = “”
        ‘ Prompting user for name
        contact = Lcase(Cstr(Inputbox(“Please input an internet address Notes adress, examples:” + Chr(13) + Chr(10) + “[email protected] or User/Org”)))
        If contact = “” Then
                Messagebox “You must enter in a value. Exiting…”
                Exit Sub
        End If
       
        ‘ Getting first document in view
        Set doc = view.GetFirstDocument
       
        ‘ If the document is of an smtp (internet address) then search the InternetAddress field other wise search the MailAddress (Notes Name) field
        If Instr(contact,”@”) Then
                While Not doc Is Nothing
                        tempMailAddress = “”
                        tempInternetAddress = “”
                        tempInternetAddress = Lcase(doc.InternetAddress(0))
                        If tempInternetAddress <> “” Then
                                If Instr(tempInternetAddress,contact) Then
                                        tempMailAddress = doc.MailAddress(0)
                                        result = Messagebox (“Do you want to delete user (” + tempMailAddress + “) with internet address (” + tempInternetAddress + “) or cancel serach?”,3 + 32)
                                        If result = 2 Then ‘ Canceling Search
                                                Exit Sub
                                        Elseif result = 6 Then ‘ Requesting deletion
                                                confirmResult = Messagebox (“Confirm deletion” , 4)
                                                If confirmResult = 6 Then ‘ Confirm Deletion
                                                        Call doc.Remove(True)
                                                        Messagebox “Message deleted.  Exiting….”
                                                        Exit Sub
                                                End If
                                        Else ‘ Otherwise continue search
                                                Print “Continuing to search….”
                                        End If
                                End If
                        End If
                        Set doc = view.GetNextDocument(doc)
                Wend
        Else
                Dim tempName As NotesName
                Set tempName = sess.CreateName(contact)
                contact = Lcase(tempName.Canonical)
                While Not doc Is Nothing
                        tempMailAddress = “”
                        tempInternetAddress = “”
                        tempMailAddress = Lcase(doc.MailAddress(0))
                        If tempMailAddress <> “” Then
                                If Instr(tempMailAddress,contact) Then
                                        tempInternetAddress = doc.InternetAddress(0)
                                        result = Messagebox (“Do you want to delete user (” + tempMailAddress + “) with internet address (” + tempInternetAddress + “) or cancel serach?”,3 + 32)
                                        If result = 2 Then ‘ Canceling Search
                                                Exit Sub
                                        Elseif result = 6 Then ‘ Requesting deletion
                                                confirmResult = Messagebox (“Confirm deletion” , 4)
                                                If confirmResult = 6 Then ‘ Confirm Deletion
                                                        Call doc.Remove(True)
                                                        Messagebox “Message deleted.  Exiting….”
                                                        Exit Sub
                                                End If
                                        Else ‘ Otherwise continue search
                                                Print “Continuing to search….”
                                        End If
                                End If
                        End If
                        Set doc = view.GetNextDocument(doc)
                Wend
        End If
End Sub

Uncategorized

How to Enable Windows 7 GodMode

I found this tip at www.sitepoint.com

Here’s a neat Windows 7 trick that’s been doing the rounds on the Internet. It enables “GodMode,� a term devised by the Microsoft development team, which provides a single place to access all Windows settings without needing to browse options and folders in the Control Panel.

To use it:
1.        Create a new folder.
2.        Rename the folder to

GodMode.{ED7BA470-8E54-465E-825C-99712043E01C}

(note that you can change the “GodMode� text, but the following period and code number are essential).
3.        The folder icon will change — double click it to show the GodMode window:

Image:Windows 7 God Mode

Uncategorized

Achei este link ontem no PlanetLotus. O curso é da TLCC.
Já peguei o arquivo e o curso é introdutório mesmo, para iniciantes,  mas não deixa de ser bom.
Vale a pena

Link

Uncategorized