mirror of
https://github.com/inverse-inc/sogo.git
synced 2026-09-08 23:18:00 +00:00
Monotone-Parent: ce39eb6f5a242085594929c2c6842540ff88d319
Monotone-Revision: d7b615d5687e4c138413b9ed635b046e284d5e5b Monotone-Author: wsourdeau@inverse.ca Monotone-Date: 2008-02-08T15:35:11 Monotone-Branch: ca.inverse.sogo
This commit is contained in:
@@ -19,6 +19,9 @@
|
||||
02111-1307, USA.
|
||||
*/
|
||||
|
||||
#import <Foundation/NSCharacterSet.h>
|
||||
#import <Foundation/NSString.h>
|
||||
|
||||
#import <NGObjWeb/SoObject+SoDAV.h>
|
||||
#import <NGExtensions/NSNull+misc.h>
|
||||
#import <NGExtensions/NSObject+Logs.h>
|
||||
@@ -205,18 +208,15 @@ static BOOL debugOn = YES;
|
||||
|
||||
/* IMAP4 names */
|
||||
|
||||
- (BOOL)isBodyPartKey:(NSString *)_key inContext:(id)_ctx {
|
||||
/*
|
||||
Every key starting with a digit is considered an IMAP4 mime part key, used in
|
||||
SOGoMailObject and SOGoMailBodyPart.
|
||||
*/
|
||||
if ([_key length] == 0)
|
||||
return NO;
|
||||
|
||||
if (isdigit([_key characterAtIndex:0]))
|
||||
return YES;
|
||||
|
||||
return NO;
|
||||
#warning we could improve this by simply testing if the reference is the filename of an attachment or if the body part mentionned actually exists in the list of body parts. Another way is to use a prefix such as "attachment-*" to declare attachments.
|
||||
- (BOOL) isBodyPartKey: (NSString *) key
|
||||
{
|
||||
NSString *trimmedKey;
|
||||
|
||||
trimmedKey = [key stringByTrimmingCharactersInSet:
|
||||
[NSCharacterSet decimalDigitCharacterSet]];
|
||||
|
||||
return (![trimmedKey length]);
|
||||
}
|
||||
|
||||
- (NSArray *) aclsForUser: (NSString *) uid
|
||||
|
||||
Reference in New Issue
Block a user