Monotone-Parent: 8f2b7fc90c85fe7414dd5c77432371c787e3fa59

Monotone-Revision: b11954fb755f22c4ffa2960406dac80c1cf087d4

Monotone-Author: wsourdeau@inverse.ca
Monotone-Date: 2007-05-29T13:57:14
Monotone-Branch: ca.inverse.sogo
This commit is contained in:
Wolfgang Sourdeau
2007-05-29 13:57:14 +00:00
parent bfb7beda53
commit bf6eb3e8f6
2 changed files with 5 additions and 23 deletions

View File

@@ -1,3 +1,8 @@
2007-05-29 Wolfgang Sourdeau <wsourdeau@inverse.ca>
* SoObjects/Mailer/SOGoMailFolder.m ([SOGoMailFolder
-primaryFetchMailboxInfo]): useless method. Removed.
2007-05-28 Wolfgang Sourdeau <wsourdeau@inverse.ca>
* SoObjects/Mailer/SOGoMailFolder.m ([SOGoMailFolder

View File

@@ -157,24 +157,6 @@ static BOOL useAltNamespace = NO;
return [ds autorelease];
}
/* mailbox raw ops */
- (NSException *) primaryFetchMailboxInfo
{
/* returns nil if fetch was successful */
id info;
if (selectInfo != nil)
return nil; /* select info exists, => no error */
info = [[self imap4Connection] infoForMailboxAtURL:[self imap4URL]];
if ([info isKindOfClass:[NSException class]])
return info;
selectInfo = [info retain];
return nil; /* no error */
}
/* messages */
- (NSArray *) fetchUIDsMatchingQualifier: (id) _q
@@ -615,9 +597,4 @@ static BOOL useAltNamespace = NO;
return owner;
}
- (BOOL) hasSupportForDefaultRoles
{
return YES;
}
@end /* SOGoMailFolder */