Mercurial > p > roundup > code
changeset 1207:456878600f38 maint-0.4
[SF#614188] Exception in mailgw.py
| author | Richard Jones <richard@users.sourceforge.net> |
|---|---|
| date | Wed, 25 Sep 2002 05:13:34 +0000 |
| parents | 8adaf5d169da |
| children | 02c3f3527523 |
| files | CHANGES.txt roundup/mailgw.py |
| diffstat | 2 files changed, 11 insertions(+), 3 deletions(-) [+] |
line wrap: on
line diff
--- a/CHANGES.txt Tue Sep 03 06:35:16 2002 +0000 +++ b/CHANGES.txt Wed Sep 25 05:13:34 2002 +0000 @@ -1,7 +1,12 @@ This file contains the changes to the Roundup system over time. The entries are given with the most recent entry first. -???? 0.4.4? +????-??-?? 0.4.5? +Fixed: + . #614188 ] Exception in mailgw.py + + +2002-09-02 0.4.4 Fixed: . #596155 ] bug with multilink . #600699 ] documentation in doc/getting_started.txt
--- a/roundup/mailgw.py Tue Sep 03 06:35:16 2002 +0000 +++ b/roundup/mailgw.py Wed Sep 25 05:13:34 2002 +0000 @@ -73,7 +73,7 @@ an exception, the original message is bounced back to the sender with the explanatory message given in the exception. -$Id: mailgw.py,v 1.74.2.1 2002-07-22 22:03:01 richard Exp $ +$Id: mailgw.py,v 1.74.2.2 2002-09-25 05:13:00 richard Exp $ ''' @@ -739,7 +739,7 @@ # see if there's a response somewhere inside this section (ie. # no blank line between quoted message and response) for line in lines[1:]: - if line[0] not in '>|': + if line and line[0] not in '>|': break else: # we keep quoted bits if specified in the config @@ -775,6 +775,9 @@ # # $Log: not supported by cvs2svn $ +# Revision 1.74.2.1 2002/07/22 22:03:01 richard +# . #562686 ] email attachments from outlook express +# # Revision 1.74 2002/05/29 01:16:17 richard # Sorry about this huge checkin! It's fixing a lot of related stuff in one go # though.
