How to give Readonly access to Email / Outbox to a user or ITIuser?

Virendra K
Kilo Sage

Hi All,

I want to allow Readonly access to a User  or ITIL user to Emails /Outbox.

How I could give that ?

 

Thanks,

Virendra

 

 

1 ACCEPTED SOLUTION

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.                  

View solution in original post

6 REPLIES 6

_ChrisHelming
Tera Guru

create an ACL on sys_email and set a condition for type=sent.

Thanks for the reply.

How would it be get assigned ONLY to that specific user ? 

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.

Saurav11
Kilo Patron
Kilo Patron

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.