From: helge Date: Mon, 11 Jul 2005 12:43:22 +0000 (+0000) Subject: removed some unused method X-Git-Url: https://err.no/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=0a0837313e88abb71416311c7a064bd38aea1598;p=scalable-opengroupware.org removed some unused method git-svn-id: http://svn.opengroupware.org/SOGo/trunk@711 d1b88da0-ebda-0310-925b-ed51d893ca5b --- diff --git a/SOGo/SoObjects/Mailer/ChangeLog b/SOGo/SoObjects/Mailer/ChangeLog index 6f7e8464..55ab6f5a 100644 --- a/SOGo/SoObjects/Mailer/ChangeLog +++ b/SOGo/SoObjects/Mailer/ChangeLog @@ -1,4 +1,6 @@ 2005-07-11 Helge Hess + + * SOGoMailBaseObject.[hm]: removed unused -imap4Client method (v0.9.97) * moved SOGoMailManager related API to NGImap4 (NGImap4Connection, NGImap4ConnectionManager, etc) (v0.9.96) @@ -17,15 +19,11 @@ * SOGoMailAccounts.m: use WOContext method from libSOGo to detect Internet access (v0.9.94) -2005-07-08 Helge Hess - * SOGoMailAccounts.m: only deliver share-names as subobjects if the request is not coming from the Internet. Ensure that limitation in -lookupName:. Can be enabled using SOGoInternetDetectQualifier just like in UIxMailEditor (v0.9.93) -2005-07-08 Helge Hess - * v0.9.92 * SOGoMailManager.m, SOGoMailConnectionEntry.m: added caching of @@ -40,30 +38,20 @@ (-addFlags:toAllMessagesInURL:password: for the manager, -addFlagsToAllMessages: for the SOGoFolder) (v0.9.91) -2005-07-07 Helge Hess - * added specific SOGoTrashFolder.m class (subclass of SOGoMailFolder) to allow hooking up a different UI (v0.9.90) -2005-07-07 Helge Hess - * SOGoMailAccounts.m: expose shared mailboxes retrieved via AgenorUserManager (aka LDAP) in -toManyRelationshipKeys (v0.9.89) -2005-07-07 Helge Hess - * SOGoMailObject.m: implemented -trashInContext: method (v0.9.88) 2005-07-06 Helge Hess * SOGoMailObject.m: prefetch pgp-signature parts (v0.9.87) -2005-07-06 Helge Hess - * SOGoMailObject.m: started -trash action (v0.9.86) -2005-07-06 Helge Hess - * v0.9.85 * SOGoMailFolder.m: added ability to check certain ACL permissions (and @@ -75,8 +63,6 @@ * SOGoMailManager.m: added methods to retrieve the ACL and the myrights from an IMAP4 mailbox -2005-07-06 Helge Hess - * SOGoMailManager.m: detect Cyrus 'permission denied' when changing flags and deliver a http-code 403 exception (v0.9.84) diff --git a/SOGo/SoObjects/Mailer/SOGoMailBaseObject.h b/SOGo/SoObjects/Mailer/SOGoMailBaseObject.h index 4731a928..7003b793 100644 --- a/SOGo/SoObjects/Mailer/SOGoMailBaseObject.h +++ b/SOGo/SoObjects/Mailer/SOGoMailBaseObject.h @@ -39,7 +39,7 @@ */ @class NSString, NSArray, NSURL; -@class NGImap4Client, NGImap4ConnectionManager, NGImap4Connection; +@class NGImap4ConnectionManager, NGImap4Connection; @class SOGoMailAccount; @interface SOGoMailBaseObject : SOGoObject @@ -59,7 +59,6 @@ - (NSURL *)imap4URL; - (NSString *)imap4Login; - (NSString *)imap4Password; -- (NGImap4Client *)imap4Client; - (void)flushMailCaches; diff --git a/SOGo/SoObjects/Mailer/SOGoMailBaseObject.m b/SOGo/SoObjects/Mailer/SOGoMailBaseObject.m index 270f471f..80d85398 100644 --- a/SOGo/SoObjects/Mailer/SOGoMailBaseObject.m +++ b/SOGo/SoObjects/Mailer/SOGoMailBaseObject.m @@ -133,15 +133,6 @@ static BOOL debugOn = YES; return [creds objectAtIndex:1]; /* the password */ } -- (NGImap4Client *)imap4ClientForURL:(NSURL *)_url password:(NSString *)_pwd { - return [[self mailManager] imap4ClientForURL:_url password:_pwd]; -} - -- (NGImap4Client *)imap4Client { - return [self imap4ClientForURL:[self imap4URL] - password:[self imap4Password]]; -} - - (void)flushMailCaches { [[self mailManager] flushCachesForURL:[self imap4URL]]; } diff --git a/SOGo/SoObjects/Mailer/Version b/SOGo/SoObjects/Mailer/Version index 1c3b6e33..1dc8c92c 100644 --- a/SOGo/SoObjects/Mailer/Version +++ b/SOGo/SoObjects/Mailer/Version @@ -1,6 +1,6 @@ # Version file -SUBMINOR_VERSION:=96 +SUBMINOR_VERSION:=97 # v0.9.96 requires libNGMime v4.5.223 # v0.9.91 requires libNGMime v4.5.222 diff --git a/SOGo/SoObjects/Sieve/ChangeLog b/SOGo/SoObjects/Sieve/ChangeLog index 924add86..05157bda 100644 --- a/SOGo/SoObjects/Sieve/ChangeLog +++ b/SOGo/SoObjects/Sieve/ChangeLog @@ -1,5 +1,8 @@ 2005-07-11 Helge Hess + * SOGoSieveBaseObject.[hm]: removed unused -imap4Client method + (v0.9.10) + * SOGoSieveBaseObject.m: updated to use new NGImap4 API (v0.9.9) 2005-02-10 Helge Hess diff --git a/SOGo/SoObjects/Sieve/SOGoSieveBaseObject.h b/SOGo/SoObjects/Sieve/SOGoSieveBaseObject.h index 35b75b66..40530b4c 100644 --- a/SOGo/SoObjects/Sieve/SOGoSieveBaseObject.h +++ b/SOGo/SoObjects/Sieve/SOGoSieveBaseObject.h @@ -31,7 +31,7 @@ */ @class NSString, NSArray, NSURL; -@class NGImap4Client, NGSieveClient; +@class NGSieveClient; @class NGImap4ConnectionManager; @class SOGoMailAccount; @@ -49,7 +49,6 @@ - (NGImap4ConnectionManager *)mailManager; - (NSURL *)imap4URL; - (NSString *)imap4Password; -- (NGImap4Client *)imap4Client; - (void)flushMailCaches; /* Sieve */ diff --git a/SOGo/SoObjects/Sieve/SOGoSieveBaseObject.m b/SOGo/SoObjects/Sieve/SOGoSieveBaseObject.m index 224199c6..1392b89e 100644 --- a/SOGo/SoObjects/Sieve/SOGoSieveBaseObject.m +++ b/SOGo/SoObjects/Sieve/SOGoSieveBaseObject.m @@ -60,10 +60,6 @@ return [[self mailAccountFolder] imap4Password]; } -- (NGImap4Client *)imap4Client { - return [[self mailAccountFolder] imap4Client]; -} - - (void)flushMailCaches { } diff --git a/SOGo/SoObjects/Sieve/Version b/SOGo/SoObjects/Sieve/Version index 0d642ced..fb0c6a81 100644 --- a/SOGo/SoObjects/Sieve/Version +++ b/SOGo/SoObjects/Sieve/Version @@ -1,6 +1,6 @@ # Version file -SUBMINOR_VERSION:=9 +SUBMINOR_VERSION:=10 # v0.9.9 requires libNGMime v4.5.223 # v0.9.6 requires libNGMime v4.5.207