Changeset 54


Ignore:
Timestamp:
02/16/06 16:02:24 (18 years ago)
Author:
walter
Message:

EmailtoTracScript?:

When you include the body tag, some mailers (like Thunderbird) will leave out the signature.
Therefore this version leaves out the body tag.

Location:
emailtotracscript/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • emailtotracscript/trunk/debian/changelog

    r49 r54  
     1email2trac (0.5.0-2) stable; urgency=low
     2
     3  * leave out the body tag for email urls
     4
     5 -- root <root@subtrac.sara.nl>  Thu, 16 Feb 2006 16:01:02 +0100
     6
    17email2trac (0.5.0-1) stable; urgency=low
    28
  • emailtotracscript/trunk/email2trac.py.in

    r48 r54  
    1919#
    2020"""
    21 emailfilter.py -- Email tickets to Trac.
     21email2trac.py -- Email tickets to Trac.
    2222
    2323A simple MTA filter to create Trac tickets from inbound emails.
     
    457457
    458458                # Temporary fix
    459                 body = '> Type your reply'
    460                 str = 'mailto:%s?subject=%s&body=%s' %(urllib.quote(mail_addr), urllib.quote('Re: %s' % subject), urllib.quote(body))
     459                str = 'mailto:%s?subject=%s' %(urllib.quote(mail_addr), urllib.quote('Re: %s' % subject))
    461460                str = '\n{{{\n#!html\n<a href="%s">Reply to: %s</a>\n}}}\n' %(str, author)
    462461
Note: See TracChangeset for help on using the changeset viewer.