Edgewall Software

Changes between Initial Version and Version 2 of Ticket #4835


Ignore:
Timestamp:
Feb 24, 2007, 6:26:53 PM (17 years ago)
Author:
Emmanuel Blot
Comment:

This web site is for the development of Trac itself.

Please report any plugin/extension issue to their respective author: th:wiki:EmailtoTracScript

Thanks in advance.

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #4835 – Description

    initial v2  
    11when submitting tickets via e-mail using the emailfilter.py, it caused trac to crash. the reason was that it inserted non-utf8 content into the database.
    22the attached diff should fix that:
    3 
     3{{{
     4#!diff
    45@@ -53,7 +53,10 @@
    56         tkt['summary'] = msg['subject']
     
    1415         if tkt.values.get('description'):
    1516             tkt.insert()
     17}}}