Changeset 105


Ignore:
Timestamp:
07/21/06 14:46:50 (18 years ago)
Author:
bas
Message:

EmailtoTracScript?:

email2trac.py.in:

  • Fixed the reply_all bug
Location:
emailtotracscript/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • emailtotracscript/trunk/ChangeLog

    r103 r105  
     12006-???
     2        * fixes an error in the 'reply_all' setting
     3          Thanks to and Patch by: ncarlson@ibsys.com
     4
    152006-07-14
    26        * Use X11R5 install-sh to install email2trac components to hide
  • emailtotracscript/trunk/debian/changelog

    r103 r105  
     1email2trac (0.7.6-5) stable; urgency=low
     2
     3  *  Fixed reply_all bug, thanks to ncarlson@ibsys.com
     4
     5 -- Bas van der Vlies <basv@sara.nl>  Fri, 21 Jul 2006 14:45:14 +0200
     6
    17email2trac (0.7.6-4) stable; urgency=low
    28
    39  *  Remove the temporarly create files by trac for attachment insertion
    410
    5  -- root <basv@sara.nl>  Mon, 17 Jul 2006 10:46:29 +0200
     11 -- Bas van der Vlies <basv@sara.nl>  Mon, 17 Jul 2006 10:46:29 +0200
    612
    713email2trac (0.7.6-3) stable; urgency=low
  • emailtotracscript/trunk/email2trac.py.in

    r103 r105  
    297297
    298298                        addrs = email.Utils.getaddresses(ccs)
     299                        if not addrs:
     300                                return
    299301
    300302                        # Remove reporter email address if notification is
     
    308310
    309311                        for name,mail in addrs:
    310                                         try:
    311                                                 mail_list = '%s,%s' %(mail_list, mail)
    312                                         except:
    313                                                 mail_list = mail
    314 
    315                         ticket['cc'] = self.to_unicode(mail_list)
     312                                try:
     313                                        mail_list = '%s,%s' %(mail_list, mail)
     314                                except:
     315                                        mail_list = mail
     316
     317                        if mail_list:
     318                                ticket['cc'] = self.to_unicode(mail_list)
    316319
    317320        def save_email_for_debug(self, message, tempfile=False):
Note: See TracChangeset for help on using the changeset viewer.