Notes/Domino 8 TRIAL versions now available for download
The Notes/Domino 8 TRIAL versions (English only) are now available and can be found here
The Notes/Domino 8 TRIAL versions (English only) are now available and can be found here
When planning a meeting, some users do not see any information about free time of some of the invited persons. When you right click on the planner, you can open the calender. When you click left, a “You are not authorized … ” error message occurs in the client’s statusbar.
Access to free time information is set company wide by policy to be visible to all people.
I found out that in all cases where this issue occurs, the “AllowList” field in the persons entry in clubusy.nsf was not empty, although it should be empty
It seems that the field value is not properly deleted or updated when either the adminp tries to install the new mail policy or the user edited the calendar profile document.
When you delete the entries from the field, information about free time is provided.
So far, so good. After the server has updated the clubusy.nsf the error occurs again.
Then I looked closer at the calendar profile and found an entry in the “AllowBusyAccess” field.

Deleting the entry in this field and running a “tell sched validate username” after deleting the user document in the clubusy.nsf finally solved the problem.
Update: Now SPR “MFUN77EK4R”
Pretty old but still funny …
[more]
Andre Guirard published an end-user tool that includes a toolbar button you can click while you have a replication conflict document open or highlighted (or the main document), and it will open the replication conflict and main document side by side to compare them visually. There’s also a list of the field differences and a marked-up version of any rich text showing what has changed.
[DOWNLOAD]
Automatically perform repetitive tasks associated with files from a Lotus Domino server crash, hang, or performance issues. This tool is based on the internal tool that Lotus Support uses to analyze NSD and other files resulting from a Lotus Domino server crash, hang, or performance issues.
[ vial Lotus Sandbox ]
Hier eine Aufstellung regionaler Stammtische der atnotes – Community.
“Geek” – Brunch im Meilenwerk Düsseldorf am 16.09.2007
Am 16.09.2007 ab 10:30 treffen wir uns mit einer Handvoll Leuten im Meilenwerk Düsseldorf zu einem Brunch. Wer Lust und Zeit hat, kann gerne dazustossen.
OpenNTF will be establishing an Advisory Board to help take the site and the Lotus Community it serves to the next level. I am happy to inform you that nominations to fill nine council posistions are now being accepted and will be open through Friday, September 21, 2007. In order to fill out the nomination form you will need have your OpenNTF username and password. If you do not have a username and password you can get one here.
Vince Schuurman published a new website plugin to show upcoming events posted on OpenNTF on your own website.
Information on how to install the plugin can be found here.
Bruce Elgort’s new project, Idea Exchange, has reached the next step. (PRE-) BETA TESTING.

If you are interested to become a beta tester, read this article … NOW !!
Mit grossem Interesse verfolge ich die momentanen Aktionen der Bundesregierung zur Bekämpfung des (inter)nationalen Terrorismus.
Da auch ich die Aktionen der Terroristen nicht gut finde, biete ich an, Ihnen bei der Bekämpfung der Bösewichte behilflich zu sein.
Ich habe daher auf meinem Rechner vorsorglich schon einmal ein Verzeichnis angelegt ( c:\BundesTrojaner ). Hier können Sie bei Bedarf die von Ihnen entwickelte Software installieren. Gleichzeitig habe ich auf meiner Firewall den Port 66666 geöffnet. Dann muss Ihr Techniker nicht so lange suchen **smilie**, **smilie**
Bitte sehen Sie davon ab, den Trojaner in einem anderen Verzeichnis zu installieren, da sich auf dem Rechner auch persönliche Daten befinden und ich nicht möchte, daÃ? Sie oder Ihre Gehilfen diese lesen. Es wäre Ihnen doch auch peinlich, wenn Sie Bilder von Ihrer Frau im Internet finden würden, die im privaten Umfeld aufgenommen wurden, oder ?
Viel Erfolg bei Ihrer Aktion. Und danke, daÃ? Sie durch Presse, Funk und Fernsehen die Nation von Ihrer Vorgehensweise in Kenntnis gesetzt haben. Das stärkt das Vertrauen in unsere Behörden und die Politiker ungemein. …
With Lotus Notes/Domino® you can enable either the Out of Office agent or the new Out of Office service.
This document points out resources for learning, using, and handling issues with the new service as well as issues and nuances with the Out of Office agent.
There is no direct link to the Notes/Domino 8 Forum on LDD, so you may want to add this link to your bookmarks
One of the new features in the brand new release 8 of IBM’s Lotus Notes an Domino is the SMTP outbound authentication (SMTP AUTH) to relay hosts. Most of the ISPs only allow authenticated users / server to relay mail thru their server.
To setup this new feature follow these simple steps:
I’ve only tested with freenet.de. maybe there are problems with other ISPs as in the past with 1&1.

I would like to say thank you to Ramon Bisswanger who invented and developed the SMTP AUTH tool. I’ve used his great tool to send mail via my Domino server without any problems for the past 3 years.
Downloaded the IBM Lotus Sametime Server 7.5.1 Instant Messaging Limited Use for Windows Multilingual (C133DML) from Passport Advantage and started to install it on my Domino 8 server.
Then, after a short while:

Please, IBM, could you fix the download. I don’t think that I’ve downloaded the wrong package …

The brand new release 8 of IBM’s Lotus Notes / Domino is ( almost ) available for download … on Passport Advantage
Downloading …

You have LotusScript code that runs against a particular document. The document contains several fields that have names preceded by a $ symbol. When you attempt to reference these fields in the code via extended-class syntax, an error occurs. Is it possible to access these fields in LotusScript using extended-class syntax?
To access these fields in LotusScript using extended-class syntax, you must insert a tilde character (~) immediately before the $ sign.
For example, while the following line generates an error:
variablename = doc.$AdditionalHeaders(0)
The modified line runs as intended:
variablename = doc.~$AdditionalHeaders(0)
[via Lotus Notes KnowledgeBase #1098756]