
- 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-24-2022 07:01 AM
create an ACL on sys_email and set a condition for type=sent.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-24-2022 07:03 AM
Thanks for the reply.
How would it be get assigned ONLY to that specific user ?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-24-2022 07:15 AM
create a new role email_sent_read, add the role to the ACL, apply the role to a group, add the user to the group.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-24-2022 07:23 AM
hello,
If there is only one user you can directly use gs.getUserID() to match with the user if there are more than one user then you have to create a role and check if the user has that role or not.
Thanks.
Please mark answer correct/helpful based on imapct.