Hi,
Is it possible to manage access of new ticket icon for particular AD groups?
OTRS-2.4.14, Mysql 5.1, Debian 10.0
managing access to new ticket via AD groups
Moderator: crythias
-
- Znuny guru
- Posts: 5018
- Joined: 13 Mar 2011, 09:54
- Znuny Version: 6.0.x
- Real Name: Renée Bäcker
- Company: Perl-Services.de
- Contact:
Re: managing access to new ticket via AD groups
yes,
change the group settings for "Frontend::Module###AgentTicketPhone" and "Frontend::Module###AgentTicketEmail" in SysConfig (Ticket -> Frontend::Agent::ModuleRegistration). E.g. create a group "ticket_creator" and set this name in the group settings of both options.
Then create a new role (e.g. TicketCreator) that has rw permissions on the new group.
Then you can use
in your config
(note: this is untested)
change the group settings for "Frontend::Module###AgentTicketPhone" and "Frontend::Module###AgentTicketEmail" in SysConfig (Ticket -> Frontend::Agent::ModuleRegistration). E.g. create a group "ticket_creator" and set this name in the group settings of both options.
Then create a new role (e.g. TicketCreator) that has rw permissions on the new group.
Then you can use
Code: Select all
$Self->{'AuthSyncModule::LDAP::UserSyncRolesDefinition'} = {
# ldap group
'CN=IT,OU=Groups,OU=IT,OU=Departments' => {
# otrs role
'TicketCreator' => 1,
},
};
(note: this is untested)
Perl / Znuny development: http://perl-services.de
Free Znuny add ons from the community: http://opar.perl-services.de
Commercial add ons: http://feature-addons.de
Free Znuny add ons from the community: http://opar.perl-services.de
Commercial add ons: http://feature-addons.de
Re: managing access to new ticket via AD groups
thanks for the reply, but i need it for customers, my question is is it possible to manage the access rights to new ticket icon in customer interface via Active Directory groups? The icon of new ticket should be visible only to customers belonging to specific groups in my AD .
-
- Moderator
- Posts: 10170
- Joined: 04 May 2010, 18:38
- Znuny Version: 5.0.x
- Location: SouthWest Florida, USA
- Contact:
Re: managing access to new ticket via AD groups
No.adt wrote:my question is is it possible to manage the access rights to new ticket icon in customer interface via Active Directory groups?
There is no AD Group <-> Customer Group mapping. You can manually assign customers authorized-to-create-tickets to the respective group.
OTRS 6.0.x (private/testing/public) on Linux with MySQL database.
Please edit your signature to include your OTRS version, Operating System, and database type.
Click Subscribe Topic below to get notifications. Consider amending your topic title to include [SOLVED] if it is so.
Need help? Before you ask
Please edit your signature to include your OTRS version, Operating System, and database type.
Click Subscribe Topic below to get notifications. Consider amending your topic title to include [SOLVED] if it is so.
Need help? Before you ask
[Answered] managing access to new ticket via AD groups
Gotcha, thanks crythias!!