managing access to new ticket via AD groups

Moderator: crythias

Locked
adt
Znuny newbie
Posts: 43
Joined: 28 Jun 2012, 17:04
Znuny Version: 2.4.9

managing access to new ticket via AD groups

Post by adt »

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
reneeb
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

Post by reneeb »

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

Code: Select all

   $Self->{'AuthSyncModule::LDAP::UserSyncRolesDefinition'} = {

	# ldap group
	'CN=IT,OU=Groups,OU=IT,OU=Departments' => {
		# otrs role
		'TicketCreator' => 1,
	},

    };
in your config

(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
adt
Znuny newbie
Posts: 43
Joined: 28 Jun 2012, 17:04
Znuny Version: 2.4.9

Re: managing access to new ticket via AD groups

Post by adt »

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 .
crythias
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

Post by crythias »

adt wrote:my question is is it possible to manage the access rights to new ticket icon in customer interface via Active Directory groups?
No.

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
adt
Znuny newbie
Posts: 43
Joined: 28 Jun 2012, 17:04
Znuny Version: 2.4.9

[Answered] managing access to new ticket via AD groups

Post by adt »

Gotcha, thanks crythias!!
Locked