Changeset 462
- Timestamp:
- 07/26/10 10:09:40 (13 years ago)
- Location:
- trunk
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/ChangeLog
r458 r462 1 2010-07-26 2 * Fixed an Unicode error in strip_quotes 3 Author: Bas van der Vlies 4 1 5 2010-07-23 2 6 * logging of spam message was wrong. Fixed it, -
trunk/debian/changelog
r457 r462 1 email2trac (1.5.3-1) stable; urgency=low 2 3 * See ChangeLog 4 5 -- bas van der Vlies <basv@sara.nl> Mon, 26 Jul 2010 10:08:23 +0200 6 1 7 email2trac (1.5.2-3) stable; urgency=low 2 8 -
trunk/email2trac.py.in
r456 r462 1547 1547 Strip signature from message, inspired by Mailman software 1548 1548 """ 1549 self.logger.debug('function strip_signature') 1550 1549 1551 body = [] 1550 1552 for line in text.splitlines(): … … 1596 1598 Strip quotes from message by Nicolas Mendoza 1597 1599 """ 1600 self.logger.debug('function strip_quotes') 1601 1598 1602 body = [] 1599 1603 for line in text.splitlines(): 1600 if line.startswith(self.parameters.email_quote): 1601 continue 1604 try: 1605 1606 if line.startswith(self.parameters.email_quote): 1607 continue 1608 1609 except UnicodeDecodeError: 1610 1611 tmp_line = self.email_to_unicode(line) 1612 if tmp_line.startswith(self.parameters.email_quote): 1613 continue 1614 1602 1615 body.append(line) 1603 1616 -
trunk/email2trac.spec
r432 r462 1 1 Summary: Utilities for converting emails to trac tickets 2 2 Name: email2trac 3 Version: 1.5. 23 Version: 1.5.3 4 4 Release: 1 5 5 License: GPL
Note: See TracChangeset
for help on using the changeset viewer.