Custom Query (332 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (88 - 90 of 332)

Ticket Resolution Summary Owner Reporter
#37 fixed greedy matching in Subject line bas dmaziuk@…
Description

Current TICKET_RE greedy-matching (the default), so Subject like

#1?resolution=worksforme: Re: ia ia ia cthulhu f'tagn

will fail to update the ticket properly (ticketnr_fields will match to the colon after Re instead of the one after worksforme).

The fix is to use non-greedy qualifier: .*?: instead of .*:

#38 fixed integrityerror bas bastiaans@…
Description
This email is sent by logcheck. If you wish to no-longer receive it,
you can either deinstall the logcheck package or modify its
configuration file (/etc/logcheck/logcheck.conf).

System Events
=-=-=-=-=-=-=
Dec 14 15:45:41 subtrac email2trac: etype = _sqlite.IntegrityError, evalue = columns ticket, time, field are not unique
Dec 14 15:45:41 subtrac email2trac: Traceback (most recent call last):
Dec 14 15:45:41 subtrac email2trac:   File "/usr/bin/email2trac", line 1071, in ?     tktparser.parse(sys.stdin)
Dec 14 15:45:41 subtrac email2trac:   File "/usr/bin/email2trac", line 671, in parse     if self.ticket_update(m):
Dec 14 15:45:41 subtrac email2trac:   File "/usr/bin/email2trac", line 542, in ticket_update     tkt.save_changes(self.author, body_text, when)
Dec 14 15:45:41 subtrac email2trac:   File "/usr/lib/python2.3/site-packages/trac/ticket/model.py", line 250, in save_changes     (self.id, when, author, cnum, comment))
Dec 14 15:45:41 subtrac email2trac:   File "/usr/lib/python2.3/site-packages/trac/db/util.py", line 50, in execute     return self.cursor.execute(sql_escape_percent(sql), args)
Dec 14 15:45:41 subtrac email2trac:   File "/usr/lib/python2.3/site-packages/sqlite/main.py", line 255, in execute     self.rs = self.con.db.execute(SQL % parms)
Dec 14 15:45:41 subtrac email2trac: IntegrityError: columns ticket, time, field are not unique

_______________________________________________
Rc_root mailing list
Rc_root@mailman.rc.sara.nl
http://mailman.rc.sara.nl/cgi-bin/mailman/listinfo/rc_root
#39 fixed blacklisting, check for case insensitive mailer-daemon@ bas jodok@…
Description

not all mailer-daemons specify ther e-mail adress in uppercase letters. re.IGNORECASE should be included.

        def blacklisted_from(self):
                FROM_RE = re.compile(r"""
                    MAILER-DAEMON@
                    """, re.VERBOSE|re.IGNORECASE)
                result =  FROM_RE.search(self.email_addr)
                if result:
                        return True
                else:
                        return False

                 """, re.VERBOSE|re.IGNORECASE)
Note: See TracQuery for help on using queries.