[SOLVED] SSO + Survey

Moderator: crythias

Locked
lukbec
Znuny newbie
Posts: 34
Joined: 20 Apr 2012, 15:03
Znuny Version: 2.4.6

[SOLVED] SSO + Survey

Post by lukbec »

When run the SSO login is required to log in OTRS.

Users who do not possess an account (AD) have a problem with filling in the questionnaire (survey).

Is it possible to exclude surveys with SSO?

Currently in http.conf I write:

<Directory "/opt/otrs/">
   AuthType Kerberos
   He KrbMethodNegotiate
   He KrbMethodK5Passwd
   KrbAuthRealms **.***
   Krb5KeyTab / etc/krb5.keytab
   require valid-user
   AllowOverride None
</ Directory>
Last edited by lukbec on 17 Jul 2014, 14:27, edited 2 times in total.
crythias
Moderator
Posts: 10170
Joined: 04 May 2010, 18:38
Znuny Version: 5.0.x
Location: SouthWest Florida, USA
Contact:

Re: SSO + Survey

Post by crythias »

I externally host surveys with LimeSurvey, so I don't have the issue with OTRS surveys being on or off.
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
lukbec
Znuny newbie
Posts: 34
Joined: 20 Apr 2012, 15:03
Znuny Version: 2.4.6

Re: SSO + Survey

Post by lukbec »

crythias wrote:I externally host surveys with LimeSurvey, so I don't have the issue with OTRS surveys being on or off.
This is not the preferred solution.
I found a solution:

# SSO 4 Agent
<Files index.pl>
AuthType Kerberos
He KrbMethodNegotiate
He KrbMethodK5Passwd
KrbAuthRealms **.***
Krb5KeyTab / etc/krb5.keytab
require valid-user
AllowOverride None
</Files>

# SSO 4 Customer
<Files customer.pl>
AuthType Kerberos
He KrbMethodNegotiate
He KrbMethodK5Passwd
KrbAuthRealms **.***
Krb5KeyTab / etc/krb5.keytab
require valid-user
AllowOverride None
</Files>
Locked