[otrs] FW: how to add approval person in request type

2009-06-14 Thread Bhushan Badgujar
 

HI,

 

Anybody help me!

FYI>

 

Regard

Bhushan Badgujar

Executive - IT Facilities

 

From: Bhushan Badgujar [mailto:bhushan.badgu...@g-t-s.in] 
Sent: Thursday, June 11, 2009 12:13 PM
To: 'otrs@otrs.org'
Subject: how to add approval person in request type

 

Dear Team,

 

I have install the OTRS 2.3.4 in my organization, In a OTRS I have created
three types 1.Request 2.issue 3. Information 

 

My problem is if any customer create Request ticket, The support team want a
approval for particular Request ticket. The approval person approved ticket.
then closed the ticket from support team. 

 

Example- customer give the request for 'upgrade the system' suppose I am a
support team  I want a approval from IT manager & Customer Department head


 

Please help me for this issue.

 

Please give the solution for the same if any idea please submitted



 

Thanks and Regards,

Bhushan Badgujar

Executive - IT Facilities


DISCLAIMER:

This message contains privileged and confidential information and is intended 
only for an individual named.
If you are not the intended recipient, you should not disseminate, distribute, 
store, print, copy or deliver
 this message. Please notify the sender immediately by e-mail if you have 
received this e-mail by mistake 
and delete this e-mail from your system. E-mail transmission cannot be 
guaranteed to be secure or error-free
as information could be intercepted, corrupted, lost, destroyed, arrive late or 
incomplete or contain viruses. 
The sender, therefore, does not accept liability for any errors or omissions in 
the contents of this message 
which arise as a result of e-mail transmission. If verification is required, 
please request a hard-copy version.

-
OTRS mailing list: otrs - Webpage: http://otrs.org/
Archive: http://lists.otrs.org/pipermail/otrs
To unsubscribe: http://lists.otrs.org/cgi-bin/listinfo/otrs

NEW! ENTERPRISE SUBSCRIPTION - Get more information NOW!
http://www.otrs.com/en/support/enterprise-subscription/

[otrs] Possibility of OTRS

2009-06-14 Thread olivier . villegente
Hi,
Is it possible to create something like that with OTRS :

1 - One customer of the comptability service send a support request.
2- The director of the comptability service need to approve the request.
3- If it is Ok, the request is send to the manager of the support service.
4- If the manager of the support service is Ok with the request he can 
affect it to a member of it's team.

Is it possible to create somethink like that ?

Reagrds,

_
Olivier VILLEGENTE
Administrateur système & réseau
Société Immobilière de Nouvelle-Calédonie
Tél : (687) 28.03.78
Fax : (687) 28.43.56
e-Mail : olivier.villege...@sic.nc-
OTRS mailing list: otrs - Webpage: http://otrs.org/
Archive: http://lists.otrs.org/pipermail/otrs
To unsubscribe: http://lists.otrs.org/cgi-bin/listinfo/otrs

NEW! ENTERPRISE SUBSCRIPTION - Get more information NOW!
http://www.otrs.com/en/support/enterprise-subscription/

Re: [otrs] Active Directory and user + agent authentification

2009-06-14 Thread olivier . villegente
I don't understand.  I have already do that. I have a local user that have 
the same username and password in my Active Directory and in OTRS. If I 
don't use AD to authenticate, I can access to http://tickets/otrs/index.pl 
and http://tickets/otrs/customer.pl. If I use AD, I can login to 
http://tickets/otrs/customer.pl withou error, if I try to login to 
http://tickets/otrs/index.pl I have this error  : Login failed! Your 
username or password was entered incorrectly.

Do you know what is wrong ?

Regards,

_
Olivier VILLEGENTE
Administrateur système & réseau
Société Immobilière de Nouvelle-Calédonie
Tél : (687) 28.03.78
Fax : (687) 28.43.56
e-Mail : olivier.villege...@sic.nc



Steve Hall  
Envoyé par : otrs-boun...@otrs.org
12/06/2009 20:59
Veuillez répondre à
"User questions and discussions about OTRS." 


A
"User questions and discussions about OTRS." 
cc

Objet
Re: [otrs] Active Directory and user + agent authentification






