]> err.no Git - scalable-opengroupware.org/commitdiff
fixed bug
authorhelge <helge@d1b88da0-ebda-0310-925b-ed51d893ca5b>
Wed, 27 Oct 2004 20:27:25 +0000 (20:27 +0000)
committerhelge <helge@d1b88da0-ebda-0310-925b-ed51d893ca5b>
Wed, 27 Oct 2004 20:27:25 +0000 (20:27 +0000)
git-svn-id: http://svn.opengroupware.org/SOGo/trunk@437 d1b88da0-ebda-0310-925b-ed51d893ca5b

SOGo/SoObjects/Mailer/SOGoMailManager.m

index f565be8ac24193e3687936ca138ba9de3f0f04c8..e0660ba3cc9d6c7ef394b7ff601587cd0efdad47 100644 (file)
@@ -47,7 +47,7 @@ static NSString       *imap4Separator  = nil;
   imap4Separator = [[ud stringForKey:@"SOGoIMAP4StringSeparator"] copy];
   if ([imap4Separator length] == 0)
     imap4Separator = @"/";
-  NSLog(@"Note: using '%@' as the IMAP4 folder separator.");
+  NSLog(@"Note: using '%@' as the IMAP4 folder separator.", imap4Separator);
 }
 
 + (id)defaultMailManager {
@@ -239,6 +239,7 @@ static NSString       *imap4Separator  = nil;
 - (NSString *)imap4FolderNameForURL:(NSURL *)_url removeFileName:(BOOL)_delfn {
   /* a bit hackish, but should be OK */
   NSString *folderName;
+  NSArray  *names;
 
   if (_url == nil)
     return nil;
@@ -251,8 +252,8 @@ static NSString       *imap4Separator  = nil;
 
   if (_delfn) folderName = [folderName stringByDeletingLastPathComponent];
   
-  return [[folderName pathComponents] componentsJoinedByString:
-                                       [self imap4Separator]];
+  names = [folderName pathComponents];
+  return [names componentsJoinedByString:[self imap4Separator]];
 }
 - (NSString *)imap4FolderNameForURL:(NSURL *)_url {
   return [self imap4FolderNameForURL:_url removeFileName:NO];