Changeset 395


Ignore:
Timestamp:
07/14/10 11:25:17 (14 years ago)
Author:
bas
Message:

changed some changelogs description.

email2trac.py.in:

  • use name if set instead of 'email2trac' if smtp_from is the same as sender address
Location:
trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/ChangeLog

    r394 r395  
    22  * Do not check if notification is enabled, let Trac determine if a
    33    notfication is enabled and which interface/plugin is used, eg:
    4     announcerplugin, closes #199,#211
    5 
    6     Reported by: Chris LoSacco chrisl add arc90 dot com
    7     Fixed by: Bas van der Vlies
     4    announcerplugin
     5
     6    Author: Bas van der Vlies
    87
    982010-07-06
  • trunk/debian/changelog

    r394 r395  
    33  * Do not check if notification is enabled, let Trac determine if a
    44    notfication is enabled and which interface/plugin is used, eg:
    5     announcerplugin, closes #199,#211
    6 
    7     Reported by: Chris LoSacco chrisl add arc90 dot com
    8     Fixed by: Bas van der Vlies
     5    announcerplugin
     6
     7    Author: Bas van der Vlies
    98
    109 -- Bas van der Vlies <basv@sara.nl>  Mon, 12 Jul 2010 13:18:19 +0200
  • trunk/email2trac.py.in

    r392 r395  
    391391
    392392                if self.email_addr == self.trac_smtp_from:
    393                         self.author = "email2trac"
     393                        if self.email_name:
     394                                self.author = self.email_name
     395                        else:
     396                                self.author = "email2trac"
    394397                else:
    395398                        self.author = self.email_addr
Note: See TracChangeset for help on using the changeset viewer.