Even though you are auth'ing via AD, you still need to have local agents 
created with the same username as the AD username. (Cant comment on 
customers, as I dont run like that).

If you change the 

  $Self->{'AuthModule'} = 'Kernel::System::Auth::LDAP'; 

back to the default, create your admin user as per the name in AD, and try 
again.

Regards

I
On 12 Jun 2009, at 05:02, olivier.villege...@sic.nc wrote:


Hi, 
I have a little problem that I'm unable to solve. 
  
 - I need that agents and users (customers) can authenticate using Active 
Directory. My users can access to the customer page but my agent can't 
login to the agent page. When agent try to login they have an error 
message saying "the connection has failed! Your username or password is 
incorrect". 

 - After edit my Config.pm in order to allow authenticate by Active 
Directory, I can't connect using a local user. 

Can you help me to find what is wrong ? 
I join a copy of my Config.pm 

Regards, 

** My Config.pm ** 

#  # 
#  # 
#  # 
# Start of your own config options!!!  # 
#  # 
#  # 
#  # 



  $Self->{'AuthModule'} = 'Kernel::System::Auth::LDAP'; 
  $Self->{'AuthModule::LDAP::Host'} = 'pollux.sic.intra'; 
  $Self->{'AuthModule::LDAP::BaseDN'} = 'dc=sic, dc=intra'; 
  $Self->{'AuthModule::LDAP::UID'} = 'sAMAccountName'; 

  $Self->{'AuthModule::LDAP::SearchUserDN'} = 
'cn=ldap_php,cn=Systeme,dc=sic,dc=intra'; 
  $Self->{'AuthModule::LDAP::SearchUserPw'} = ''; 


  # This is an example configuration for an LDAP auth. backend. 
  # (take care that Net::LDAP is installed!) 
  $Self->{'Customer::AuthModule'} = 'Kernel::System::CustomerAuth::LDAP'; 
  $Self->{'Customer::AuthModule::LDAP::Host'} = 'pollux.sic.intra'; 
  $Self->{'Customer::AuthModule::LDAP::BaseDN'} = 
'ou=SIC,dc=sic,dc=intra'; 
  $Self->{'Customer::AuthModule::LDAP::UID'} = 'sAMAccountName'; 

  # The following is valid but would only be necessary if the 
  # anonymous user do NOT have permission to read from the LDAP tree 
  $Self->{'Customer::AuthModule::LDAP::SearchUserDN'} = 
'cn=ldap_php,ou=Systeme,dc=sic,dc=intra'; 
  $Self->{'Customer::AuthModule::LDAP::SearchUserPw'} = ''; 

  # CustomerUser 
  # (customer user database backend and settings) 
$Self->{CustomerUser} = { 
Name => 'Datenbank', 
Module => 'Kernel::System::CustomerUser::DB', 
Params => { Table => 'customer_user', 
# to use an external database 
#   DSN => 'DBI:odbc:yourdsn', 
#   DSN => 'DBI:mysql:database=customerdb;host=customerdbhost', 
#   User => '', Password => '', 
}, 


# customer uniq id 
CustomerKey => 'login', 
CustomerID => 'customer_id', 
CustomerValid => 'valid_id', 
CustomerUserListFields => ['first_name', 'last_name', 'email'], 
#   CustomerUserListFields => ['login', 'first_name', 'last_name', 
'customer_id', 'email'], 
CustomerUserSearchFields => ['login', 'last_name', 'customer_id'], 

CustomerUserSearchPrefix => '', 
CustomerUserSearchSuffix => '*', 
CustomerUserSearchListLimit => 250, 
CustomerUserPostMasterSearchFields => ['email'], 
CustomerUserNameFields => ['salutation', 'first_name', 
'last_name'], 
#   ReadOnly => 1, 
Map => [ 
# note: Login, Email and CustomerID needed! 
# var, frontend, storage, shown, required, storage-type, 
http-link 
[ 'UserSalutation', 'Salutation', 'salutation', 1, 0, 'var' ], 

[ 'UserFirstname', 'Firstname', 'first_name', 1, 1, 'var' ], 
[ 'UserLastname', 'Lastname', 'last_name', 1, 1, 'var