Changeset 218 for trunk


Ignore:
Timestamp:
08/07/08 14:40:22 (16 years ago)
Author:
bas
Message:

email2trac.py.in:

  • fixed black_list parameter split to comma-separated, closes ticket #75
Location:
trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/ChangeLog

    r217 r218  
    1313  * The [DEFAULT] section did not work any more due to change to internal
    1414    trac parser, closes ticket #73
     15    Reported by: email2trac at bulk dot squeakyblue dot com
     16    Fixed by: Bas van der Vlies
     17   
     18  * black_list paramter must be comma-separated as mentioned in the
     19    documentation.
    1520    Reported by: email2trac at bulk dot squeakyblue dot com
    1621    Fixed by: Bas van der Vlies
  • trunk/email2trac.py.in

    r217 r218  
    292292                        black_list = 'MAILER-DAEMON@'
    293293
    294                 black_list = string.split(black_list)   
     294                black_list = string.split(black_list, ',')     
    295295                if not black_list.count('MAILER-DAEMON@'):
    296296                        black_list.append('MAILER-DAEMON@')
Note: See TracChangeset for help on using the changeset viewer.