Changeset 75 for emailtotracscript


Ignore:
Timestamp:
05/23/06 11:14:59 (18 years ago)
Author:
bas
Message:

EmailtoTracScript?:

email2trac.py.in:

  • Removed debug statements
File:
1 edited

Legend:

Unmodified
Added
Removed
  • emailtotracscript/trunk/email2trac.py.in

    r74 r75  
    5454    umask        : 022             # OPTIONAL, if set then use this umask for creation of the attachments
    5555        mailto_link  : 1               # OPTIONAL, if set then [mailto:<>] in description
    56         mailto_cc    : basv@sara.nl    # OPTIONAL, Use this address as CC in mailto line
     56        mailto_cc    : basv@sara.nl    # OPTIONAL, use this address as CC in mailto line
    5757        ticket_update: 1               # OPTIONAL, if set then check if this is an update for a ticket
    5858        trac_version : 0.8             # OPTIONAL, default is 0.9
     
    8484import unicodedata
    8585import ConfigParser
    86 import sqlite
    8786from email import Header
    8887from stat import *
     
    323322                else:
    324323                        subject  = self.to_unicode(m['Subject'])
    325                 print subject
    326324
    327325                TICKET_RE = re.compile(r"""
     
    334332
    335333                # Strip '#' and ':' from ticket_id
     334                #
    336335                ticket_id = result.group('ticketnr')
    337336                ticket_id = int(ticket_id[1:-1])
     
    700699                from trac.Href import Href
    701700                from trac import util
     701                import sqlite
    702702        elif version == 0.9:
    703703                from trac import attachment
Note: See TracChangeset for help on using the changeset viewer.