]> err.no Git - sope/blob - sope-mime/samples/imapquota.m
3192714305228f027d408741b6e99213f70fd8b2
[sope] / sope-mime / samples / imapquota.m
1 /*
2   Copyright (C) 2000-2005 SKYRIX Software AG
3
4   This file is part of SOPE.
5
6   SOPE is free software; you can redistribute it and/or modify it under
7   the terms of the GNU Lesser General Public License as published by the
8   Free Software Foundation; either version 2, or (at your option) any
9   later version.
10
11   SOPE is distributed in the hope that it will be useful, but WITHOUT ANY
12   WARRANTY; without even the implied warranty of MERCHANTABILITY or
13   FITNESS FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public
14   License for more details.
15
16   You should have received a copy of the GNU Lesser General Public
17   License along with SOPE; see the file COPYING.  If not, write to the
18   Free Software Foundation, 59 Temple Place - Suite 330, Boston, MA
19   02111-1307, USA.
20 */
21
22 #include "ImapQuotaTool.h"
23 #include "common.h"
24
25 int main(int argc, char **argv, char **env) {
26   NSAutoreleasePool *pool;
27   ImapQuotaTool *tool;
28   int res = 0;
29   
30   pool = [NSAutoreleasePool new];
31   
32 #if LIB_FOUNDATION_LIBRARY  
33   [NSProcessInfo initializeWithArguments:argv count:argc environment:env];
34 #endif
35   
36   tool = [[ImapQuotaTool alloc] init];
37
38   {
39     NSString *str;
40
41     str = [[NSUserDefaults standardUserDefaults] objectForKey:@"path"];
42     NSLog(@"quota for path: %@", str);
43     NSLog(@"result %@", [tool getQuotaRoot:str]);
44   }  
45   [tool release];
46   
47   [pool release];
48   exit(res);
49   /* static linking */
50   [NGExtensions class];
51   return res;
52 }