2 Copyright (C) 2005 SKYRIX Software AG
4 This file is part of OpenGroupware.org.
6 OGo 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
11 OGo 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.
16 You should have received a copy of the GNU Lesser General Public
17 License along with OGo; see the file COPYING. If not, write to the
18 Free Software Foundation, 59 Temple Place - Suite 330, Boston, MA
22 #include "AgenorUserManager.h"
25 static void usage(NSArray *args) {
26 fprintf(stderr, "usage: %s <email1> <email2> <email3>\n",
27 [[args objectAtIndex:0] cString]);
30 static void doIt(NSArray *args) {
31 AgenorUserManager *userManager;
35 if ([args count] < 2) {
40 userManager = [AgenorUserManager sharedUserManager];
42 e = [args objectEnumerator];
43 [e nextObject]; /* consume the command name */
45 while ((email = [e nextObject]) != nil) {
48 uid = [userManager getUIDForEmail:email];
51 printf("%s: %s\n", [email cString], [uid cString]);
53 fprintf(stderr, "ERROR: did not find uid for email: '%s'\n",
59 int main(int argc, char **argv, char **env) {
60 NSAutoreleasePool *pool;
62 pool = [[NSAutoreleasePool alloc] init];
63 #if LIB_FOUNDATION_LIBRARY
64 [NSProcessInfo initializeWithArguments:argv count:argc environment:env];
67 doIt([[NSProcessInfo processInfo] argumentsWithoutDefaults]);