sogo/SoObjects/SOGo/SOGoSystemDefaults.h
Wolfgang Sourdeau af7f0ba0e4 Monotone-Parent: 5f1640d17dbc95901d131c16f8d4499aa044594c
Monotone-Revision: 0bbbd12ea5011c00d28bdc2f4c9377a886d244e0

Monotone-Author: wsourdeau@inverse.ca
Monotone-Date: 2009-12-08T23:18:12
Monotone-Branch: ca.inverse.sogo
2009-12-08 23:18:12 +00:00

66 lines
1.7 KiB
Objective-C

/* SOGoSystemDefaults.h - this file is part of SOGo
*
* Copyright (C) 2009 Inverse inc.
*
* Author: Wolfgang Sourdeau <wsourdeau@inverse.ca>
*
* This file is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2, or (at your option)
* any later version.
*
* This file is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; see the file COPYING. If not, write to
* the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
* Boston, MA 02111-1307, USA.
*/
#ifndef SOGOSYSTEMDEFAULTS_H
#define SOGOSYSTEMDEFAULTS_H
#import <SOGo/SOGoDomainDefaults.h>
@interface SOGoSystemDefaults : SOGoDomainDefaults
+ (SOGoSystemDefaults *) sharedSystemDefaults;
- (NSArray *) domainIds;
- (BOOL) crashOnSessionCreate;
- (BOOL) debugRequests;
- (BOOL) debugLeaks;
- (int) vmemLimit;
- (BOOL) trustProxyAuthentication;
- (BOOL) useRelativeURLs;
- (BOOL) isWebAccessEnabled;
- (BOOL) isCalendarDAVAccessEnabled;
- (BOOL) isAddressBookDAVAccessEnabled;
- (NSString *) faviconRelativeURL;
- (NSString *) zipPath;
- (int) port;
- (int) workers;
- (NSString *) logFile;
- (NSString *) pidFile;
- (NSTimeInterval) cacheCleanupInterval;
- (NSString *) memcachedHost;
- (BOOL) userCanChangePassword;
- (BOOL) uixAdditionalPreferences;
- (BOOL) uixDebugEnabled;
- (NSArray *) supportedLanguages;
- (NSString *) loginSuffix;
@end
#endif /* SOGOSYSTEMDEFAULTS_H */