sogo/Main/sogod.m
Wolfgang Sourdeau 80e9302dbc Monotone-Parent: b5a04e99cccb4e6bde4bed001b9a407168745cad
Monotone-Revision: ae021bb9d1c2734bd2fb058dda318f00f1edb2e7

Monotone-Author: wsourdeau@inverse.ca
Monotone-Date: 2010-01-18T09:23:06
Monotone-Branch: ca.inverse.sogo
2010-01-18 09:23:06 +00:00

65 lines
1.7 KiB
Objective-C

/*
Copyright (C) 2004-2005 SKYRIX Software AG
Copyright (C) 2006-2009 Inverse inc.
This file is part of OpenGroupware.org.
OGo is free software; you can redistribute it and/or modify it under
the terms of the GNU Lesser General Public License as published by the
Free Software Foundation; either version 2, or (at your option) any
later version.
OGo 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 Lesser General Public
License for more details.
You should have received a copy of the GNU Lesser General Public
License along with OGo; see the file COPYING. If not, write to the
Free Software Foundation, 59 Temple Place - Suite 330, Boston, MA
02111-1307, USA.
*/
#include <unistd.h>
#include <sys/types.h>
#import <Foundation/NSAutoreleasePool.h>
#import <Foundation/NSString.h>
#import <Foundation/NSTimeZone.h>
#import <NGObjWeb/SoApplication.h>
#import <SOGo/SOGoSystemDefaults.h>
int
main (int argc, char **argv, char **env)
{
NSAutoreleasePool *pool;
SOGoSystemDefaults *sd;
int rc;
/* Here we work around a bug in GNUstep which decode XML user defaults using
the system encoding, rather than honouring the encoding specified in the
file. */
putenv ("GNUSTEP_STRING_ENCODING=NSUTF8StringEncoding");
pool = [NSAutoreleasePool new];
if (getuid() > 0)
{
rc = 0;
sd = [SOGoSystemDefaults sharedSystemDefaults];
[NSTimeZone setDefaultTimeZone: [sd timeZone]];
WOWatchDogApplicationMain (@"SOGo", argc, (void *) argv);
}
else
{
rc = -1;
NSLog (@"Don't run SOGo as root!");
}
[pool release];
return rc;
}