Hi,
Here are the entries I got on the log for all the server’s persons :
“Unable to update calendar entry ‘DefaultAppAssoc’ from list ‘$FL_2’ for ‘William Raoult/MStore’. Error returned: : Note item not found
Unable to update calendar entry ‘DefaultAppDom’ from list ‘$FL_2’ for ‘William Raoult/MStore’. Error returned: : Note item not found”
I found a related technote “Server console errors when mail policy pushes AutoProcessType” which tells :
This issue has been reported to Quality Engineering as SPR# LMAN7T2R3J.
In order to correct this problem, the Domino Directory template (pubnames.ntf) needs to be modified. Once it is open in the Domino Designer, perform these steps:
- Open the PolicyManagement script library
- Go to the ProcessDynamicItems subroutine
- Move to the line that starts with 'Case “5” ’
- Replace the next line:
If item.name <> “Owner$UP” Then
With this line:
If item.name <> “Owner$UP” And item.name <> “DefaultAppAssoc$UP” And item.name <> “DefaultAppDom$UP” Then
- Save the script library and replace the design of your Domino Directory with this modified template.
I have checked in Designer that the code is correct for names.nsf (and though in pubnames.ntf) :
Case “5” ’ Bucket 2 - Slam
If item.name <> “Owner$UP” And item.name <> “DefaultAppAssoc$UP” And item.name <> “DefaultAppDom$UP” Then
Call GenerateSlamList(hPolicy, item.name)
End If
I know this is not a “real” problem.
Jean-Pierre