Automatically create top-level localfolder for Maildirs

this is the folder Maildirs will put messages in.

Closes: #286967
This commit is contained in:
John Goerzen 2008-03-27 16:19:35 -05:00
parent 7a70878ed6
commit 3af221f99b

View File

@ -35,6 +35,10 @@ class MaildirRepository(BaseRepository):
self.debug("MaildirRepository initialized, sep is " + repr(self.getsep()))
self.folder_atimes = []
# Create the top-level folder if it doesn't exist
if not os.path.isdir(self.root):
os.mkdir(self.root, 0700)
def _append_folder_atimes(self, foldername):
p = os.path.join(self.root, foldername)
new = os.path.join(p, 'new')