- Timestamp:
- 12/10/06 03:31:45 (2 years ago)
- Location:
- trunk/turbomail
- Files:
-
- 3 modified
-
__init__.py (modified) (1 diff)
-
message.py (modified) (1 diff)
-
release.py (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/turbomail/__init__.py
r1 r2 277 277 smptfrom as a message property. Thanks James! 278 278 279 More patches are welcome! 279 Version 2.0.3 280 ------------- 281 - The plain and rich properties of the Message class can now 282 be callables, executed at delivery-time. 280 283 281 284 @var _queue: After TurboGears startup within an application which has -
trunk/turbomail/message.py
r1 r2 227 227 Charset.add_charset('utf-8', Charset.SHORTEST, Charset.QP, 'utf-8') 228 228 self.encoding = 'utf-8' 229 230 if callable(self.plain): 231 self.plain = self.plain() 232 233 if callable(self.rich): 234 self.rich = self.rich() 229 235 230 236 if self.rich and not self.plain: -
trunk/turbomail/release.py
r1 r2 3 3 """Release information about the Turbo-Mail mail queue.""" 4 4 5 version = "2.0. 2"5 version = "2.0.3" 6 6 description = "Multi-threaded mail queue manager for TurboGears applications." 7 7 author = "Top Floor Computer Systems Ltd."
