Changeset 111


Ignore:
Timestamp:
09/29/06 13:07:07 (18 years ago)
Author:
bas
Message:

EmailtoTracScript?:

delete_spam.py.in:

  • Now deletes all Spam ticket information form the different SQL tables

debian/changelog, email2trac.spec, ChangeLog?:

  • Preparing for new release
Location:
emailtotracscript/trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • emailtotracscript/trunk/ChangeLog

    r106 r111  
     12006-0?-??
     2        * Fixes possible segmentation faults in run_email2trac.c
     3          Reported by: bcornec
     4          Fixed by   : Bas van der Vlies
     5
     6        * Can set DEBUG level while configuring package, eg:
     7          DEBUG=1 ./configure ( default : 0)
     8          Reported by: syd at plug dot ca
     9          Fixed By   : Bas van der Vlies
     10
     11        * delete_spam.py did not delete everything from the SQL tables
     12          Reported by: brent at rcfile dot org
     13          Fixed by   : Bas van der Vlies
     14
    1152006-08-28
    216        * fixes an error in the 'reply_all' setting
  • emailtotracscript/trunk/debian/changelog

    r106 r111  
     1email2trac (0.8.0-1) stable; urgency=low
     2
     3  * See ChangeLog
     4
     5 -- root <root@subtrac.sara.nl>  Fri, 29 Sep 2006 12:29:30 +0200
     6
    17email2trac (0.7.7-1) stable; urgency=low
    28
  • emailtotracscript/trunk/delete_spam.py.in

    r99 r111  
    9696                                cursor.execute(sql_cmd)
    9797
     98                                sql_cmd = "DELETE FROM ticket_change WHERE ticket='%s';" %spam_id
     99                                cursor.execute(sql_cmd)
     100
     101                                sql_cmd = "DELETE FROM ticket_custom WHERE ticket='%s';" %spam_id
     102                                cursor.execute(sql_cmd)
     103
    98104                                dir = os.path.join(attachment_dir, str(spam_id))
    99105                                if os.path.exists(dir):
  • emailtotracscript/trunk/email2trac.spec

    r106 r111  
    11Summary: Utilities for converting emails to trac tickets
    22Name: email2trac
    3 Version: 0.7.7
     3Version: 0.8.0
    44Release: 1
    55License: GPL
Note: See TracChangeset for help on using the changeset viewer.