Monotone-Parent: 06d8a080e505b11bad76b3afa0c1ffa5aa02bc23

Monotone-Revision: 3823bd3cc970f67d1d304545984ce01cc2c32ac6

Monotone-Author: wsourdeau@inverse.ca
Monotone-Date: 2009-12-23T18:32:42
Monotone-Branch: ca.inverse.sogo
maint-2.0.2
Wolfgang Sourdeau 2009-12-23 18:32:42 +00:00
parent 8de7496f55
commit 1add40c6ff
3 changed files with 8 additions and 28 deletions

View File

@ -1,3 +1,9 @@
2009-12-23 Wolfgang Sourdeau <wsourdeau@inverse.ca>
* SoObjects/Mailer/SOGoMailAccount.m (-isSharedAccount): removed
useless method.
(-sharedAccountName): removed useless method.
2009-12-22 Ludovic Marcotte <lmarcotte@inverse.ca>
* Removed all the Kolab-related stuff (more specifically,
@ -5,13 +11,13 @@
* Removed all references to "anais" stuff.
* SoObjects/Mailer/SOGoMailFoder.m (-deleteUIDs:inContext:):
* SoObjects/Mailer/SOGoMailFolder.m (-deleteUIDs:inContext:):
we check if we aren't in the Trash folder already before try to
copy over deleted messages.
* We now offer a way to delete events from the context menu
in all calendar views.
2009-12-22 Francis Lachapelle <flachapelle@inverse.ca>
* UI/Scheduler/UIxAppointmentEditor.m (-viewAction): added

View File

@ -70,11 +70,6 @@ typedef enum {
- (NSArray *) allFolderPaths;
- (BOOL) isInDraftsFolder;
/* shared accounts */
- (BOOL) isSharedAccount;
- (NSString *) sharedAccountName;
/* special folders */
- (NSString *) inboxFolderNameInContext: (id)_ctx;

View File

@ -87,27 +87,6 @@ static NSString *sieveScriptName = @"sogo";
ASSIGN (accountName, newAccountName);
}
/* shared accounts */
- (BOOL) isSharedAccount
{
NSString *s;
NSRange r;
s = accountName;
r = [s rangeOfString:@"@"];
if (r.length == 0) /* regular HTTP logins are never a shared mailbox */
return NO;
s = [s substringToIndex:r.location];
return [s rangeOfString:@".-."].length > 0 ? YES : NO;
}
- (NSString *) sharedAccountName
{
return nil;
}
/* listing the available folders */
- (BOOL) isInDraftsFolder