Changeset 27
- Timestamp:
- 10/16/07 03:19:40 (1 year ago)
- Location:
- branches/2.0.5
- Files:
-
- 2 added
- 1 modified
-
tests/test_message_as_string.py (added)
-
tests/test_testmode.py (added)
-
turbomail/dispatch.py (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
branches/2.0.5/turbomail/dispatch.py
r24 r27 156 156 pack.update(packUpdate) 157 157 158 if not pack.has_key('to'): 159 pack['to'] = pack['recipients'] 160 158 161 if len(pack['to']) > 1: 159 162 pack.update(dict(addrto="- (%d)" % len(pack['to']))) … … 163 166 else: 164 167 pack.update(dict(addrto='- %s' % pack['to'][0])) 168 169 if not pack.has_key('subject'): 170 pack['subject'] = '' 165 171 166 172 log.info(
