Changeset 124 for emailtotracscript


Ignore:
Timestamp:
10/11/06 14:11:53 (18 years ago)
Author:
bas
Message:

EmailtoTracScript?:

email2trac.py.in:

  • Fixed an error if drop_spam and enable_syslog is set
Location:
emailtotracscript/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • emailtotracscript/trunk/ChangeLog

    r121 r124  
     12006-xxxx
     2        * Fixed an error if enable_syslog and drop_spam is set. We get
     3          an exception in the syslog if we use sys.exit(0), replaced by
     4          return.
     5       
    162006-10-10
    27        * Fixed race conditions in delete_spam.py and added some
  • emailtotracscript/trunk/debian/changelog

    r121 r124  
     1email2trac (0.8.1-2) stable; urgency=low
     2
     3  * Replace sys.exit(0) bij return else there is an exception
     4
     5 -- root <root@rc.sara.nl>  Wed, 11 Oct 2006 14:08:50 +0200
     6
    17email2trac (0.8.1-1) stable; urgency=low
    28
  • emailtotracscript/trunk/email2trac.py.in

    r122 r124  
    412412                if self.DROP_SPAM and (tkt['component'] == 'Spam'):
    413413                        # print 'This message is a SPAM. Automatic ticket insertion refused (SPAM level > %d' % self.SPAM_LEVEL
    414                         sys.exit(0)
     414                        return False   
    415415
    416416                # Set default owner for component
Note: See TracChangeset for help on using the changeset viewer.