Custom Query (332 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (307 - 309 of 332)

Ticket Resolution Summary Owner Reporter
#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)
#74 fixed black_list always includes "MAILER-DAEMON@" bas email2trac@…
Description

This may be a fringe usage, but we redirect certain bounce emails to email2trac so that we can keep track of them in Trac.

It was great that 0.30 introduced the black_list parameter. Unfortunately, even if the parameter is empty, "MAILER-DAEMON@" will always be added to it.

Is there a reason why this configuration parameter behaves as such? If it is to prevent email loops, perhaps email2trac can set a separate X-* header and check explicitly for that?

#144 fixed Better Unicode support bas trumbitta@…
Description

When a non-ASCII character is in the description, the message will not be parsed and the script will exit.

I'll try to fix this figuring out where to put a .encode('utf-8') but I'm not a python programmer...

I guess this is a problem wich not only affects the description, but also other fields.

You can easily check by adding an è somewhere in the description of a ticket.

Note: See TracQuery for help on using queries.