Our Lotus Notes clients have every port turned on for some whacky reason. The last person here had them set up that way. This really slows down the connection to our servers. Is there some way to reset all of the clients automatically to just have the TCPIP port turned on and the rest of the ports off? Even our laptop users can be set this way as well.
I couldn’t find anything in the policy settings except for port compression (whatever that is).
Subject: Can you force all clients to use only the TCPIP port?
Send a button to all users which goes like:
Sub Initialize
Dim session As New NotesSession
session.SetEnvironmentVar "Ports", "TCPIP", True
End Sub
Or, if you doubt that all users will press the button, make a new Form, with the option “Store Form in document”, and put the script in the Form’s Initialize event, and send a document created with that Form to all users, so that when users read the mail, it will automatically fix their Notes Ports.