Changeset 177


Ignore:
Timestamp:
07/10/07 11:32:10 (17 years ago)
Author:
bas
Message:

email2trac.py.in:

  • Also show email header in a ticket update
Location:
trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/ChangeLog

    r176 r177  
    66
    77          Reported By: Anonymous
    8           Fixed by   : Bas van der Vlies
     8          Fixed by   : Bas van der Vlies <basv@sara.nl>
    99
    1010        * Implemented update ticket fields via email subject line, eg:
     
    1818          is not vaild value the update will be cancelled.
    1919
    20           Requested by: trac at yadan dotnet, Jan Parchmann, see ticket #7
    21           Implemented by: basv@sara.nl
     20          Requested by  : trac at yadan dotnet, Jan Parchmann, see ticket #7
     21          Implemented by: Bas van der Vlies <basv@sara.nl>
    2222
    2323        * Dropped support for version trac version 0.8. Removed all 0.8
    24           specific code.
    25           Fixed by: basv@sara.nl
     24          specific code.  
     25          Fixed by: Bas van der Vlies <basv@sara.nl>
    2626
    2727        * Added a new config parameter: tmpdir: /var/tmp, default is '/tmp'
    2828          All functions now use this new parameter and use OS independent
    2929          path functions.
    30           Implemented by: basv@sara.nl
     30          Implemented by: Bas van der Vlies <basv@sara.nl>
    3131
    3232        * fixed and a creating directory problem email2trac.spec file
     
    3535        * set_owner function is obsolete. When component is set the trac code
    3636          will set the owner to the component owner.
    37           Fixed by: basv@sara.nl
     37          Fixed by    : Bas van der Vlies <basv@sara.nl>
     38
     39        * Also show email headers in a ticket update.
     40          Requested by: Ramon Bastiaans
     41          Fixed by    : Bas van der Vlies <basv@sara.nl>
    3842
    39432007-04-27
  • trunk/email2trac.py.in

    r176 r177  
    508508
    509509                body_text = self.get_body_text(m)
     510                if self.EMAIL_HEADER:
     511                        head = self.email_header_txt(m)
     512                        body_text = u"\r\n%s \r\n%s" %(head, body_text)
     513
     514                #if self.MAILTO:
     515                #       mailto = self.html_mailto_link(tkt['summary'], ticket_id, body_text)
     516                #       body_text = u"\r\n%s \r\n%s" %(mailto, body_text)
    510517
    511518                tkt.save_changes(self.author, body_text, when)
Note: See TracChangeset for help on using the changeset viewer.