Show
Ignore:
Timestamp:
10/18/07 01:15:41 (1 year ago)
Author:
amcgregor
Message:

Lots of changes. Minor updates to the Message class, created the immediate manager and the debug provider, and created a sample extension, utf8qp.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • branches/3.0/turbomail/message.py

    r39 r40  
    119119                if not self._id or (self._processed and self._dirty): 
    120120                        self.__dict__['_id'] = str(uuid()) 
     121                        self._processed = False 
    121122                 
    122123                return self._id 
     
    137138                #if not self._dirty and self._processed: 
    138139                #       return self._mime 
    139  
     140                 
     141                self._processed = False 
     142                 
    140143                plain = MIMEText(self._callable(self.plain).encode(self.encoding), 'plain', self.encoding) 
    141144                rich = self.rich and MIMEText(self._callable(self.rich).encode(self.encoding), 'html', self.encoding) or None