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.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • 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.