Ich habe mal einen PMR bei IBM eröffnet.
Hier die Anwort:
1.
Weiteres Vorgehen
Dafür gibt es keine Richtlinie , weder für das Aktivieren noch für das Deaktvieren
Dazu gibt es einen Verbesserungsvorschlag , der bisher nicht realisert wurde.
SPR # JMER7S2TJF / APAR LO40500
Enhancement Request: Add policy to add signatures to mailfiles and disable the option in notes clients
Workaround
Erweitern Sie das mail Policy Dokument in names.nsf
Eine Anleitung finden sie hier
https://www.ibm.com/support/knowledgecenter/SSKTMJ_9.0.1/admin/conf_extendingpolicysettingstolotusinotesandnotesprofi_t.html http://wiki.crossware.co.nz/wiki/signature/V3wiki.nsf/page.xsp?documentId=F1F9C4D238E661D5CC25777A00812255&action=openDocument&SessionID=CMQYZW1BBDWith domino 8.5 you can now extend the Mail Policy to update the users Calendar Profile.
You can disable the users Local Signatures using an existing Mail Setting Policy by setting the following fields
EnableSignature = ""
EnableSignature$UP = "2'
2.
In einem anderen PMR mit dem selben problem
1. Hide/Delete setting for signature in Preference settings.
This can be done by modifying a form called (Calendar Profile) and
remove Signature row from table.
2. Change all user's mail settings to disable signature. A scheduled
agent can be created to clear mail signature in current mail calendar
profile. Once all mails are updated, this agent can be disabled.
Agent code are copied here for your reference:
Dim session As New NotesSession
Dim db As NotesDatabase
Dim docProfile As NotesDocument
Dim strProfileEnableSignature As String
Set db = session.CurrentDatabase
Set docProfile = db.GetProfileDocument("CalendarProfile")
docProfile.EnableSignature = ""
Call docProfile.Save(True,False)
3. After changes above are made, user need to close Notes and reopen it
because profile document is cached in client side.
Das Stück code läst sich auch im Postopenvent einer Maildatenbank verwenden
1. Open the Mail file in Lotus® Domino Designer®.
2. Go to Other > Database Resources.
3. Double-click "Database Script".
4. Click the "PostOpen" object.
5. Add the code between the Sub PostOpen and End Sub lines of code:
Tja, da werde ich mich mal an unseren Dienstleister wenden.
Gruß
Siggi