Monotone-Parent: ddb6d1e34096a18e84b736ef11f42b6e70af2cec

Monotone-Revision: 227d08b1bace5a1e7b0760cc82dc7381016175ae

Monotone-Author: wsourdeau@inverse.ca
Monotone-Date: 2010-06-10T18:40:57
Monotone-Branch: ca.inverse.sogo
This commit is contained in:
Wolfgang Sourdeau
2010-06-10 18:40:57 +00:00
parent 5c88713086
commit e91844e3a3
3 changed files with 11 additions and 0 deletions

View File

@@ -1,3 +1,8 @@
2010-06-10 Wolfgang Sourdeau <wsourdeau@inverse.ca>
* SoObjects/SOGo/SOGoSystemDefaults.m (-CASLogoutEnabled): new
method that returns whether the "SOGoCASLogoutEnabled" ud is set.
2010-06-09 Wolfgang Sourdeau <wsourdeau@inverse.ca>
* SoObjects/SOGo/SOGoUserFolder.m (_subFoldersFromFolder:):

View File

@@ -63,6 +63,7 @@
- (NSString *) authenticationType;
- (NSString *) CASServiceURL;
- (BOOL) CASLogoutEnabled;
- (BOOL) enablePublicAccess;

View File

@@ -296,6 +296,11 @@ BootstrapNSUserDefaults ()
return [self stringForKey: @"SOGoCASServiceURL"];
}
- (BOOL) CASLogoutEnabled
{
return [self boolForKey: @"SOGoCASLogoutEnabled"];
}
- (BOOL) enablePublicAccess
{
return [self boolForKey: @"SOGoEnablePublicAccess"];