Monotone-Parent: 406f448ce3cddf83f0b7075cd2e1698b2fbbc5d0

Monotone-Revision: 60c0036b3723ee42d8b8cbed474b6c6eac6c5e9a

Monotone-Author: wsourdeau@inverse.ca
Monotone-Date: 2010-06-22T15:22:12
Monotone-Branch: ca.inverse.sogo
This commit is contained in:
Wolfgang Sourdeau
2010-06-22 15:22:12 +00:00
parent b3c7a5d442
commit be167e4a60
2 changed files with 9 additions and 2 deletions

View File

@@ -1,3 +1,9 @@
2010-06-22 Wolfgang Sourdeau <wsourdeau@inverse.ca>
* SoObjects/SOGo/SOGoDAVAuthenticator.m (-checkLogin:andPassword:)
we save the CAS session information to the cache after a
successful authentication/validation.
2010-06-18 Wolfgang Sourdeau <wsourdeau@inverse.ca>
* SoObjects/SOGo/SOGoDAVAuthenticator.m (-checkLogin:andPassword:)

View File

@@ -72,8 +72,9 @@
/* CAS authentication for DAV requires using a proxy */
session = [SOGoCASSession CASSessionWithTicket: _pwd
fromProxy: YES];
if (session)
rc = [[session login] isEqualToString: _login];
rc = [[session login] isEqualToString: _login];
if (rc)
[session updateCache];
}
}