Fixing up the rest of the parsing and IMAP functions, and GMAIL classes as well. Also adding is_debugging() to the UI to allow us to quickly determine if we should build some of the expensive debug objects
This commit is contained in:
@ -259,7 +259,7 @@ class MaildirFolder(BaseFolder):
|
||||
filename = self.messagelist[uid]['filename']
|
||||
filepath = os.path.join(self.getfullname(), filename)
|
||||
fd = open(filepath, 'rb')
|
||||
retval = self.parse['8bit'](fd)
|
||||
retval = self.parser['8bit'].parse(fd)
|
||||
fd.close()
|
||||
return retval
|
||||
|
||||
|
Reference in New Issue
Block a user