File tree Expand file tree Collapse file tree 3 files changed +7
-3
lines changed
Expand file tree Collapse file tree 3 files changed +7
-3
lines changed Original file line number Diff line number Diff line change 1010- fix roundup-admin find command handling of Multilinks
1111- fix some security assertions (sf bug 1085481) (see doc/upgrading.txt for
1212 notes)
13+ - don't set the title to nothing from incoming mail (thanks Bruce Guenter)
1314
1415
15162004-10-26 0.7.9
Original file line number Diff line number Diff line change @@ -89,6 +89,7 @@ Johannes Gijsbers,
8989Gus Gollings,
9090Dan Grassi,
9191Engelbert Gruber,
92+ Bruce Guenter,
9293Juergen Hermann,
9394Uwe Hoffmann,
9495Tobias Hunger,
Original file line number Diff line number Diff line change @@ -72,7 +72,7 @@ class node. Any parts of other types are each stored in separate files
7272an exception, the original message is bounced back to the sender with the
7373explanatory message given in the exception.
7474
75- $Id: mailgw.py,v 1.149.2.5 2004-11-17 22:10:02 richard Exp $
75+ $Id: mailgw.py,v 1.149.2.6 2005-01-03 02:55:12 richard Exp $
7676"""
7777__docformat__ = 'restructuredtext'
7878
@@ -846,8 +846,10 @@ def handle_message(self, message):
846846
847847
848848 # set the issue title to the subject
849- if properties .has_key ('title' ) and not issue_props .has_key ('title' ):
850- issue_props ['title' ] = title .strip ()
849+ title = title .strip ()
850+ if (title and properties .has_key ('title' ) and not
851+ issue_props .has_key ('title' )):
852+ issue_props ['title' ] = title
851853
852854 #
853855 # handle message-id and in-reply-to
You can’t perform that action at this time.
0 commit comments