Changeset 644


Ignore:
Timestamp:
01/09/14 12:57:10 (10 years ago)
Author:
bas
Message:

fixed a bug in get_sender_info function, closes #333

Location:
trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/ChangeLog

    r642 r644  
    2323    Reported by: ivanelsonnunes add gmail dot com
    2424    Author: Bas van der Vlies
     25
     26  * Fixed an bug in get_sender_info function when we try to match the email address
     27    to an trac user, closes #333
     28    Reported by: kshetriamrit add gmail dot com
     29    Fixed by: Bas van der Vlies
    2530
    26312.7.0
  • trunk/debian/changelog

    r642 r644  
     1email2trac (2.7.7-1) stable; urgency=low
     2
     3  * See Changelog
     4
     5 -- Bas van der Vlies <bas.vandervlies@surfssara.nl>  Thu, 09 Jan 2014 12:47:59 +0100
     6
    17email2trac (2.7.6-1) stable; urgency=low
    28
  • trunk/email2trac.py.in

    r643 r644  
    376376            if (
    377377                (e and (e.lower() == self.email_addr.lower())) or
    378                 (u.lower() + '@' + self.smtp_default_domain.lower() == self.email_addr.lower())
     378                (u and (u.lower() + '@' + self.smtp_default_domain.lower() == self.email_addr.lower()))
    379379            )
    380380            ]
     
    24782478                self.logger.info('DRY_RUN: self.notify(tkt, True) reporter = %s' %tkt['reporter'])
    24792479                return
     2480
    24802481        try:
     2482
    24812483
    24822484            ## create false {abs_}href properties, to trick Notify()
  • trunk/email2trac.spec

    r628 r644  
    11Summary: Utilities for converting emails to trac tickets
    22Name: email2trac
    3 Version: 2.7.0
     3Version: 2.7.7
    44Release: 1
    55License: Apache License 2.0
Note: See TracChangeset for help on using the changeset viewer.