http://www-01.ibm.com/support/docview.wss?uid=swg21245022
Is it possible to just lock for some users?
As I understand this setting applies to the router task and none (not even admin) can apply this setting afterwards…
http://www-01.ibm.com/support/docview.wss?uid=swg21245022
Is it possible to just lock for some users?
As I understand this setting applies to the router task and none (not even admin) can apply this setting afterwards…
Subject: modify template
we’ve added some code to the script library to restrict this to only administrators. The below code simply checks the ACL level of the user. Our users are all set to Designer so they cannot set this rule action. If they want it they have to have the rule created for them. You can do something similar.
Script Library “Rules” function “ButtonAddAction”, added below code
Call GetGlobalActionValues()
' Begin new code to restrict 'send copy to' rule to administrators ONLY
Dim ns As New NotesSession
level% = ns.CurrentDatabase.CurrentAccessLevel
If level% < 6 And ACT_sAction = "B" Then
Msgbox " 'send copy to' actions are restricted to use by Administrators only, please choose another action.", 48, "Restricted action ..."
Exit Sub
End If
' End new code
'// Validate some choice is selected