
5 Jul
2005
5 Jul
'05
3:16 p.m.
Rudi Kramer wrote:
Good Morning
Is it possilbe to setup one user who's session does not time out or perhaps is there a way that we can authenticate a user in the url e.g. http://user:pwd@otrs.server.co.za?
Thanks Rudi
Making the session not timeout would probably be difficult, but setting it to a very large timeout is easy. In Kernel/Config.pm: $Self->{SessionMaxTime} = 60 * 60 * 24 * 365; # one year is enough $Self->{SessionMaxIdleTime} = 60 * 60 * 24 * 365; # one year is enough