Notes on the code below:
Using OTRS for end clients and internal users
Internal users have their email address as the CustomerID (so that only they can see the tickets they submit).
Internal users shouldn't see the Service 1, Service 2, or Service 3
So we have:
Code: Select all
$Self->{TicketAcl}->{'ACL-005-Service-Type'} = {
Properties => {
Ticket => {
CustomerID => ['[RegExp]^*workforcesoftware.com'],
},
PossibleNot => {
Ticket => {
Service=> ['Service 1','Service 2','Service 3'],
},
},
};
Thanks for any help you can provide!
Tom