Custom Query (332 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (25 - 27 of 332)

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
Ticket Resolution Summary Owner Reporter
#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?

#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)
#56 fixed blacklisting, check for case insensitive postmaster@ bas gregoryba@…
Description

similar to #39, the blacklisting should also check for, and thus kill, mail from postmaster@ in addition to mailer-daemon@. i've patched my local version as such:

274:                     MAILER-DAEMON@|postmaster@
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
Note: See TracQuery for help on using queries.