Monotone-Parent: 06d8a080e505b11bad76b3afa0c1ffa5aa02bc23

Monotone-Revision: 3823bd3cc970f67d1d304545984ce01cc2c32ac6

Monotone-Author: wsourdeau@inverse.ca
Monotone-Date: 2009-12-23T18:32:42
Monotone-Branch: ca.inverse.sogo
This commit is contained in:
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> 2009-12-22 Ludovic Marcotte <lmarcotte@inverse.ca>
* Removed all the Kolab-related stuff (more specifically, * Removed all the Kolab-related stuff (more specifically,
@ -5,13 +11,13 @@
* Removed all references to "anais" stuff. * 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 we check if we aren't in the Trash folder already before try to
copy over deleted messages. copy over deleted messages.
* We now offer a way to delete events from the context menu * We now offer a way to delete events from the context menu
in all calendar views. in all calendar views.
2009-12-22 Francis Lachapelle <flachapelle@inverse.ca> 2009-12-22 Francis Lachapelle <flachapelle@inverse.ca>
* UI/Scheduler/UIxAppointmentEditor.m (-viewAction): added * UI/Scheduler/UIxAppointmentEditor.m (-viewAction): added

View file

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

View file

@ -87,27 +87,6 @@ static NSString *sieveScriptName = @"sogo";
ASSIGN (accountName, newAccountName); 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 */ /* listing the available folders */
- (BOOL) isInDraftsFolder - (BOOL) isInDraftsFolder