]> err.no Git - sope/blob - sope-mime/samples/imapcontest.m
synced with latest additions and bumped framework versions
[sope] / sope-mime / samples / imapcontest.m
1 /*
2   Copyright (C) 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 <NGImap4/NGImap4ConnectionManager.h>
23 #include <NGImap4/NGImap4Connection.h>
24 #include "common.h"
25
26 static int runIt(NSArray *args) {
27   NGImap4ConnectionManager *cm;
28   NGImap4Connection *c;
29   NSUserDefaults    *ud;
30   id url;
31   
32   ud  = [NSUserDefaults standardUserDefaults];
33   url = [ud stringForKey:@"url"];
34   url = url ? [NSURL URLWithString:url] : nil;
35   if (url == nil) {
36     NSLog(@"ERROR: found no proper URL for connection ('url' default)!");
37     return 1;
38   }
39
40   printf("connect to: '%s'\n", [[url absoluteString] cString]);
41   
42   cm = [NGImap4ConnectionManager defaultConnectionManager];
43   c  = [cm connectionForURL:url password:[ud stringForKey:@"pwd"]];
44   
45   NSLog(@"con: %@", c);
46
47   NSLog(@"all: %@", [c allFoldersForURL:url]);
48   NSLog(@"sub: %@", [c allFoldersForURL:url]);
49
50   return 0;
51 }
52
53 int main(int argc, char **argv, char **env) {
54   NSAutoreleasePool *pool;
55   int res;
56   
57   pool = [NSAutoreleasePool new];
58 #if LIB_FOUNDATION_LIBRARY  
59   [NSProcessInfo initializeWithArguments:argv count:argc environment:env];
60 #endif
61   
62   res = runIt([[NSProcessInfo processInfo] argumentsWithoutDefaults]);
63
64   [pool release];
65   return res;
66 }