
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-24-2022 06:54 AM
Hi All,
I want to allow Readonly access to a User or ITIL user to Emails /Outbox.
How I could give that ?
Thanks,
Virendra
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-25-2022 03:52 AM
You need to read ACL with the below script:-
answer = Read();
function Read() {
var user=gs.getUserID();
if(user=='sys_id of the actual user') {
return true;
}else{
return false;
}
}
Please mark answer correct/helpful based on Impact.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-25-2022 03:30 AM
Thanks Saurav for your reply,
I am going to assign it to one user only. Could you please elaborate like how I could use gs.getUserID() to grant access ?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-25-2022 03:52 AM
You need to read ACL with the below script:-
answer = Read();
function Read() {
var user=gs.getUserID();
if(user=='sys_id of the actual user') {
return true;
}else{
return false;
}
}
Please mark answer correct/helpful based on Impact.