File: LocalStore.m

package info (click to toggle)
pantomime 1.1.2-3
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 2,224 kB
  • ctags: 389
  • sloc: objc: 15,433; ansic: 2,843; makefile: 75; sh: 4
file content (840 lines) | stat: -rw-r--r-- 21,063 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
/*
**  LocalStore.m
**
**  Copyright (c) 2001, 2002, 2003
**
**  Author: Ludovic Marcotte <ludovic@Sophos.ca>
**
**  This library is free software; you can redistribute it and/or
**  modify it under the terms of the GNU Lesser General Public
**  License as published by the Free Software Foundation; either
**  version 2.1 of the License, or (at your option) any later version.
**  
**  This library is distributed in the hope that it will be useful,
**  but WITHOUT ANY WARRANTY; without even the implied warranty of
**  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
**  Lesser General Public License for more details.
**  
**  You should have received a copy of the GNU Lesser General Public
**  License along with this library; if not, write to the Free Software
**  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/

#include <Pantomime/LocalStore.h>

#include <Pantomime/Constants.h>
#include <Pantomime/LocalFolder.h>
#include <Pantomime/URLName.h>

#include <Foundation/NSAutoreleasePool.h>
#include <Foundation/NSPathUtilities.h>
#include <Foundation/NSValue.h>

@implementation LocalStore

//
//
//
- (void) dealloc
{
  RELEASE(path);
  RELEASE(folders);
  RELEASE(fileManager);
  RELEASE(folderArray);
  
  [super dealloc];
}


//
//
//
- (id) initWithPathToDirectory: (NSString *) thePath
{
  BOOL isDirectory;
  
  self = [super init];
  
  [self setPath: thePath];
  
  // We initialize our cache of opened folders
  folders = [[NSMutableDictionary alloc] init];
  // Create an array to cache our folder structure
  folderArray = [[NSMutableArray alloc] initWithArray:
	  [[fileManager enumeratorAtPath:
		  [self path]] allObjects]];
  
   
  fileManager = [NSFileManager defaultManager];
  RETAIN(fileManager);
  
  if ( [fileManager fileExistsAtPath: [self path]
		    isDirectory: &isDirectory] )
    {
      if ( !isDirectory )
	{
	  AUTORELEASE(self);
	  return nil;
	}
    }
  else
    {
      AUTORELEASE(self);
      return nil;
    }

  // Just before returning, we finally enforce our file attributes
  [self _enforceFileAttributes];


  return self;
}


//
//
//
- (id) initWithURL: (NSString *) theURL;
{
  URLName *aURLName;

  aURLName = [[URLName alloc] initWithString: theURL];
  
  self = [self initWithPathToDirectory: [aURLName path]];

  RELEASE(aURLName);
  
  return self;
}


//
// This method will open automatically Inbox (case-insensitive).
// It may return nil if the opening failed or Inbox wasn't found.
//
- (id) defaultFolder
{
  return [self folderForName: @"Inbox"];
}


//
// This method is used to open the folder theName in the current
// directory of this local store.
//
- (id) folderForName: (NSString *) theName
{
  NSEnumerator *anEnumerator;
  NSString *aString;
  Folder *cachedFolder;

  anEnumerator = [self folderEnumerator];
  cachedFolder = [folders objectForKey: theName];
  
  if ( [self folderForNameIsOpen: theName] )
    {
      return nil;
    }
  
  if ( !cachedFolder )
    {
      while ( (aString = [anEnumerator nextObject]) )
	{
	  if ( [aString compare: theName] == NSOrderedSame )
	    {
	      LocalFolder *aFolder;

		  aFolder = [[LocalFolder alloc] initWithPathToFile:
					       [NSString stringWithFormat:@"%@/%@",
							 [self path], aString]];

	      if ( aFolder )
		{
		  [aFolder setStore: (Store *)self];
		  [aFolder setName: theName];
		  [aFolder parse];

		  // We now cache it and return it
		  [folders setObject: AUTORELEASE(aFolder)
			   forKey: theName];
		}

	      return aFolder;
	    }
	}
      
      return nil; // Never reached?
    }
  else
    {
	  return cachedFolder;
    }
}


//
//
//
- (id) folderForURL: (NSString *) theURL;
{
  URLName *urlName;
  id aFolder;

  urlName = [[URLName alloc] initWithString: theURL];

  aFolder = [self folderForName: [urlName foldername]];

  RELEASE(urlName);
  
  return aFolder;
}


//
// This method returns the list of folders contained in 
// a specific directory. It'll currently ignore some things
// like Netscape Mail's summary files and Pantomime's local
// cache files.
//
- (NSEnumerator *) folderEnumerator
{
  if ( [folderArray count] > 0 )
    {
      return [folderArray objectEnumerator];
    }

  return [self _rebuildFolderEnumerator];
}


//
//
//
- (NSEnumerator *) subscribedFolderEnumerator
{
  return [self folderEnumerator];
}


//
//
//
- (NSString *) path
{
  return path;
}


//
//
//
- (void) setPath: (NSString *) thePath
{
  RETAIN(thePath);
  RELEASE(path);
  path = thePath;
}


//
//
//
- (void) close
{
  NSEnumerator *anEnumerator;
  LocalFolder *aFolder;

  anEnumerator = [self openedFoldersEnumerator];
  
  while ( (aFolder = [anEnumerator nextObject]) )
    {
      [aFolder close];
    }
}


//
//
//
- (NSEnumerator *) openedFoldersEnumerator
{
  return [folders objectEnumerator];
}


//
//
//
- (void) removeFolderFromOpenedFolders: (Folder *) theFolder
{
  [folders removeObjectForKey: [(LocalFolder *)theFolder name]];
}


//
//
//
- (BOOL) folderForNameIsOpen: (NSString *) theName
{
  NSEnumerator *anEnumerator;
  LocalFolder *aFolder;
  
  anEnumerator = [self openedFoldersEnumerator];

  while ( (aFolder = [anEnumerator nextObject]) )
    {
      if ( [[aFolder name] compare: theName] == NSOrderedSame)
	{
	  return YES;
	}
    }

  return NO;
}


//
//
//
- (int) folderTypeForFolderName: (NSString *) theName
{
  NSString *aString;
  BOOL isDir;

  aString = [NSString stringWithFormat: @"%@/%@", [self path], theName];
  
  [[NSFileManager defaultManager] fileExistsAtPath: aString
				  isDirectory: &isDir];
  
  if ( isDir )
    {
      // This could be a maildir store. Check for maildir specific subfolders.
      aString = [NSString stringWithFormat: @"%@/%@/cur", [self path], theName];
      
      if ( [[NSFileManager defaultManager] fileExistsAtPath: aString
					   isDirectory: &isDir] && isDir )
	{
	  return PantomimeHoldsMessages;
	}
      else
	{
	  return PantomimeHoldsFolders;
	}
    }

  return PantomimeHoldsMessages;
}


//
//
//
- (NSString *) folderSeparator
{
  return @"/";
}


//
// theName must be the full path of the mailbox.
//
// Returns YES on success. NO otherwise.
//
- (BOOL) createFolderWithName: (NSString *) theName 
			 type: (int) theType
		     contents: (NSData *) theContents
{
  NSString *aName, *pathToFile;
  BOOL aBOOL, isDir;

  NSFileManager *aFileManager;
  NSEnumerator *anEnumerator;

  aFileManager = [NSFileManager defaultManager];
  anEnumerator = [self folderEnumerator];
  
  pathToFile = [NSString stringWithFormat: @"%@/%@", [self path], theName];
  pathToFile = [pathToFile substringToIndex: ([pathToFile length] - [[pathToFile lastPathComponent] length] - 1)];
  
  // We verify if the folder with that name does already exist
  while ( (aName = [anEnumerator nextObject]) )
    {
      if ([aName compare: theName
		 options: NSCaseInsensitiveSearch] == NSOrderedSame)
	{
	  return NO;
	}
    }
  
  // Ok, the folder doesn't already exist.
  // Check if we want to create a simple folder/directory.
  if (theType == MAILBOX_FORMAT_FOLDER)
    {
      NSString *aString;

      aString = [NSString stringWithFormat: @"%@/%@", [self path], theName];
      aBOOL = [aFileManager createDirectoryAtPath: aString  attributes: nil];
      
      if ( aBOOL )
	{
	  [self enforceMode: 0700  atPath: aString];
	  
	  // rebuild the folder list
	  [self _rebuildFolderEnumerator];
	}

      return aBOOL;
    }
  
  aBOOL = NO;

  // We want to create a mailbox store; check if it already exists.
  if ( [aFileManager fileExistsAtPath: pathToFile
		     isDirectory: &isDir] )
    {
      int size;
      
      size = [[[aFileManager fileAttributesAtPath: pathToFile
			     traverseLink: NO] objectForKey: NSFileSize] intValue];

      // If we got an empty file or simply a directory...
      if ( size == 0 || isDir )
	{
	  NSString *aString;
	  
	  // If the size is 0, that means we have an empty file. We first convert this
	  // file to a directory.
	  if ( size == 0 )
	    {
	      [aFileManager removeFileAtPath: pathToFile  handler: nil];
	      [aFileManager createDirectoryAtPath: pathToFile  attributes: nil];
	    }
	  
	  // We can now proceed with the creation of our store.
	  // Check the type of store we want to create
	  switch (theType)
	    {
	    case MAILBOX_FORMAT_MAILDIR:
	      // Create the main maildir directory
	      aString = [NSString stringWithFormat: @"%@/%@", [self path], theName];  
	      aBOOL = [aFileManager createDirectoryAtPath: aString  attributes: nil];
	      [self enforceMode: 0700  atPath: aString];
								    
	      // Now create the cur, new, and tmp sub-directories.
	      aString = [NSString stringWithFormat: @"%@/%@/cur", [self path], theName];
	      aBOOL = aBOOL & [aFileManager createDirectoryAtPath: aString  attributes: nil];
	      [self enforceMode: 0700  atPath: aString];
	      
	      // new
	      aString = [NSString stringWithFormat: @"%@/%@/new", [self path], theName];
	      aBOOL = aBOOL & [aFileManager createDirectoryAtPath: aString  attributes: nil];
	      [self enforceMode: 0700  atPath: aString];

	      // tmp
	      aString = [NSString stringWithFormat: @"%@/%@/tmp", [self path], theName];
	      aBOOL = aBOOL & [aFileManager createDirectoryAtPath: aString  attributes: nil];
	      [self enforceMode: 0700  atPath: aString];
	      break;
	      
	    case MAILBOX_FORMAT_MBOX:
	    default:
	      aBOOL = [aFileManager createFileAtPath: [NSString stringWithFormat: @"%@/%@",
								[self path], theName]
				    contents: theContents
				    attributes: nil ];
	      
	      // We now enforce the mode (0600) on this new mailbox
	      [self enforceMode: 0600
		    atPath: [NSString stringWithFormat: @"%@/%@", [self path], theName]];
	      break;				  
	    }
	  
	  // rebuild the folder list
	  [self _rebuildFolderEnumerator];
	}
      else
	{
	  aBOOL = NO;
	}
    }
	      
  return aBOOL;
}


//
// theName must be the full path of the mailbox.
//
// Returns YES on success. NO otherwise.
//
- (BOOL) deleteFolderWithName: (NSString *) theName
{
  NSFileManager *aFileManager;
  BOOL aBOOL, isDir;
  
  aFileManager = [NSFileManager defaultManager];
  aBOOL = NO;

  if ( [aFileManager fileExistsAtPath: [NSString stringWithFormat: @"%@/%@", [self path], theName]
		     isDirectory: &isDir] )
    {
      if ( isDir )
	{
	  NSEnumerator *theEnumerator;
	  NSArray *theEntries, *dirContents;
	  
	  theEnumerator = [aFileManager enumeratorAtPath: [NSString stringWithFormat: @"%@/%@",
								    [self path], theName]];
	  
	  // FIXME - Verify the Store's path.
	  // If it doesn't contain any mailboxes and it's actually not or Store's path, we remove it.
	  theEntries = [theEnumerator allObjects];
	  dirContents = [aFileManager directoryContentsAtPath: [NSString stringWithFormat: @"%@/%@",
								    [self path], theName]];
	  if ( [theEntries count] == 0 )
	    {
	      aBOOL = [aFileManager removeFileAtPath: [NSString stringWithFormat: @"%@/%@",
							       [self path], theName]
				   handler: nil];
	      
	      // Rebuild the folder tree
	      if(aBOOL == YES)
		  [self _rebuildFolderEnumerator];

	      return (aBOOL);

	    }
	  // We could also be trying to delete a maildir mailbox which
	  // has a directory structure with 3 sub-directories: cur, new, tmp
	  else if ( [aFileManager fileExistsAtPath: [NSString stringWithFormat: @"%@/%@/cur", [self path], theName]
		     isDirectory: &isDir])
	    {
	      // Make sure that these are the maildir directories and not something else.
	      if ( ![aFileManager fileExistsAtPath: [NSString stringWithFormat: @"%@/%@/new", [self path], theName]
				  isDirectory: &isDir] )
		{
		  return NO;
		}
	      if ( ![aFileManager fileExistsAtPath: [NSString stringWithFormat: @"%@/%@/tmp", [self path], theName]
				  isDirectory: &isDir] )
		{
		  return NO;
		}
	    }
	  else
	    {
	      return NO;
	    }
	}

      // We remove the mbox or maildir store
      aBOOL = [aFileManager removeFileAtPath: [NSString stringWithFormat: @"%@/%@",
							[self path], theName]
			    handler: nil];
      
      // We remove the cache, if the store deletion was successful
      if ( aBOOL )
	{
	  NSString *aString;

	  aString = [theName lastPathComponent];
	  
	  [[NSFileManager defaultManager] removeFileAtPath: [NSString stringWithFormat: @"%@/%@.%@.cache",
								      [self path],
								      [theName substringToIndex:
										 ([theName length] - [aString length])],
								      aString]
					  handler: nil];
	}

	  // Rebuild the folder tree
	  [self _rebuildFolderEnumerator];
    }
  
  return aBOOL;
}


//
// theName and theNewName MUST be the full path of those mailboxes.
//
// Returns YES on success. NO otherwise.
//
- (BOOL) renameFolderWithName: (NSString *) theName
                       toName: (NSString *) theNewName
{
  NSFileManager *aFileManager;
  BOOL aBOOL, isDir;
  
  aFileManager = [NSFileManager defaultManager];
  aBOOL = NO;

  // We verify if the destination path exists. If it does, we abort the rename operation
  // since we don't want to overwrite the folder.
  if ( [aFileManager fileExistsAtPath: [NSString stringWithFormat: @"%@/%@", [self path], theNewName]] )
    {
      return NO;
    }

  // We verify if the source path is valid
  if ( [aFileManager fileExistsAtPath: [NSString stringWithFormat: @"%@/%@", [self path], theName]
		     isDirectory: &isDir] )
    {
      if ( isDir )
	{
	  NSEnumerator *theEnumerator;
	  NSArray *theEntries;
	  
	  theEnumerator = [aFileManager enumeratorAtPath: [NSString stringWithFormat: @"%@/%@",
								    [self path], theName]];
	  
	  // FIXME - Verify the Store's path.
	  // If it doesn't contain any mailboxes and it's actually not or Store's path, we rename it.
	  theEntries = [theEnumerator allObjects];
	  
	  if ( [theEntries count] == 0 )
	    {
	      return [aFileManager movePath: [NSString stringWithFormat: @"%@/%@",[self path], theName]
				   toPath:  [NSString stringWithFormat: @"%@/%@",  [self path], theNewName]
				   handler: nil];
	    }
	  // We could also be trying to delete a maildir mailbox which
	  // has a directory structure with 3 sub-directories: cur, new, tmp
	  else if ( [aFileManager fileExistsAtPath: [NSString stringWithFormat: @"%@/%@/cur", [self path], theName]
				  isDirectory: &isDir])
	    {
	      // Make sure that these are the maildir directories and not something else.
	      if ( ![aFileManager fileExistsAtPath: [NSString stringWithFormat: @"%@/%@/new", [self path], theName]
				  isDirectory: &isDir] )
		{
		  return NO;
		}
	      if ( ![aFileManager fileExistsAtPath: [NSString stringWithFormat: @"%@/%@/tmp", [self path], theName]
				  isDirectory: &isDir] )
		{
		  return NO;
		}
	  }
	  else
	    {
	      return NO;
	    }
	}
      
      // We rename the mail store
      aBOOL = [aFileManager movePath: [NSString stringWithFormat: @"%@/%@", [self path], theName]
			    toPath: [NSString stringWithFormat: @"%@/%@", [self path], theNewName]
			    handler: nil];
      
      // We remove the cache, if the store rename was successful
      if ( aBOOL )
	{
	  NSString *str1, *str2;

	  str1 = [theName lastPathComponent];
	  str2 = [theNewName lastPathComponent];
	  
	  [[NSFileManager defaultManager] movePath: [NSString stringWithFormat: @"%@/%@.%@.cache",
							      [self path],
							      [theName substringToIndex:
									 ([theName length] - [str1 length])],
							      str1]
					  toPath: [NSString stringWithFormat: @"%@/%@.%@.cache",
							    [self path],
							    [theNewName substringToIndex:
									  ([theNewName length] - [str2 length])],
							    str2]
					  handler: nil];
	}
      
      // Rebuild the folder tree
      [self _rebuildFolderEnumerator];
    }
  
  return aBOOL;
}


//
//
//
- (void) enforceMode: (unsigned long) theMode
	      atPath: (NSString *) thePath

{
  NSMutableDictionary *currentFileAttributes;
  
  unsigned long current_attributes, desired_attributes;
  
  
  currentFileAttributes = [[NSMutableDictionary alloc] initWithDictionary: [fileManager fileAttributesAtPath: thePath
											traverseLink: YES]];
  
  current_attributes = [currentFileAttributes filePosixPermissions];
  desired_attributes = theMode;
  
  if ( current_attributes != desired_attributes )
    {
      [currentFileAttributes setObject: [NSNumber numberWithUnsignedLong: desired_attributes]
			     forKey: NSFilePosixPermissions];
      
      [fileManager changeFileAttributes: currentFileAttributes
		   atPath: thePath];
    }

  RELEASE(currentFileAttributes);
}


//
//
//
- (BOOL) isConnected
{
  return YES;
}

@end


//
// Private interface
//
@implementation LocalStore (Private)

- (void) _enforceFileAttributes
{
  NSEnumerator *anEnumerator;
  NSAutoreleasePool *pool;
  NSString *aString;

  pool = [[NSAutoreleasePool alloc] init];

  //
  // We verify if our Store path's mode is 0700
  //
  [self enforceMode: 0700  atPath: [self path]];
  
  //
  // We ensure that all subdirectories are using mode 0700 and files are using mode 0600
  //
  anEnumerator = [self folderEnumerator];

  while ( (aString = [anEnumerator nextObject]) )
    {
      BOOL isDir;
      
      aString = [NSString stringWithFormat: @"%@/%@", [self path], aString];
      
      if ( [fileManager fileExistsAtPath: aString
			isDirectory: &isDir] )
	{
	  if ( isDir )
	    {
	      [self enforceMode: 0700
		    atPath: aString];
	    }
	  else
	    {
	      [self enforceMode: 0600
		    atPath: aString];
	    }
	}
    } 
 
  RELEASE(pool);
}


//
// Rebuild the folder hierarchy
//
- (NSEnumerator *) _rebuildFolderEnumerator
{
  NSString *aString, *lastPathComponent, *pathToFolder;	
  NSEnumerator *tmpEnumerator;
  NSArray *tmpArray;
  int i;
  
  // Clear out our cached folder structure and refresh from the file system
  [folderArray removeAllObjects];
  [folderArray setArray: [[fileManager enumeratorAtPath: [self path]] allObjects]];
  
  //
  // We iterate through our array. If mbox A and .A.summary (or .A.cache) exists, we
  // remove .A.summary (or .A.cache) from our mutable array.
  // We do this in two runs:
  // First run: remove maildir sub-directory structure so that is appears as a regular folder.
  // Second run: remove other stuff like *.cache, *.summary
  //
  for (i = 0; i< [folderArray count]; i++)
    {
      BOOL bIsMailDir;
      
      aString = [folderArray objectAtIndex: i];
      
      lastPathComponent = [aString lastPathComponent];
      pathToFolder = [aString substringToIndex: ([aString length] - [lastPathComponent length])];
    
      //
      // First run:
      // If this is a maildir directory, remove its sub-directory structure from the list,
      // so that the maildir store appears just like a regular mail store.
      //
      if ( [[NSFileManager defaultManager] fileExistsAtPath: [NSString stringWithFormat: @"%@/%@/cur", 
								       [self path], aString] 
					   isDirectory: &bIsMailDir] && bIsMailDir )
	{
	  NSDirectoryEnumerator *maildirEnumerator;
	  NSArray *subpaths;
	
	  // Wust ensure 700 mode un cur/new/tmp folders and 600 on all files (ie., messages)
	  [self enforceMode: 0700
		atPath: [NSString stringWithFormat: @"%@/%@/cur", [self path], aString]];

	  [self enforceMode: 0700
		atPath: [NSString stringWithFormat: @"%@/%@/new", [self path], aString]];
	  
	  [self enforceMode: 0700
		atPath: [NSString stringWithFormat: @"%@/%@/tmp", [self path], aString]];
	  
	  
	  // Get all the children of this directory an remove them from our mutable array.
	  maildirEnumerator = [[NSFileManager defaultManager] enumeratorAtPath: 
								[NSString stringWithFormat: @"%@/%@", 
									  [self path], aString]];
	  
	  subpaths = [[NSFileManager defaultManager] subpathsAtPath: [NSString stringWithFormat: @"%@/%@", 
									       [self path], aString]];
	  [folderArray removeObjectsInRange: NSMakeRange(i+1,[subpaths count])];
	}
    }
  
  //
  // Second Run: Get rid of cache, summary and OS specific stuff
  //
  tmpArray = [[NSArray alloc] initWithArray: folderArray];
  AUTORELEASE(tmpArray);
  tmpEnumerator = [tmpArray objectEnumerator];
  
  while ( (aString = [tmpEnumerator nextObject]) )
    {
      lastPathComponent = [aString lastPathComponent];
      pathToFolder = [aString substringToIndex: ([aString length] - [lastPathComponent length])];
      
      // We remove Netscape/Mozilla summary file.
      [folderArray removeObject: [NSString stringWithFormat: @"%@.%@.summary", pathToFolder, lastPathComponent]];
      
      // We remove Pantomime's cache file. Before doing so, we ensure it's 600 mode.
      [folderArray removeObject: [NSString stringWithFormat: @"%@.%@.cache", pathToFolder, lastPathComponent]];
      [self enforceMode: 0600
	    atPath: [NSString stringWithFormat: @"%@/%@.%@.cache", [self path], pathToFolder, lastPathComponent]];

      // We also remove Apple Mac OS X .DS_Store directory
      [folderArray removeObject: [NSString stringWithFormat: @"%@.DS_Store", pathToFolder]];
    }
  
  return [folderArray objectEnumerator];
}

@end